Files
dotfiles/quickshell/modules/components/Sound.qml
T
2026-07-05 23:16:16 +05:30

24 lines
365 B
QML

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
}
}