diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-06-11 20:37:37 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-06-11 20:37:37 +1000 |
| commit | d44bde166782928db85242e86df6190e9bcfa92a (patch) | |
| tree | faa098a83f45685012ab728f44ac030cff76470d /src/caelestia/utils/hypr.py | |
| parent | feat: impl scheme command (partial) (diff) | |
| download | caelestia-cli-d44bde166782928db85242e86df6190e9bcfa92a.tar.gz caelestia-cli-d44bde166782928db85242e86df6190e9bcfa92a.tar.bz2 caelestia-cli-d44bde166782928db85242e86df6190e9bcfa92a.zip | |
feat: theme hypr and terminals
Diffstat (limited to 'src/caelestia/utils/hypr.py')
| -rw-r--r-- | src/caelestia/utils/hypr.py | 2 |
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" |