Fixes directory structure

This commit is contained in:
2026-07-06 23:55:57 -03:00
parent 4e7c886293
commit 244cffa6eb
17 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
#!/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