niri: update config

This commit is contained in:
2026-03-12 16:20:34 +01:00
parent 16a63722d4
commit 1a019366ba
5 changed files with 141 additions and 125 deletions
@@ -1,4 +1,5 @@
import QtQuick
import Quickshell.Io
import qs.Constants
import qs.Services
@@ -7,4 +8,21 @@ Text {
font.pointSize: Style.fontSizeM
font.family: Fonts.primary
color: Colors.mPrimary
MouseArea {
anchors.fill: parent
acceptedButtons: Qt.LeftButton
cursorShape: Qt.PointingHandCursor
onClicked: {
action.running = !action.running;
}
}
Process {
id: action
running: false
command: ["rofi", "-show", "drun"]
}
}