summaryrefslogtreecommitdiff
path: root/src/caelestia/utils/hypr.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/caelestia/utils/hypr.py')
-rw-r--r--src/caelestia/utils/hypr.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/caelestia/utils/hypr.py b/src/caelestia/utils/hypr.py
index 621e28e..3ba89cf 100644
--- a/src/caelestia/utils/hypr.py
+++ b/src/caelestia/utils/hypr.py
@@ -24,4 +24,4 @@ def message(msg: str, json: bool = True) -> str | dict[str, any]:
def dispatch(dispatcher: str, *args: list[any]) -> bool:
- return message(f"dispatch {dispatcher} {' '.join(str(a) for a in args)}".rstrip(), json=False) == "ok"
+ return message(f"dispatch {dispatcher} {' '.join(map(str, args))}".rstrip(), json=False) == "ok"