Move .scripts -> .local/bin

This commit is contained in:
Riyyi
2021-02-25 20:16:07 +01:00
parent 3ac7d9f601
commit ba10984084
40 changed files with 93 additions and 94 deletions
+22
View File
@@ -0,0 +1,22 @@
#!/bin/sh
# Rofi prompt for system functions.
if [ "$WM" = "bspwm" ]; then
logout="bspc quit"
elif [ "$WM" = "i3" ]; then
logout="i3-msg exit"
fi
commands="\
 Lock:$HOME/.scripts/wm/lock.sh
 Suspend:systemctl suspend
 Shutdown:systemctl poweroff
 Reboot:systemctl reboot
 Logout:$logout"
choice=$(echo "$commands" | cut -d ':' -f 1 | rofi -no-fixed-num-lines -dmenu -i -p "System") || exit 0
exec=$(echo "$commands" | grep "^$choice" | cut -d ':' -f 2-)
eval "$exec"