mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2024-11-10 02:39:40 +00:00
14 lines
278 B
Plaintext
14 lines
278 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
# shellcheck source=include
|
||
|
source "./scripts/include"
|
||
|
|
||
|
# Consider usning a file as a flag for whether nightlight is on or off
|
||
|
# as we might be in transition state and just killing the program might
|
||
|
# not be enough.
|
||
|
|
||
|
|
||
|
if [ "$1" = "toggle" ]; then
|
||
|
gammastep -x
|
||
|
fi
|