Initial commit

This commit is contained in:
Teo
2025-11-26 16:16:42 +01:00
commit 7a9756e0e1
9 changed files with 396 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
import QtQuick
import Quickshell
import Quickshell.Hyprland
MouseArea {
id: archButton
width: 30
height: 28
hoverEnabled: true
cursorShape: Qt.PointingHandCursor
Rectangle {
anchors.fill: parent
color: archButton.containsMouse ? "#2a2a2a" : "transparent"
radius: 6
Text {
anchors.centerIn: parent
text: "󰣇"
font.pixelSize: 26
font.family: "Nerd Font"
color: "#ffffff"
}
}
}