Replace waybar launch script with hyprland autostart

This commit is contained in:
Sravan Balaji
2025-04-27 08:52:49 -04:00
parent f2b92f7938
commit 0896e34dee
3 changed files with 6 additions and 35 deletions

View File

@@ -1,15 +0,0 @@
#!/usr/bin/env bash
killall waybar || true
until /usr/bin/waybar \
--config $HOME/.config/dwl/waybar/config.jsonc \
--style $HOME/.config/dwl/waybar/style.css;
do
if [ $? -ne 143 ]; then
echo "Dwl Waybar stopped with exit code $?. Respawning..." >&2;
sleep 1;
else
echo "Dwl Waybar manually killed with SIGTERM";
break;
fi
done