Update config files

This commit is contained in:
Ethan Lane 2025-02-03 17:51:15 +00:00
parent 008a765e32
commit 7ab6ef170d
13 changed files with 280 additions and 102 deletions
home/vylpes/scripts/system

View file

@ -0,0 +1,18 @@
#!/bin/bash
option=$(printf "sleep\nlogout\nshutdown\nrestart" | rofi -dmenu -theme Arc-Dark -font 'hack 18')
if [ "$option" = "sleep" ];
then
i3lock-fancy -g -t "System Locked" -f Hack-Regular
systemctl suspend
elif [ "$option" = "logout" ];
then
i3-msg exit
elif [ "$option" = "shutdown" ];
then
poweroff
elif [ "$option" = "restart" ];
then
reboot
fi