summary refs log tree commit diff
path: root/.config/gammastep
diff options
context:
space:
mode:
Diffstat (limited to '.config/gammastep')
-rw-r--r--.config/gammastep/config.ini18
-rwxr-xr-x.config/gammastep/hooks/notif.sh10
2 files changed, 28 insertions, 0 deletions
diff --git a/.config/gammastep/config.ini b/.config/gammastep/config.ini
new file mode 100644
index 0000000..2d08e66
--- /dev/null
+++ b/.config/gammastep/config.ini
@@ -0,0 +1,18 @@
+[redshift]
+adjustment-method=wayland
+gamma=0.9
+fade=1
+
+brightness-day=1.0
+# gamma-day=
+temp-day=6600
+
+brightness-night=1.0
+# gamma-night=
+temp-night=4100
+
+location-provider=manual
+
+[manual]
+lat=52.54
+lon=13.44
diff --git a/.config/gammastep/hooks/notif.sh b/.config/gammastep/hooks/notif.sh
new file mode 100755
index 0000000..de04d6c
--- /dev/null
+++ b/.config/gammastep/hooks/notif.sh
@@ -0,0 +1,10 @@
+#!/bin/sh
+
+case "$1" in
+	period-changed)
+		case "$3" in
+		transition|night)	pkill -USR2 waybar-redshift ;;
+		none|day)		pkill -USR1 waybar-redshift ;;
+		esac
+		;;
+esac