voidrice/.local/bin/nightlight
2022-08-31 09:30:15 -07:00

13 lines
252 B
Bash
Executable File

#!/bin/sh
# toggle for a "nightlight" color temperature
# requires xsct
colortemp="$(xsct | cut -d' ' -f5)"
if [ "$colortemp" -ge "6500" ]; then
xsct 2700 && notify-send "🌙 Night Light On"
else
xsct 0 && notify-send "☀️ Night Light Off"
fi