Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sentriz/wl-gammactld
a daemon for wl-gammactl
https://github.com/sentriz/wl-gammactld
brightness-control wayland wl-gammactl
Last synced: 21 days ago
JSON representation
a daemon for wl-gammactl
- Host: GitHub
- URL: https://github.com/sentriz/wl-gammactld
- Owner: sentriz
- Created: 2020-04-08T15:11:11.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-06-28T14:40:53.000Z (over 4 years ago)
- Last Synced: 2024-10-04T17:53:16.471Z (about 1 month ago)
- Topics: brightness-control, wayland, wl-gammactl
- Language: Shell
- Size: 3.91 KB
- Stars: 8
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### example [swaywm](https://github.com/swaywm/sway/) config
```
set $mode_colour "colour mode: gamma [o|p], brightness [k|l], contrast [n|m]"
mode $mode_colour {
bindsym o exec "echo 'gamma -0.2' > /tmp/wl-gammactld"
bindsym p exec "echo 'gamma +0.2' > /tmp/wl-gammactld"
bindsym k exec "echo 'brightness -0.2' > /tmp/wl-gammactld"
bindsym l exec "echo 'brightness +0.2' > /tmp/wl-gammactld"
bindsym n exec "echo 'contrast -0.2' > /tmp/wl-gammactld"
bindsym m exec "echo 'contrast +0.2' > /tmp/wl-gammactld"
bindsym Return mode "default"
bindsym Escape mode "default"
}
bindsym $super+c mode $mode_colour
exec wl-gammactld
```