This commit is contained in:
shijil
2025-05-27 12:52:45 +05:30
parent 1784e58039
commit 94ecb26c95
19 changed files with 779 additions and 0 deletions

14
rofi/leave/leave.sh Normal file
View File

@ -0,0 +1,14 @@
#!/usr/bin/env bash
choice=$(printf "Lock\nLogout\nSuspend\nReboot\nShutdown" | rofi -dmenu)
if [[ $choice == "Lock" ]];then
bash ~/.config/system_scripts/wayland_session_lock
elif [[ $choice == "Logout" ]];then
pkill -KILL -u "$USER"
elif [[ $choice == "Suspend" ]];then
systemctl suspend
elif [[ $choice == "Reboot" ]];then
systemctl reboot
elif [[ $choice == "Shutdown" ]];then
systemctl poweroff
fi