9 lines
153 B
Bash
Executable file
9 lines
153 B
Bash
Executable file
#!/bin/sh
|
|
|
|
#shellcheck disable=SC1091
|
|
[ -r ./conf ] && . ./conf
|
|
|
|
pgrep -x waybar && pkill -x waybar
|
|
|
|
exec 2>&1
|
|
exec chpst -e "$TURNSTILE_ENV_DIR" waybar
|