mirror of
https://github.com/elenapan/dotfiles.git
synced 2025-12-27 15:54:57 +08:00
10 lines
210 B
Bash
Executable file
10 lines
210 B
Bash
Executable file
#!/bin/bash
|
|
TEMP=3000
|
|
REDSHIFT="$(ps cax | grep redshift)"
|
|
if [ ${#REDSHIFT} -eq "0" ]; then
|
|
#echo "redshift is not running."
|
|
# run redshift
|
|
redshift -l 0:0 -t $TEMP:$TEMP -r &
|
|
else
|
|
killall redshift
|
|
fi
|