removed eww and waybar added quickshell

This commit is contained in:
samantha42
2026-05-18 08:19:40 +02:00
parent f7d6f07e3a
commit 36ee6f35da
36 changed files with 713 additions and 1657 deletions

28
quickshell/PowerBtn.qml Normal file
View File

@@ -0,0 +1,28 @@
import QtQuick
// Reusable icon button for LogoutMenu actions (eww center-btn)
Rectangle {
id: root
property string icon: ""
signal activated()
width: 26; height: 26; radius: 13
color: ma.containsMouse ? "#f38ba8" : "#313244"
Behavior on color { ColorAnimation { duration: 120 } }
Text {
anchors.centerIn: parent
text: root.icon
color: "#cdd6f4"
font.pixelSize: 13
}
MouseArea {
id: ma
anchors.fill: parent
hoverEnabled: true
onClicked: root.activated()
cursorShape: Qt.PointingHandCursor
}
}