1
0
Fork 0
forked from ahurac/dotfiles
ahuarc-dotfiles/bin/waybar
2023-05-14 16:02:54 +02:00

19 lines
340 B
Bash
Executable file

#!/bin/bash -x
# Waybar wrapper to reload it anytime the
# configuration is edited
# Variable
waybar_config_d="${HOME}/.config/waybar"
monitored_events=(
modify
create
delete
)
# Execution
while :; do
/usr/bin/waybar "$@" &
inotifywait "${monitored_events[@]/#/-e}" "${waybar_config_d}"
jobs -p | xargs kill
done