dotfiles/hypr/hyprland/scripts/run-ags.sh
2025-07-11 15:37:32 -04:00

8 lines
174 B
Bash

#!/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