My scripts for startup, dmenu, and the command line
Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- #!/bin/sh
- setxkbmap -option caps:swapescape
- picom -b
- ~/.fehbg
- xbindkeys -f $HOME/Backups/configs/xbindkeysrc
-
- # relaunch DWM if the binary changes, otherwise bail
- csum=$(sha1sum $(which dwm.winkey))
- new_csum=""
- while true
- do
- if [ "$csum" != "$new_csum" ]
- then
- csum=$new_csum
- dwm-statusbar &
- dwm.winkey
- else
- exit 0
- fi
- new_csum=$(sha1sum $(which dwm.winkey))
- sleep 0.5
- done
|