mirror of
https://github.com/caelestia-dots/cli.git
synced 2026-06-05 14:59:29 -05:00
Compare commits
15 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d1c8c8fc09 | |||
| ad533a0dd4 | |||
| ccd2712982 | |||
| 1ea661859d | |||
| 64a5507e74 | |||
| 7fa3fc1bd0 | |||
| 7f30062670 | |||
| 04d286eaff | |||
| 2ce6213698 | |||
| 4b3ffcd644 | |||
| 2621724c55 | |||
| 7b8a4281aa | |||
| 7452974dc9 | |||
| 544b567668 | |||
| 1f523c7556 |
Generated
+10
-10
@@ -9,11 +9,11 @@
|
||||
"quickshell": "quickshell"
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1777688289,
|
||||
"narHash": "sha256-2EaEVkT1oUpjLLp7uEY/hDYDOa2k5R1YgcJpHei+lUM=",
|
||||
"lastModified": 1780196414,
|
||||
"narHash": "sha256-iXmyWULTZuRd68xRL79e9GyYL9FZ6gfh6zl1PPlWX2A=",
|
||||
"owner": "caelestia-dots",
|
||||
"repo": "shell",
|
||||
"rev": "4e9e1f4b723f7e3a87cb280d67a25ee92c87fbff",
|
||||
"rev": "63bb82762bb29ac9b7fcd5b97839abae721ce860",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
@@ -24,11 +24,11 @@
|
||||
},
|
||||
"nixpkgs": {
|
||||
"locked": {
|
||||
"lastModified": 1777268161,
|
||||
"narHash": "sha256-bxrdOn8SCOv8tN4JbTF/TXq7kjo9ag4M+C8yzzIRYbE=",
|
||||
"lastModified": 1780243769,
|
||||
"narHash": "sha256-x5UQuRsH3MqI0U9afaXSNqzTPSeZlRLvFAav2Ux1pNw=",
|
||||
"owner": "nixos",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "1c3fe55ad329cbcb28471bb30f05c9827f724c76",
|
||||
"rev": "331800de5053fcebacf6813adb5db9c9dca22a0c",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
@@ -46,11 +46,11 @@
|
||||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1777341401,
|
||||
"narHash": "sha256-QEAVYeXxvTamsYJVBq8+qSJV9ml2MxqRaZvkobfuPWA=",
|
||||
"lastModified": 1779430452,
|
||||
"narHash": "sha256-zTslhsxLqUlRTML506iougTGzyR38Fzhzn7t4KDEuuE=",
|
||||
"ref": "refs/heads/master",
|
||||
"rev": "0baa81aa03559ca315668e5a306364cddf1a6f49",
|
||||
"revCount": 812,
|
||||
"rev": "4b4fca3224ab977dc515ac0bb78d00b3dfa71e00",
|
||||
"revCount": 819,
|
||||
"type": "git",
|
||||
"url": "https://git.outfoxxed.me/outfoxxed/quickshell"
|
||||
},
|
||||
|
||||
@@ -26,6 +26,26 @@ class Command:
|
||||
self.timeout_tracker: dict[str, float] = {}
|
||||
self.window_rules = self._load_window_rules()
|
||||
|
||||
def _make_resize_cmd(self, width: int | str, height: int | str, address: str) -> str:
|
||||
if hypr.is_lua_config():
|
||||
return f'dispatch hl.dsp.window.resize({{x = {width}, y = {height}, exact = true, window = "address:{address}"}})'
|
||||
return f"dispatch resizewindowpixel exact {width} {height},address:{address}"
|
||||
|
||||
def _make_move_cmd(self, x: int, y: int, address: str) -> str:
|
||||
if hypr.is_lua_config():
|
||||
return f'dispatch hl.dsp.window.move({{x = {x}, y = {y}, window = "address:{address}"}})'
|
||||
return f"dispatch movewindowpixel exact {x} {y},address:{address}"
|
||||
|
||||
def _make_float_cmd(self, address: str) -> str:
|
||||
if hypr.is_lua_config():
|
||||
return f'dispatch hl.dsp.window.float({{action = "toggle", window = "address:{address}"}})'
|
||||
return f"dispatch togglefloating address:{address}"
|
||||
|
||||
def _make_center_cmd(self) -> str:
|
||||
if hypr.is_lua_config():
|
||||
return "dispatch hl.dsp.window.center()"
|
||||
return "dispatch centerwindow"
|
||||
|
||||
def _load_window_rules(self) -> list[WindowRule]:
|
||||
default_rules = [
|
||||
WindowRule("(Bitwarden", "titleContains", "20%", "54%", ["float", "center"]),
|
||||
@@ -164,8 +184,8 @@ class Command:
|
||||
move_x = monitor_x + monitor_width - scaled_width - offset
|
||||
move_y = monitor_y + monitor_height - scaled_height - offset
|
||||
|
||||
command1 = f"dispatch resizewindowpixel exact {scaled_width} {scaled_height},address:{address}"
|
||||
command2 = f"dispatch movewindowpixel exact {int(move_x)} {int(move_y)},address:{address}"
|
||||
command1 = self._make_resize_cmd(scaled_width, scaled_height, address)
|
||||
command2 = self._make_move_cmd(int(move_x), int(move_y), address)
|
||||
hypr.batch(command1, command2)
|
||||
|
||||
log_message(
|
||||
@@ -181,16 +201,16 @@ class Command:
|
||||
if "float" in actions:
|
||||
window_info = self._get_window_info(window_id)
|
||||
if window_info and not window_info.get("floating", False):
|
||||
dispatch_commands.append(f"dispatch togglefloating address:0x{window_id}")
|
||||
dispatch_commands.append(self._make_float_cmd(f"0x{window_id}"))
|
||||
|
||||
if "pip" in actions:
|
||||
self._apply_pip_action(window_id)
|
||||
return True
|
||||
|
||||
dispatch_commands.append(f"dispatch resizewindowpixel exact {width} {height},address:0x{window_id}")
|
||||
dispatch_commands.append(self._make_resize_cmd(width, height, f"0x{window_id}"))
|
||||
|
||||
if "center" in actions:
|
||||
dispatch_commands.append("dispatch centerwindow")
|
||||
dispatch_commands.append(self._make_center_cmd())
|
||||
|
||||
try:
|
||||
hypr.batch(*dispatch_commands)
|
||||
|
||||
@@ -2,6 +2,7 @@ import subprocess
|
||||
from argparse import Namespace
|
||||
from datetime import datetime
|
||||
|
||||
from caelestia.utils import hypr
|
||||
from caelestia.utils.notify import notify
|
||||
from caelestia.utils.paths import screenshots_cache_dir, screenshots_dir
|
||||
|
||||
@@ -33,7 +34,12 @@ class Command:
|
||||
swappy.stdin.close()
|
||||
|
||||
def fullscreen(self) -> None:
|
||||
sc_data = subprocess.check_output(["grim", "-"])
|
||||
cmd = ["grim"]
|
||||
focused_monitor = next(monitor for monitor in hypr.message("monitors") if monitor["focused"])
|
||||
if focused_monitor:
|
||||
cmd += ["-o", focused_monitor["name"]]
|
||||
cmd += ["-"]
|
||||
sc_data = subprocess.check_output(cmd)
|
||||
|
||||
subprocess.run(["wl-copy"], input=sc_data)
|
||||
|
||||
|
||||
@@ -7,6 +7,7 @@ socket_base = f"{os.getenv('XDG_RUNTIME_DIR')}/hypr/{os.getenv('HYPRLAND_INSTANC
|
||||
socket_path = f"{socket_base}/.socket.sock"
|
||||
socket2_path = f"{socket_base}/.socket2.sock"
|
||||
|
||||
_lua_config_cache: bool | None = None
|
||||
|
||||
def message(msg: str, is_json: bool = True) -> str | dict[str, Any]:
|
||||
with socket.socket(socket.AF_UNIX, socket.SOCK_STREAM) as sock:
|
||||
@@ -26,7 +27,36 @@ def message(msg: str, is_json: bool = True) -> str | dict[str, Any]:
|
||||
return json.loads(resp) if is_json else resp
|
||||
|
||||
|
||||
def is_lua_config() -> bool:
|
||||
global _lua_config_cache
|
||||
if _lua_config_cache is not None:
|
||||
return _lua_config_cache
|
||||
try:
|
||||
result = message("systeminfo", is_json=False)
|
||||
for line in result.splitlines():
|
||||
if "configProvider:" in line:
|
||||
_lua_config_cache = "lua" in line.lower()
|
||||
return _lua_config_cache
|
||||
_lua_config_cache = False
|
||||
return False
|
||||
except Exception:
|
||||
_lua_config_cache = False
|
||||
return False
|
||||
|
||||
|
||||
DISPATCHER_MAP_LUA = {
|
||||
"togglespecialworkspace": lambda *a: f'hl.dsp.workspace.toggle_special("{a[0]}")' if a else 'hl.dsp.workspace.toggle_special()',
|
||||
"movetoworkspacesilent": lambda *a: (
|
||||
f'hl.dsp.window.move({{window = "address:{a[0].split(",")[1].replace("address:", "")}", workspace = "{a[0].split(",")[0]}", follow = false}})'
|
||||
),
|
||||
"exec": lambda *a: 'hl.dsp.exec_cmd("' + ' '.join(a).replace('\\', '\\\\').replace('"', '\\"') + '")',
|
||||
}
|
||||
|
||||
|
||||
def dispatch(dispatcher: str, *args: str) -> bool:
|
||||
if is_lua_config() and dispatcher in DISPATCHER_MAP_LUA:
|
||||
lua_dispatch = DISPATCHER_MAP_LUA[dispatcher](*args)
|
||||
return message(f"dispatch {lua_dispatch}", is_json=False) == "ok"
|
||||
return message(f"dispatch {dispatcher} {' '.join(map(str, args))}".rstrip(), is_json=False) == "ok"
|
||||
|
||||
|
||||
|
||||
@@ -18,7 +18,7 @@ from typing import Protocol, Any
|
||||
# subclasses in get_scheme() handle that internally. This Protocol tells the type
|
||||
# checker to expect our specific 3-argument setup instead of the base class signature.
|
||||
class SchemeConstructor(Protocol):
|
||||
def __call__(self, source_color_hct: Any, is_dark: bool, contrast_level: float) -> DynamicScheme: ...
|
||||
def __call__(self, source_color_hct: Any, is_dark: bool, contrast_level: float) -> "DynamicScheme": ...
|
||||
|
||||
try:
|
||||
from materialyoucolor.dynamiccolor.dynamic_scheme import DynamicScheme
|
||||
|
||||
@@ -19,6 +19,7 @@ from caelestia.utils.paths import (
|
||||
user_templates_dir,
|
||||
)
|
||||
from caelestia.utils.scheme import get_scheme
|
||||
from caelestia.utils.hypr import is_lua_config
|
||||
|
||||
|
||||
def gen_conf(colours: dict[str, str]) -> str:
|
||||
@@ -27,6 +28,12 @@ def gen_conf(colours: dict[str, str]) -> str:
|
||||
conf += f"${name} = {colour}\n"
|
||||
return conf
|
||||
|
||||
def gen_lua(colours: dict[str, str]) -> str:
|
||||
lua = "return {\n"
|
||||
for name, colour in colours.items():
|
||||
lua += f' {name} = "{colour}",\n'
|
||||
lua += "}"
|
||||
return lua
|
||||
|
||||
def gen_scss(colours: dict[str, str]) -> str:
|
||||
scss = ""
|
||||
@@ -144,7 +151,8 @@ def apply_terms(sequences: str) -> None:
|
||||
|
||||
@log_exception
|
||||
def apply_hypr(conf: str) -> None:
|
||||
write_file(config_dir / "hypr/scheme/current.conf", conf)
|
||||
ext = "lua" if is_lua_config() else "conf"
|
||||
write_file(config_dir / f"hypr/scheme/current.{ext}", conf)
|
||||
|
||||
|
||||
@log_exception
|
||||
@@ -428,7 +436,7 @@ def apply_colours(colours: dict[str, str], mode: str) -> None:
|
||||
if check("enableTerm"):
|
||||
apply_terms(gen_sequences(colours))
|
||||
if check("enableHypr"):
|
||||
apply_hypr(gen_conf(colours))
|
||||
apply_hypr(gen_lua(colours) if is_lua_config() else gen_conf(colours))
|
||||
if check("enableDiscord"):
|
||||
apply_discord(gen_scss(colours))
|
||||
if check("enableSpicetify"):
|
||||
|
||||
Reference in New Issue
Block a user