29 lines
615 B
QML
29 lines
615 B
QML
import QtQuick // for Text
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
import Quickshell.Hyprland
|
|
import Quickshell.Io
|
|
import Quickshell.Widgets
|
|
|
|
Item {
|
|
width: 30
|
|
height: 30
|
|
|
|
ClippingWrapperRectangle {
|
|
radius: 5
|
|
width: 30; height: 30
|
|
Button {
|
|
id: button
|
|
text: " "
|
|
font.pointSize: 16
|
|
Process {
|
|
id: launcher
|
|
running: false
|
|
command: ["rofi", "-show", "drun"]
|
|
}
|
|
onClicked: launcher.running = true
|
|
implicitHeight: parent.height
|
|
}
|
|
}
|
|
}
|