Files
dotfiles/.local/bin/station-toggle-waybar
2026-03-07 09:36:43 +00:00

8 lines
140 B
Bash
Executable File

#!/bin/bash
if pgrep -x ".waybar-wrapped" >/dev/null; then
pkill -x ".waybar-wrapped"
else
uwsm-app -- waybar >/dev/null 2>&1 &
fi