10 lines
97 B
Bash
Executable file
10 lines
97 B
Bash
Executable file
#!/bin/sh
|
|
|
|
wb=$(pgrep waybar)
|
|
|
|
if [[ "$wb" -gt 1 ]]; then
|
|
kill $wb
|
|
else
|
|
exec waybar &
|
|
fi
|