summary refs log tree commit diff
path: root/.config/gammastep/hooks/notif.sh
diff options
context:
space:
mode:
authorRobert Günzler <r@gnzler.io>2021-04-26 01:58:12 +0200
committerRobert Günzler <r@gnzler.io>2021-04-26 02:09:50 +0200
commit2fa1b42fc9e37dc1e0baa02f8ede0a6655b72858 (patch)
tree73dd41d7c1f789d0eae56d121d63147d5c13f1d0 /.config/gammastep/hooks/notif.sh
parent5bd9cdf6e45da7a9d22d9aedeb3ecd9fdce33bf0 (diff)
gammastep: switch desktop theme when going into night mode
Diffstat (limited to '.config/gammastep/hooks/notif.sh')
-rwxr-xr-x.config/gammastep/hooks/notif.sh10
1 files changed, 0 insertions, 10 deletions
diff --git a/.config/gammastep/hooks/notif.sh b/.config/gammastep/hooks/notif.sh
deleted file mode 100755
index de04d6c..0000000
--- a/.config/gammastep/hooks/notif.sh
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/sh
-
-case "$1" in
-	period-changed)
-		case "$3" in
-		transition|night)	pkill -USR2 waybar-redshift ;;
-		none|day)		pkill -USR1 waybar-redshift ;;
-		esac
-		;;
-esac