Skip to main content

max / alloy

1.0 KB · 32 lines History Blame Raw
1 ; Alloy gammastep configuration
2 ;
3 ; Time-based transitions with sensible temperate-zone defaults. Adjust
4 ; dawn-time / dusk-time to your local sunrise / sunset window, or switch
5 ; to location-provider=geoclue2 if you want automatic sun-position input.
6 ;
7 ; Keys are written tight against the `=` on purpose. gammastep's INI parser
8 ; does not trim the key, so `temp-day = 6500` is read as a setting literally
9 ; named "temp-day " and reported as unknown. Aligning the values, which every
10 ; other config in this tree does, silently disabled every line in this file:
11 ; the screen never warmed at night and gammastep ran on its own defaults.
12 ; Verified against gammastep's own `-p` output.
13
14 [general]
15 temp-day=6500
16 temp-night=3700
17 fade=1
18 gamma=1.0
19 adjustment-method=wayland
20 location-provider=manual
21
22 ; Fallback location if you don't set the [time] section.
23 ; Central US-ish default; adjust to your latitude/longitude.
24 [manual]
25 lat=40.0
26 lon=-105.0
27
28 ; Uncomment to switch from location-based to time-based transitions.
29 ; [time]
30 ; dawn-time=6:30-7:45
31 ; dusk-time=18:00-19:30
32