first commit

This commit is contained in:
coolnsx
2022-11-09 16:00:53 +05:30
commit c625600e3d
35 changed files with 2913 additions and 0 deletions

10
hypr/power Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/sh
$HOME/.config/hypr/workspace &
case "$(printf "lock\\nsuspend\\nlogout\\nreboot\\npoweroff" | bemenu --fn 'Roboto 15' -i -c -W 0.6 -B 3 -l 5 -p "⏻ " -H 40)" in
#lock) $HOME/.config/bspwm/screenlock.sh ;;
suspend) systemctl suspend ;;
logout) systemctl logout ;;
reboot) systemctl reboot ;;
poweroff) systemctl poweroff ;;
esac