Files
hyprland/waybar/scripts/toggleBarService.sh
2025-04-29 21:43:50 -04:00

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