Compare commits

..

10 Commits

Author SHA1 Message Date
_N3m0 050559d5b9 ebral 2024-05-21 14:54:21 +02:00
_N3m0 082a570b14 add hassoul phrase 2024-05-14 19:00:06 +02:00
_N3m0 3a9ad75bc5 shrek sexy 2024-04-22 14:11:47 +02:00
_N3m0 df788667f6 rm libresprite 2024-03-29 19:05:17 +01:00
_N3m0 7c782f640c add opt built path 2024-03-21 21:09:42 +01:00
_N3m0 3108750709 reverse msg order in reseax-manager 2024-03-20 08:23:59 +01:00
_N3m0 c7f88194c7 add manpage 2024-03-15 08:36:11 +01:00
_N3m0 d2721b0aff opt bin path 2024-03-09 13:10:59 +01:00
_N3m0 40e4cf479b rand man null err 2024-03-08 10:11:23 +01:00
_N3m0 5692a8f801 dicker 2024-03-08 09:40:35 +01:00
6 changed files with 20 additions and 4 deletions

7
bashrc
View File

@ -36,6 +36,8 @@ export PATH="$SCRIPT_PATH/:$PATH"
export PATH="$DEV_OPT_PATH/script.download/:$PATH"
export PATH="$DEV_OPT_PATH/built/:$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="/opt/dmenu_path:$PATH"
@ -79,7 +81,6 @@ alias ..="cd .."
alias ...="cd ../.."
alias ....="cd ../../.."
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 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 cal="ccal -e --noc"
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
emoji(){ grep -i $1 $OPT_PATH/emoji; }

3
manpage Executable file
View File

@ -0,0 +1,3 @@
#!/bin/bash
man $(man -k . | cut -d' ' -f1-2 | dmenu | sed "s/(\|)//g" | tr ' ' '\n' | tac | tr '\n' ' ')

View File

@ -36,4 +36,8 @@ sad monkey
small brain monkey
fraude historique
s1j
hassoul
hassoulesque
kebabiste
hassoulah

6
muz
View File

@ -1,3 +1,7 @@
#!/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 &

View File

@ -1,3 +1,3 @@
#!/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

View File

@ -3,7 +3,7 @@
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)
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
nmcli device wifi connect $to_ssid