Initial setup commit

This commit is contained in:
2026-07-06 23:46:51 -03:00
commit 4e7c886293
17 changed files with 4491 additions and 0 deletions

12
hypr/scripts/launch-waybar.sh Executable file
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