powerprofile switcher

This commit is contained in:
Zacharias-Brohn
2026-02-12 14:31:33 +01:00
parent ae23c309a2
commit 7efe7f44bf
10 changed files with 266 additions and 12 deletions
+25
View File
@@ -0,0 +1,25 @@
import Quickshell
import QtQuick
import QtQuick.Layouts
import qs.Components
import qs.Modules
Item {
id: root
anchors.top: parent.top
anchors.bottom: parent.bottom
implicitWidth: layout.implicitWidth
RowLayout {
id: layout
anchors.top: parent.top
anchors.bottom: parent.bottom
MaterialIcon {
text: "android_wifi_4_bar"
Layout.alignment: Qt.AlignVCenter
}
}
}