32 lines
720 B
QML
32 lines
720 B
QML
import Quickshell // for PanelWindow
|
|
import QtQuick // for Text
|
|
import QtQuick.Controls
|
|
import Quickshell.Io
|
|
import Quickshell.Widgets
|
|
|
|
WrapperMouseArea {
|
|
|
|
ClippingWrapperRectangle {
|
|
radius: 3
|
|
implicitWidth: 30; implicitHeight: 30
|
|
Text {
|
|
horizontalAlignment: Text.AlignHCenter
|
|
verticalAlignment: Text.AlignVCenter
|
|
anchors.fill: parent
|
|
text: " "
|
|
font.pointSize: 16
|
|
|
|
color: Settings.special.foreground
|
|
}
|
|
color: {
|
|
containsMouse
|
|
? Settings.colors.color12
|
|
: Settings.colors.color1
|
|
}
|
|
}
|
|
|
|
hoverEnabled: true
|
|
|
|
onClicked: Settings.launcherOpen = true
|
|
}
|