feat: reserved screen space keybind and pinning windows for watching shows in the background;

refactor: waybar adjustments;
refactor: swaync idle inhibitor now handles idle state correctly;
feat: rmpc config
This commit is contained in:
2025-09-22 17:48:56 +03:00
parent 14730f1269
commit e251ac2fff
18 changed files with 386 additions and 1137 deletions

View File

@@ -0,0 +1,10 @@
kill -0 $(<\"$XDG_RUNTIME_DIR/swaync-idle.pid\") && echo true || echo false
if [ $1 == "on" ]; then
pkill hypridle
systemd-inhibit --why='User request via swaync' --what=sleep:handle-lid-switch sh -c 'echo \"$$\" > \"$XDG_RUNTIME_DIR/swaync-idle.pid\"; while true; do sleep 3600; done'
elif [ $2 == "off" ]; then
hypridle & disown
kill $(<\"$XDG_RUNTIME_DIR/swaync-idle.pid\")
else
exit 1
fi