diff options
author | Botond Hende <nettingman@gmail.com> | 2024-10-22 21:45:28 +0200 |
---|---|---|
committer | Botond Hende <nettingman@gmail.com> | 2024-10-22 21:45:28 +0200 |
commit | 6f3acbf0bec6bf012c5f52aee2f18059918104d9 (patch) | |
tree | 1d67188e675654cafe452f6c97f371693c112034 /modules/intents/process.py | |
parent | 58d23f1f010e5d58b8d9296dae27988c939a53b1 (diff) |
Diffstat (limited to 'modules/intents/process.py')
-rw-r--r-- | modules/intents/process.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/modules/intents/process.py b/modules/intents/process.py index bc834b6..0bed441 100644 --- a/modules/intents/process.py +++ b/modules/intents/process.py @@ -1,9 +1,11 @@ import os from typing import Dict from .sway import HesNavigate +from ..config import Config -def HesExecuteProcess(data: Dict): + +def HesExecuteProcess(data: Dict, config: Config): if "workspace" in data: - HesNavigate(data) + HesNavigate(data, config) os.popen(data["process"].strip()) |