From 4409620ac7a6965259fc6407127799c468f5421c Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Sat, 14 Jun 2025 15:34:47 +1000 Subject: feat: impl pip subcommand --- src/caelestia/utils/hypr.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/caelestia/utils') diff --git a/src/caelestia/utils/hypr.py b/src/caelestia/utils/hypr.py index 3ba89cf..f89cd98 100644 --- a/src/caelestia/utils/hypr.py +++ b/src/caelestia/utils/hypr.py @@ -2,7 +2,9 @@ import json as j import os import socket -socket_path = f"{os.getenv('XDG_RUNTIME_DIR')}/hypr/{os.getenv('HYPRLAND_INSTANCE_SIGNATURE')}/.socket.sock" +socket_base = f"{os.getenv('XDG_RUNTIME_DIR')}/hypr/{os.getenv('HYPRLAND_INSTANCE_SIGNATURE')}" +socket_path = f"{socket_base}/.socket.sock" +socket2_path = f"{socket_base}/.socket2.sock" def message(msg: str, json: bool = True) -> str | dict[str, any]: -- cgit v1.2.3-freya