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"