mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2026-08-02 11:38:30 -04:00
14 lines
377 B
QML
14 lines
377 B
QML
pragma Singleton
|
|
|
|
import Quickshell
|
|
import qs.DankCommon.Common as DankCommon
|
|
|
|
Singleton {
|
|
readonly property int noTimeout: DankCommon.Proc.noTimeout
|
|
readonly property string dmsBin: DankCommon.Proc.dmsBin
|
|
|
|
function runCommand(id, command, callback, debounceMs, timeoutMs) {
|
|
DankCommon.Proc.runCommand(id, command, callback, debounceMs, timeoutMs);
|
|
}
|
|
}
|