summaryrefslogtreecommitdiff
path: root/modules/intents/sway.py
diff options
context:
space:
mode:
authorBotond Hende <nettingman@gmail.com>2024-10-22 21:45:28 +0200
committerBotond Hende <nettingman@gmail.com>2024-10-22 21:45:28 +0200
commit6f3acbf0bec6bf012c5f52aee2f18059918104d9 (patch)
tree1d67188e675654cafe452f6c97f371693c112034 /modules/intents/sway.py
parent58d23f1f010e5d58b8d9296dae27988c939a53b1 (diff)
Diffstat (limited to 'modules/intents/sway.py')
-rw-r--r--modules/intents/sway.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/modules/intents/sway.py b/modules/intents/sway.py
index 5ab1b25..1773363 100644
--- a/modules/intents/sway.py
+++ b/modules/intents/sway.py
@@ -1,5 +1,9 @@
import os
from typing import Dict
+from ..config import Config
-def HesNavigate(data: Dict):
+def HesNavigate(data: Dict, config: Config):
os.popen(f"swaymsg workspace {data["workspace"]}")
+
+def HesLock(data: Dict, config: Config):
+ os.popen(config.lock) \ No newline at end of file