Files
dotfiles-hyprland/.config/hypr/scripts/launch-waybar.sh
2026-07-06 23:55:57 -03:00

13 lines
278 B
Bash
Executable File

#!/usr/bin/env bash
CONFIG="$HOME/.config/hypr/waybar/config"
STYLE="$HOME/.config/hypr/waybar/style.css"
if [[ $(pgrep -x "waybar") = "waybar" ]]; then
killall waybar
else
if [[ $(pgrep -x "waybar") = "" ]]; then
waybar -c $CONFIG -s $STYLE >/dev/null 2>&1 &
fi
fi