mirror of
https://github.com/end-4/dots-hyprland.git
synced 2026-06-07 07:49:28 -05:00
18 lines
469 B
QML
18 lines
469 B
QML
import qs.services
|
|
import QtQuick
|
|
import Quickshell
|
|
import Quickshell.Hyprland
|
|
import "../"
|
|
|
|
OsdValueIndicator {
|
|
id: root
|
|
property var focusedScreen: Quickshell.screens.find(s => s.name === Hyprland.focusedMonitor?.name)
|
|
property var brightnessMonitor: Brightness.getMonitorForScreen(focusedScreen)
|
|
|
|
value: root.brightnessMonitor?.brightness ?? 50
|
|
icon: "light_mode"
|
|
rotateIcon: true
|
|
scaleIcon: true
|
|
name: Translation.tr("Brightness")
|
|
}
|