From e7e6f4d0b5b866fa11830cf75e5fead60c51c2d6 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Fri, 16 May 2025 10:41:28 +0200 Subject: [PATCH] brightness: make keybind and bar scroll consistent --- .config/quickshell/services/Brightness.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/quickshell/services/Brightness.qml b/.config/quickshell/services/Brightness.qml index 2a4c630ac..7fc2a2b24 100644 --- a/.config/quickshell/services/Brightness.qml +++ b/.config/quickshell/services/Brightness.qml @@ -24,14 +24,14 @@ Singleton { const focusedName = Hyprland.focusedMonitor.name; const monitor = monitors.find(m => focusedName === m.screen.name); if (monitor) - monitor.setBrightness(monitor.brightness + 0.1); + monitor.setBrightness(monitor.brightness + 0.05); } function decreaseBrightness(): void { const focusedName = Hyprland.focusedMonitor.name; const monitor = monitors.find(m => focusedName === m.screen.name); if (monitor) - monitor.setBrightness(monitor.brightness - 0.1); + monitor.setBrightness(monitor.brightness - 0.05); } reloadableId: "brightness"