2024-03-08 04:30:51 -08:00
|
|
|
import QtQuick
|
|
|
|
import Quickshell.Io
|
|
|
|
|
|
|
|
QtObject {
|
|
|
|
required property string command
|
|
|
|
required property string text
|
|
|
|
required property string icon
|
|
|
|
property var keybind: null
|
|
|
|
|
|
|
|
id: button
|
|
|
|
|
|
|
|
readonly property var process: Process {
|
|
|
|
command: ["sh", "-c", button.command]
|
|
|
|
}
|
|
|
|
|
|
|
|
function exec() {
|
2025-05-14 02:55:03 -07:00
|
|
|
process.startDetached();
|
2024-03-08 04:30:51 -08:00
|
|
|
Qt.quit();
|
|
|
|
}
|
|
|
|
}
|