massive config and scripts update

This commit is contained in:
elena 2018-01-21 14:19:40 +02:00
parent c283a6c3c9
commit 46c2bf7d26
856 changed files with 134316 additions and 1695 deletions

10
Scripts/flux_toggle.sh Executable file
View file

@ -0,0 +1,10 @@
#!/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