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