Compare commits
10 Commits
25be6d61a1
...
050559d5b9
Author | SHA1 | Date |
---|---|---|
|
050559d5b9 | |
|
082a570b14 | |
|
3a9ad75bc5 | |
|
df788667f6 | |
|
7c782f640c | |
|
3108750709 | |
|
c7f88194c7 | |
|
d2721b0aff | |
|
40e4cf479b | |
|
5692a8f801 |
7
bashrc
7
bashrc
|
@ -36,6 +36,8 @@ export PATH="$SCRIPT_PATH/:$PATH"
|
||||||
export PATH="$DEV_OPT_PATH/script.download/:$PATH"
|
export PATH="$DEV_OPT_PATH/script.download/:$PATH"
|
||||||
export PATH="$DEV_OPT_PATH/built/:$PATH"
|
export PATH="$DEV_OPT_PATH/built/:$PATH"
|
||||||
export PATH="$DEV_OPT_PATH/bin/:$PATH"
|
export PATH="$DEV_OPT_PATH/bin/:$PATH"
|
||||||
|
export PATH="$OPT_PATH/bin/:$PATH"
|
||||||
|
export PATH="$OPT_PATH/built/:$PATH"
|
||||||
export PATH="/usr/sbin:$PATH"
|
export PATH="/usr/sbin:$PATH"
|
||||||
export PATH="/opt/dmenu_path:$PATH"
|
export PATH="/opt/dmenu_path:$PATH"
|
||||||
|
|
||||||
|
@ -79,7 +81,6 @@ alias ..="cd .."
|
||||||
alias ...="cd ../.."
|
alias ...="cd ../.."
|
||||||
alias ....="cd ../../.."
|
alias ....="cd ../../.."
|
||||||
alias send-nude="pqiv --fullscreen -ti ~/pictures/nude.jpeg"
|
alias send-nude="pqiv --fullscreen -ti ~/pictures/nude.jpeg"
|
||||||
alias libresprite="~/documents/libresprite.AppImage 1>/dev/null &"
|
|
||||||
alias lsa="ls -a"
|
alias lsa="ls -a"
|
||||||
alias lsA="ls -A"
|
alias lsA="ls -A"
|
||||||
alias lsl="ls -l"
|
alias lsl="ls -l"
|
||||||
|
@ -142,6 +143,10 @@ alias unity="/home/cptbb/Unity-2023.2.8f1/Editor/Unity"
|
||||||
alias qr-network="nmcli device wifi show-password"
|
alias qr-network="nmcli device wifi show-password"
|
||||||
alias cal="ccal -e --noc"
|
alias cal="ccal -e --noc"
|
||||||
alias calendar="calcurse"
|
alias calendar="calcurse"
|
||||||
|
alias dicker="docker"
|
||||||
|
alias hexdump="hexdump --canonical"
|
||||||
|
alias p3="python3"
|
||||||
|
alias shrek="firefox https://www.youtube.com/watch?v=_S7WEVLbQ-Y"
|
||||||
|
|
||||||
# alias avec parametre
|
# alias avec parametre
|
||||||
emoji(){ grep -i $1 $OPT_PATH/emoji; }
|
emoji(){ grep -i $1 $OPT_PATH/emoji; }
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
man $(man -k . | cut -d' ' -f1-2 | dmenu | sed "s/(\|)//g" | tr ' ' '\n' | tac | tr '\n' ' ')
|
4
mcphrase
4
mcphrase
|
@ -36,4 +36,8 @@ sad monkey
|
||||||
small brain monkey
|
small brain monkey
|
||||||
fraude historique
|
fraude historique
|
||||||
s1j
|
s1j
|
||||||
|
hassoul
|
||||||
|
hassoulesque
|
||||||
|
kebabiste
|
||||||
|
hassoulah
|
||||||
|
|
||||||
|
|
6
muz
6
muz
|
@ -1,3 +1,7 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
mpv --player-operation-mode=pseudo-gui --shuffle $OPT_PATH/music 2>/dev/null &
|
muz_path=$OPT_PATH/music
|
||||||
|
muz=$(echo -e ".\n$(ls $muz_path)" | dmenu)
|
||||||
|
echo "$muz"
|
||||||
|
|
||||||
|
mpv --player-operation-mode=pseudo-gui --shuffle $muz_path/$muz 2>/dev/null &
|
||||||
|
|
2
randoman
2
randoman
|
@ -1,3 +1,3 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
man -k . | shuf -n 1 | cut -f1-2 -d' ' | tr ' ' '\0' | xargs man 2>/dev/null
|
man -k . | shuf -n 1 | cut -f1-2 -d' ' | xargs man 2>/dev/null
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
to_ssid=$(nmcli device wifi list | awk '{print $2}' | sed -e "/--/d" | sed "/BSSID/d" | dmenu -l 10)
|
to_ssid=$(nmcli device wifi list | awk '{print $2}' | sed -e "/--/d" | sed "/BSSID/d" | dmenu -l 10)
|
||||||
#to_ssid=$(cat ~/wifi | awk '{print $2}' | sed -e "/--/d" | sed "/BSSID/d" | dmenu -i -l 10)
|
#to_ssid=$(cat ~/wifi | awk '{print $2}' | sed -e "/--/d" | sed "/BSSID/d" | dmenu -i -l 10)
|
||||||
|
|
||||||
need_pass=$(echo -e "YES\nNO" | dmenu -i -p "need password?")
|
need_pass=$(echo -e "NO\nYES" | dmenu -i -p "need password?")
|
||||||
|
|
||||||
if [[ $need_pass == "NO" ]]; then
|
if [[ $need_pass == "NO" ]]; then
|
||||||
nmcli device wifi connect $to_ssid
|
nmcli device wifi connect $to_ssid
|
||||||
|
|
Loading…
Reference in New Issue