diff options
author | Azat Bahawi <azahi@teknik.io> | 2020-01-12 17:57:07 +0300 |
---|---|---|
committer | Azat Bahawi <azahi@teknik.io> | 2020-01-12 17:57:07 +0300 |
commit | fc3ece0b1a0ab6bca8d2e8ee44518981de2cfdd1 (patch) | |
tree | ce98e88cf767f0cc352ae07423aabfa47185e541 /scripts/toggle-redshift.sh | |
parent | Happy New Year (diff) |
Minor fixes to keybinds and scripts
Diffstat (limited to 'scripts/toggle-redshift.sh')
-rwxr-xr-x | scripts/toggle-redshift.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/toggle-redshift.sh b/scripts/toggle-redshift.sh index bd70f60..2813aea 100755 --- a/scripts/toggle-redshift.sh +++ b/scripts/toggle-redshift.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -if ! pgrep redshift +if ! pgrep redshift > /dev/null 2>&1 then - redshift -c "$XDG_CONFIG_HOME/redshift.conf" & + redshift & disown redshift else pkill redshift |