hyprland-void-dots/configs/hyprland/hypr/scripts/waybar-toggle.sh
2024-03-31 23:28:17 +03:30

13 lines
253 B
Bash
Executable file

#!/usr/bin/env bash
source ~/.config/scripts/env.sh
WAYBAR_PID=$(pgrep -x waybar)
if [ -n "$WAYBAR_PID" ]; then
pkill waybar
elif [ $WAYBAR_DEV_MODE = true ]; then
GTK_DEBUG=interactive exec $WAYBAR_LAUNCHER
else
exec $WAYBAR_LAUNCHER
fi