organize hyprland configs

This commit is contained in:
Benjamin Palko 2025-07-11 14:02:35 -04:00
parent f558e4ff10
commit 42240dd6f6
13 changed files with 79 additions and 257 deletions

View file

@ -0,0 +1,8 @@
#!/bin/sh
CONFIG_FILES="$HOME/dotfiles/ags"
while true; do
sleep 1.6
ags run --gtk4 -d "$CONFIG_FILES" &
inotifywait -e create,modify -r "$CONFIG_FILES"
killall gjs
done

View file

@ -0,0 +1,11 @@
#!/bin/bash
CONFIG_FILES="$HOME/.config/swaync/ $HOME/.cache/wal/"
trap "killall swaync" EXIT
swaync &
while true; do
inotifywait -e create,modify -r $CONFIG_FILES
swaync-client -R & swaync-client -rs
done