move config files to new directory

This commit is contained in:
ksyasuda
2021-07-28 23:44:53 -07:00
commit 58f9300f1e
121 changed files with 16536 additions and 0 deletions

11
scripts/powermenu-alt Executable file
View File

@@ -0,0 +1,11 @@
#!/bin/bash
## Created By Aditya Shakya
MENU="$(rofi -sep "|" -dmenu -i -p 'System' -width 12 -hide-scrollbar -line-padding 4 -padding 20 -lines 4 <<< " Lock| Logout| Reboot| Shutdown")"
case "$MENU" in
*Lock) i3lock-fancy ;;
*Logout) openbox --exit;;
*Reboot) systemctl reboot ;;
*Shutdown) systemctl -i poweroff
esac