brightess and volume control

This commit is contained in:
2026-03-26 13:15:54 -07:00
parent 80efc104ed
commit 5b8d82a934
20 changed files with 588 additions and 37 deletions

View File

@@ -1,3 +1,4 @@
import QtQuick
import Quickshell
import Quickshell.Io
import Quickshell.Services.Notifications
@@ -9,12 +10,20 @@ ShellRoot {
onNotification: (notif) => notif.tracked = true
}
Shell.Wall {}
Shell.TopBar {}
Shell.TopBar {id: bar}
Shell.Boateye {}
Shell.Lock {
id: lock
animate: true
}
PanelWindow {
anchors {
top: true
}
implicitHeight: 1
implicitWidth: 800
HoverHandler {onHoveredChanged: {if (hovered) bar.open() }}
}
IpcHandler {
target: "lock"
function instalock() {lock.animate = false; lock.locked = true}