moved PATH from zshrc to zprofile, moved powermenu to scripts repo

This commit is contained in:
2025-06-21 14:41:40 +05:00
parent 0e6e1f18a1
commit 2c30e97c99
4 changed files with 5 additions and 17 deletions

View File

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