feat!: added configs + restructuring

This commit is contained in:
2024-04-06 21:13:16 -05:00
parent 8ff9cb0e98
commit fd2111b692
35 changed files with 1298 additions and 0 deletions

View File

@ -0,0 +1,17 @@
#!/usr/bin/env bash
op=$( echo -e " Shutdown\n Reboot\n Suspend\n Lock" | wofi --dmenu | awk '{print tolower($2)}' )
case $op in
shutdown)
shutdown now
;;
reboot)
;&
suspend)
systemctl $op
;;
lock)
hyprlock
;;
esac