diff options
| author | Robert Günzler <r@gnzler.io> | 2021-08-03 22:13:19 +0200 |
|---|---|---|
| committer | Robert Günzler <r@gnzler.io> | 2021-08-03 22:13:19 +0200 |
| commit | ce4ae6e233aca6942821502121ebab3b651404cb (patch) | |
| tree | df82055bf7f0f0e345e8d8ab626afc447695d12d | |
| parent | a17c17a9d847e3d401ea679ffa0e35c74c1849b5 (diff) | |
gammastep: drop config, using wlsunset
| -rw-r--r-- | .config/gammastep/config.ini | 18 | ||||
| -rwxr-xr-x | .config/gammastep/hooks/switch.sh | 27 |
2 files changed, 0 insertions, 45 deletions
diff --git a/.config/gammastep/config.ini b/.config/gammastep/config.ini deleted file mode 100644 index bad0e02..0000000 --- a/.config/gammastep/config.ini +++ /dev/null @@ -1,18 +0,0 @@ -[general] -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/switch.sh b/.config/gammastep/hooks/switch.sh deleted file mode 100755 index fae86ec..0000000 --- a/.config/gammastep/hooks/switch.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh - -set -x - -case "$1" in - period-changed) - - case "$3" in - night|transition) - notify-send gammastep "changing to night" - gsettings set org.gnome.desktop.interface gtk-theme Adwaita-dark - pkill -fe -USR2 waybar-gammastep - ;; - - daytime) - notify-send gammastep "changing to day" - gsettings set org.gnome.desktop.interface gtk-theme Adwaita - pkill -fe -USR1 waybar-gammastep - ;; - - none) - notify-send gammastep "turning off" - pkill -fe -USR1 waybar-gammastep - ;; - esac - ;; -esac |