add hyprland configs

This commit is contained in:
m3philis
2025-04-07 23:03:46 +02:00
parent 2fc2338e73
commit bbeb93cd79
15 changed files with 3430 additions and 2 deletions

11
waybar/launch-waybar Executable file
View File

@@ -0,0 +1,11 @@
#!/bin/bash
CONFIG_FILES="$HOME/.config/waybar/config.jsonc $HOME/.config/waybar/style.css"
trap "killall waybar" EXIT
while true; do
waybar &
inotifywait -e create,modify $CONFIG_FILES
killall waybar
done