mirror of
https://github.com/LukeSmithxyz/voidrice.git
synced 2026-03-20 01:37:45 +01:00
14 lines
279 B
Bash
Executable File
14 lines
279 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# toggle for a "nightlight" color temperature
|
|
# requires xsct
|
|
|
|
ifinstalled "xsct" || exit
|
|
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
|