summaryrefslogtreecommitdiff
path: root/modules/osd/Content.qml
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-05-04 23:18:11 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-05-04 23:18:11 +1000
commitcd45cafa601f313f447931002c1351a658aab404 (patch)
tree789d8ab9271e4b7e2d39a628e1efdb3da2c9ecf9 /modules/osd/Content.qml
parentosd: pause hide on hover (diff)
downloadcaelestia-shell-cd45cafa601f313f447931002c1351a658aab404.tar.gz
caelestia-shell-cd45cafa601f313f447931002c1351a658aab404.tar.bz2
caelestia-shell-cd45cafa601f313f447931002c1351a658aab404.zip
bar: add scroll actions to fillers
Also change the brightness osd icon depending on value
Diffstat (limited to 'modules/osd/Content.qml')
-rw-r--r--modules/osd/Content.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/osd/Content.qml b/modules/osd/Content.qml
index b224bf6..54976e4 100644
--- a/modules/osd/Content.qml
+++ b/modules/osd/Content.qml
@@ -34,7 +34,7 @@ Column {
}
VerticalSlider {
- icon: "brightness_6"
+ icon: `brightness_${(Math.round(value * 6) + 1)}`
value: root.monitor?.brightness ?? 0
onMoved: root.monitor?.setBrightness(value)