#!/usr/bin/env bash # Check if wlsunset service is active and return appropriate icon if systemctl --user is-active --quiet wlsunset; then echo "󰖜" # Moon/sunset icon (night mode active) else echo "󰖚" # Sun icon (day mode) fi