mirror of
https://github.com/danbulant/dots-hyprland
synced 2026-05-24 12:22:09 +00:00
brightness: use exponential adjustment
This commit is contained in:
parent
7d71d9d507
commit
f0c1f0adff
1 changed files with 3 additions and 3 deletions
|
|
@ -48,7 +48,7 @@ Singleton {
|
||||||
Process {
|
Process {
|
||||||
id: decreaseBrightness
|
id: decreaseBrightness
|
||||||
|
|
||||||
command: ["brightnessctl", "set", "5%-"]
|
command: ["brightnessctl", "set", "5%-", "-e"]
|
||||||
running: false
|
running: false
|
||||||
onExited: {
|
onExited: {
|
||||||
running = false;
|
running = false;
|
||||||
|
|
@ -59,7 +59,7 @@ Singleton {
|
||||||
Process {
|
Process {
|
||||||
id: increaseBrightness
|
id: increaseBrightness
|
||||||
|
|
||||||
command: ["brightnessctl", "set", "5%+"]
|
command: ["brightnessctl", "set", "5%+", "-e"]
|
||||||
running: false
|
running: false
|
||||||
onExited: {
|
onExited: {
|
||||||
running = false;
|
running = false;
|
||||||
|
|
@ -70,7 +70,7 @@ Singleton {
|
||||||
Process {
|
Process {
|
||||||
id: preventPitchBlack
|
id: preventPitchBlack
|
||||||
|
|
||||||
command: ["brightnessctl", "set", "1%+"]
|
command: ["brightnessctl", "set", "1%+", "-e"]
|
||||||
running: false
|
running: false
|
||||||
onExited: {
|
onExited: {
|
||||||
running = false;
|
running = false;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue