14 lines
324 B
QML
14 lines
324 B
QML
import QtQuick
|
|
import Quickshell.Io
|
|
|
|
// Simple settings icon button used on HDMI bar (eww settings-btn)
|
|
StatPill {
|
|
text: ""
|
|
clickable: true
|
|
onClicked: {
|
|
Qt.createQmlObject(
|
|
'import Quickshell.Io; Process { command: ["your-settings-command"]; running: true }',
|
|
parent)
|
|
}
|
|
}
|