#!/bin/bash
# ABOUTME: Toggles wlsunset night light on/off via systemd user service.
# ABOUTME: Persists state across reboots (enable/disable), signals waybar for refresh.

if systemctl --user is-active --quiet wlsunset; then
    systemctl --user disable --now wlsunset
else
    systemctl --user enable --now wlsunset
fi

pkill -RTMIN+11 waybar
