Waybar now remembers when it must hide or show after reboot, set-wallpaper and batteryctl patches, changed waybar style once again, plus various minor tweaks

This commit is contained in:
Gu://em_ 2025-01-20 12:53:06 +01:00
parent 806d59b71d
commit 3a293cf0f3
15 changed files with 107 additions and 32 deletions

View file

@ -0,0 +1,18 @@
#!/bin/sh
# This script is launched on every hyprland startup
# Please note that it is intended for desktop related programs ONLY, as it will be called every time you reload the desktop
# If you want to add your own applications you may rather want to use exec-once in the environment.conf file
hyprpaper &
albert &
# mako &
systemctl --user start hyprpolkitagent &
# Launch waybar depending on the last status
waybar_status=~/.config/hypr/status/waybar
if [ "$(cat $waybar_status)" == "on" ]; then
waybar &
elif [ "$(cat $waybar_status)" != "off" ]; then
hyprctl notify 0 3000 0 Failed to retrieve waybar status
fi