import Quickshell // for PanelWindow import QtQuick // for Text import QtQuick.Controls import Quickshell.Io import Quickshell.Widgets 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 } }