summaryrefslogtreecommitdiff
path: root/accounts/gkleen@sif/shell/quickshell
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2026-03-05 14:42:46 +0100
committerGregor Kleen <gkleen@yggdrasil.li>2026-03-05 14:42:46 +0100
commit1e9397de499d48a3d1bc1465e1e0fc70a75c1149 (patch)
tree486bd65e09f0d82f291a82f64c297f32de130cec /accounts/gkleen@sif/shell/quickshell
parent7723f022a4699715856e8b249b6e01f7ecaf5db3 (diff)
downloadnixos-1e9397de499d48a3d1bc1465e1e0fc70a75c1149.tar
nixos-1e9397de499d48a3d1bc1465e1e0fc70a75c1149.tar.gz
nixos-1e9397de499d48a3d1bc1465e1e0fc70a75c1149.tar.bz2
nixos-1e9397de499d48a3d1bc1465e1e0fc70a75c1149.tar.xz
nixos-1e9397de499d48a3d1bc1465e1e0fc70a75c1149.zip
...
Diffstat (limited to 'accounts/gkleen@sif/shell/quickshell')
-rw-r--r--accounts/gkleen@sif/shell/quickshell/Services/Brightness.qml9
1 files changed, 9 insertions, 0 deletions
diff --git a/accounts/gkleen@sif/shell/quickshell/Services/Brightness.qml b/accounts/gkleen@sif/shell/quickshell/Services/Brightness.qml
index 52103c6f..c01169cd 100644
--- a/accounts/gkleen@sif/shell/quickshell/Services/Brightness.qml
+++ b/accounts/gkleen@sif/shell/quickshell/Services/Brightness.qml
@@ -93,4 +93,13 @@ Singleton {
93 if (!root.onlyInternal) 93 if (!root.onlyInternal)
94 root.currBrightness = 1 94 root.currBrightness = 1
95 } 95 }
96
97
98 IpcHandler {
99 target: "Brightness"
100
101 function set(brightness: real): void {
102 root.currBrightness = brightness;
103 }
104 }
96} 105}