adds overview, removes old stuff

This commit is contained in:
2026-08-19 20:47:29 +02:00
parent 6a9ae98c26
commit 67d50fb504
75 changed files with 3558 additions and 1691 deletions
@@ -0,0 +1,20 @@
// modules/PowerMenuWidget.qml - ⏻ button with inline popup menu.
import QtQuick
import QtQuick.Layouts
import Quickshell.Io
import ".."
Pill {
id: root
onHoveredChanged: {
if (hovered) GlobalStates.popups.toggle("powerMenu", mapToItem(null, width / 2, 0).x)
}
onClicked: {
GlobalStates.popups.toggle("powerMenu", mapToItem(null, width / 2, 0).x)
}
Text {
text: " "
font { family: Theme.fontMono; pixelSize: Theme.fontSize }
color: Theme.pillText
}
}