9 lines
177 B
QML
9 lines
177 B
QML
import Quickshell
|
|
import QtQuick
|
|
|
|
MouseArea {
|
|
anchors.fill: parent
|
|
onClicked: Quickshell.execDetached(["kitty", "-e", "nmtui"])
|
|
cursorShape: Qt.PointingHandCursor
|
|
}
|