mirror of
https://github.imc.re/void-land/hyprland-void-dots
synced 2025-09-07 07:12:53 +02:00
14 lines
280 B
Bash
Executable file
14 lines
280 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
source ~/.config/scripts/env.sh
|
|
WAYBAR_START="$HOME/.config/hypr/scripts/waybar/start.sh"
|
|
|
|
if pgrep -x waybar >/dev/null; then
|
|
pkill -f waybar
|
|
fi
|
|
|
|
if [ $WAYBAR_DEV_MODE = true ]; then
|
|
GTK_DEBUG=interactive $WAYBAR_START
|
|
else
|
|
exec $WAYBAR_START
|
|
fi
|