1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-08-01 19:18:28 -04:00
Files
DankMaterialShell/quickshell/Common/Proc.qml
T
2026-07-18 10:43:43 -04:00

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);
}
}