Init commit

This commit is contained in:
Archie Fox
2025-06-08 06:59:19 +03:00
commit 06b8ee8caf
148 changed files with 18659 additions and 0 deletions

10
bin/powermenu Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/bash
choice=$(echo -e "Lock\nLogout\nReboot\nShutdown\nSleep\nHibernate" | rofi -theme archer -font "Iosevka Nerd Font Medium 18" -dmenu -p "Power menu")
case "$choice" in
"Lock") betterlockscreen -l ;;
"Logout") pkill -u $USER ;;
"Reboot") doas systemctl reboot ;;
"Shutdown") doas systemctl poweroff ;;
"Sleep") doas systemctl suspend ;;
"Hibernate") doas systemctl hibernate ;;
esac