This commit is contained in:
2026-07-05 23:16:16 +05:30
commit 8abef18b68
28 changed files with 3212 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
import QtQuick
import Quickshell
Text {
required property var onClicked
function click() {
if (mouseArea.containsMouse) {
onClicked();
}
}
color: "#fff"
text: "Sound"
MouseArea {
id: mouseArea
anchors.fill: parent
hoverEnabled: true
cursorShape: Qt.PointingHandCursor
}
}