7 lines
162 B
Bash
Executable File
7 lines
162 B
Bash
Executable File
#!/usr/bin/env bash
|
|
if systemctl --user is-active waybar.service; then
|
|
systemctl --user stop waybar.service
|
|
else
|
|
systemctl --user start waybar.service
|
|
fi
|