dwmbar/modules/sunmoon

19 lines
311 B
Text
Raw Normal View History

2019-10-21 20:01:29 +00:00
#!/bin/bash
# Outputs sun if its daytime and moon if its nighttime
# Requires the redshift package
SUN_ICON='盛'
MOON_ICON=''
get_sunmoon()
{
if [[ $(redshift -p | grep "Period" | awk '{print $2}') == "Night" ]]; then
echo "$MOON_ICON"
else
echo "$SUN_ICON"
fi
}
get_sunmoon