dotfiles/hypr/scripts/start-waybar.sh
2024-07-29 23:43:59 -04:00

12 lines
217 B
Bash
Executable file

#!/bin/sh
CONFIG_FILES="$HOME/.config/waybar/ $HOME/.cache/wal/"
trap "killall .waybar-wrapped" EXIT
while true; do
sleep 1.6
waybar &
inotifywait -e create,modify -r $CONFIG_FILES
killall .waybar-wrapped
done