mirror of
https://github.com/eRgo35/dots.git
synced 2025-12-16 15:36:11 +01:00
11 lines
220 B
Bash
Executable File
11 lines
220 B
Bash
Executable File
#!/bin/dash
|
|
CONFIG_FILES="$HOME/.config/waybar/config.jsonc $HOME/.config/waybar/style.css"
|
|
|
|
trap "killall waybar" EXIT
|
|
|
|
while true; do
|
|
killall waybar
|
|
waybar &
|
|
inotifywait -e create,modify $CONFIG_FILES
|
|
done
|