summary refs log tree commit diff
diff options
context:
space:
mode:
authorRobert Günzler <r@gnzler.io>2020-06-01 18:27:00 +0200
committerRobert Günzler <r@gnzler.io>2020-06-01 18:32:20 +0200
commitf46f6eea85ed51ff593ee6513618f914260203bf (patch)
tree271018fb5cdd3fac3055f86e1ec296ad0014f76a
parente818554a2223fb63fc302783ad496a06858ab0a2 (diff)
redshift: load generic symlinks on light change
-rwxr-xr-x.config/redshift/hooks/notif.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/.config/redshift/hooks/notif.sh b/.config/redshift/hooks/notif.sh
index 9ff487d..667f9e1 100755
--- a/.config/redshift/hooks/notif.sh
+++ b/.config/redshift/hooks/notif.sh
@@ -4,9 +4,9 @@ case "$1" in
 	period-changed)
 		notify-send "redshift" "changed to $3"
 		if [ "$3" = "night" ]; then
-			ogurictl output --image ~/Pictures/animepics/room/evening.png '*'
+			ogurictl output --image ~/.background_night '*'
 		else
-			ogurictl output --image ~/Pictures/animepics/room/day.png '*'
+			ogurictl output --image ~/.background '*'
 		fi
 		;;
 esac