Compare commits
3 Commits
49ece6a238
...
e840072f69
| Author | SHA1 | Date |
|---|---|---|
|
|
e840072f69 | |
|
|
199f7296a9 | |
|
|
708137831b |
|
|
@ -56,5 +56,9 @@ Thumbs.db
|
|||
# Temporary files
|
||||
*.tmp
|
||||
|
||||
# Python bytecode
|
||||
__pycache__/
|
||||
*.pyc
|
||||
|
||||
# thunar settings
|
||||
*desktopenvs/hyprland/xfce4/xfconf/xfce-perchannel-xml/thunar.xml
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ general {
|
|||
lock_cmd = pidof hyprlock || hyprlock
|
||||
before_sleep_cmd = loginctl lock-session
|
||||
# fprintd restart ensures fingerprint sensor is ready after resume
|
||||
after_sleep_cmd = systemctl restart fprintd.service ; hyprctl dispatch dpms on
|
||||
after_sleep_cmd = hyprctl dispatch dpms on
|
||||
ignore_dbus_inhibit = false # respect systemd-inhibit locks (presence-detect, caffeine)
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -58,6 +58,7 @@ hl.bind(mainMod .. " + ALT + F", hl.dsp.exec_cmd("wofi-calc"))
|
|||
hl.bind(mainMod .. " + S", hl.dsp.exec_cmd("[tag +mixer] pavucontrol"))
|
||||
hl.bind(mainMod .. " + U", hl.dsp.exec_cmd("[tag +centered-L] kitty btop"))
|
||||
hl.bind(mainMod .. " + W", hl.dsp.exec_cmd("[tag +centered-L] kitty -e ~/.config/scripts/wallpaper-picker ~/Pictures"))
|
||||
hl.bind(mainMod .. " + SHIFT + M", hl.dsp.exec_cmd("[tag +centered-L] kitty -e ~/.config/scripts/monitor-manager"))
|
||||
hl.bind(mainMod .. " + CTRL + R", hl.dsp.exec_cmd("[tag +centered-L] kitty -e ~/.config/scripts/amssh"))
|
||||
hl.bind(mainMod .. " + F1", hl.dsp.exec_cmd("[tag +centered] kitty ~/.config/scripts/helpmenu.sh"))
|
||||
hl.bind(mainMod .. " + CTRL + T", hl.dsp.exec_cmd("[tag +centered-S] kitty bash ~/.config/scripts/timer-pick"))
|
||||
|
|
|
|||
|
|
@ -0,0 +1,655 @@
|
|||
#!/usr/bin/env python3
|
||||
"""
|
||||
Hyprland monitor manager — WYSIWYG curses TUI.
|
||||
|
||||
Keys (normal mode):
|
||||
Tab / Shift+Tab cycle selected monitor
|
||||
h j k l move monitor (50 px)
|
||||
H J K L move monitor (10 px fine)
|
||||
u / i rotate CCW / CW
|
||||
m toggle mirror (pick target) / un-mirror
|
||||
n / N cycle display mode forward / backward
|
||||
s save to hypr/usr/monitors.lua
|
||||
q / Esc quit (prompts if unsaved changes)
|
||||
|
||||
Mirror-pick mode:
|
||||
Tab / Shift+Tab cycle target
|
||||
Enter confirm
|
||||
Esc cancel
|
||||
"""
|
||||
|
||||
import curses
|
||||
import json
|
||||
import os
|
||||
import re
|
||||
import subprocess
|
||||
import sys
|
||||
from dataclasses import dataclass, field
|
||||
from pathlib import Path
|
||||
from typing import List, Optional
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Constants
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
MONITORS_LUA = Path.home() / "Dotfiles/desktopenvs/hyprlua/hypr/usr/monitors.lua"
|
||||
MOVE_STEP = 50
|
||||
MOVE_STEP_FINE = 10
|
||||
MIN_BOX_W = 14
|
||||
MIN_BOX_H = 4
|
||||
INFO_W = 32
|
||||
STATUS_ROWS = 2 # status + help rows at the bottom
|
||||
|
||||
TRANSFORM_LABEL = {
|
||||
0: "↕ 0°",
|
||||
1: "↻ 90°",
|
||||
2: "↕ 180°",
|
||||
3: "↺ 90°",
|
||||
4: "⇔ 0°",
|
||||
5: "⇔↻ 90°",
|
||||
6: "⇔ 180°",
|
||||
7: "⇔↺ 90°",
|
||||
}
|
||||
|
||||
_MODE_RE = re.compile(r"(\d+)x(\d+)@([\d.]+)Hz")
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Rotation helpers
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
def rotate_cw(t: int) -> int:
|
||||
return (t & 4) | ((t + 1) & 3)
|
||||
|
||||
def rotate_ccw(t: int) -> int:
|
||||
return (t & 4) | ((t - 1) & 3)
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Data model
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
@dataclass
|
||||
class MonitorState:
|
||||
name: str
|
||||
x: int
|
||||
y: int
|
||||
width: int
|
||||
height: int
|
||||
refresh_rate: float
|
||||
transform: int
|
||||
scale: float
|
||||
mirror_of: str
|
||||
available_modes: List[str]
|
||||
mode_index: int
|
||||
dirty: bool = False
|
||||
|
||||
@property
|
||||
def logical_width(self) -> int:
|
||||
if (self.transform & 3) in (1, 3):
|
||||
return self.height
|
||||
return self.width
|
||||
|
||||
@property
|
||||
def logical_height(self) -> int:
|
||||
if (self.transform & 3) in (1, 3):
|
||||
return self.width
|
||||
return self.height
|
||||
|
||||
@property
|
||||
def mode_str(self) -> str:
|
||||
return f"{self.width}x{self.height}@{int(round(self.refresh_rate))}"
|
||||
|
||||
@classmethod
|
||||
def from_json(cls, d: dict) -> "MonitorState":
|
||||
modes = d.get("availableModes", [])
|
||||
w = d.get("width", 1920)
|
||||
h = d.get("height", 1080)
|
||||
rr = d.get("refreshRate", 60.0)
|
||||
# Find current mode index
|
||||
mode_index = 0
|
||||
for i, m in enumerate(modes):
|
||||
mo = _MODE_RE.match(m)
|
||||
if mo and int(mo.group(1)) == w and int(mo.group(2)) == h:
|
||||
if abs(float(mo.group(3)) - rr) < 1.0:
|
||||
mode_index = i
|
||||
break
|
||||
return cls(
|
||||
name=d.get("name", ""),
|
||||
x=d.get("x", 0),
|
||||
y=d.get("y", 0),
|
||||
width=w,
|
||||
height=h,
|
||||
refresh_rate=rr,
|
||||
transform=d.get("transform", 0),
|
||||
scale=d.get("scale", 1.0),
|
||||
mirror_of=d.get("mirrorOf", ""),
|
||||
available_modes=modes,
|
||||
mode_index=mode_index,
|
||||
)
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# hyprctl helpers
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
def fetch_monitors() -> List[MonitorState]:
|
||||
r = subprocess.run(
|
||||
["hyprctl", "monitors", "-j"],
|
||||
capture_output=True, text=True, check=True,
|
||||
)
|
||||
return [MonitorState.from_json(d) for d in json.loads(r.stdout)]
|
||||
|
||||
|
||||
def apply_monitor(m: MonitorState) -> Optional[str]:
|
||||
if m.mirror_of:
|
||||
lua = f"hl.monitor({{output='{m.name}', mirror='{m.mirror_of}'}})"
|
||||
else:
|
||||
lua = (
|
||||
f"hl.monitor({{"
|
||||
f"output='{m.name}', "
|
||||
f"mode='{m.mode_str}', "
|
||||
f"position='{m.x}x{m.y}', "
|
||||
f"scale={m.scale}, "
|
||||
f"transform={m.transform}"
|
||||
f"}})"
|
||||
)
|
||||
r = subprocess.run(["hyprctl", "eval", lua], capture_output=True, text=True, check=False)
|
||||
if r.returncode != 0:
|
||||
return (r.stderr or r.stdout).strip()
|
||||
return None
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Save
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
def save_monitors_lua(monitors: List[MonitorState], path: Path) -> None:
|
||||
lines = ["-- generated by monitor-manager -- do not edit by hand\n"]
|
||||
for m in monitors:
|
||||
if m.mirror_of:
|
||||
lines.append(
|
||||
f'hl.monitor({{\n'
|
||||
f' output = "{m.name}",\n'
|
||||
f' mirror = "{m.mirror_of}",\n'
|
||||
f'}})\n\n'
|
||||
)
|
||||
else:
|
||||
lines.append(
|
||||
f'hl.monitor({{\n'
|
||||
f' output = "{m.name}",\n'
|
||||
f' mode = "{m.mode_str}",\n'
|
||||
f' position = "{m.x}x{m.y}",\n'
|
||||
f' scale = {m.scale},\n'
|
||||
f' transform = {m.transform},\n'
|
||||
f'}})\n\n'
|
||||
)
|
||||
lines.append(
|
||||
'hl.config({\n'
|
||||
' xwayland = {\n'
|
||||
' force_zero_scaling = true,\n'
|
||||
' },\n'
|
||||
'})\n'
|
||||
)
|
||||
tmp = path.with_suffix(".lua.tmp")
|
||||
tmp.write_text("".join(lines))
|
||||
os.replace(tmp, path)
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Canvas math
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
def compute_scale(monitors: List[MonitorState], pane_cols: int, pane_rows: int) -> float:
|
||||
if not monitors:
|
||||
return 1.0
|
||||
max_x = max(m.x + m.logical_width for m in monitors)
|
||||
max_y = max(m.y + m.logical_height for m in monitors)
|
||||
if max_x <= 0 or max_y <= 0:
|
||||
return 1.0
|
||||
sx = pane_cols / (max_x * 1.15)
|
||||
sy = pane_rows / (max_y * 1.15)
|
||||
return min(sx, sy)
|
||||
|
||||
|
||||
def to_screen(cx: int, cy: int, scale: float, margin_col: int = 1, margin_row: int = 1):
|
||||
col = margin_col + int(cx * scale)
|
||||
row = margin_row + int(cy * scale * 0.5)
|
||||
return row, col
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Safe addstr / addch wrappers
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
def safe_addstr(win, row, col, text, attr=0):
|
||||
try:
|
||||
max_row, max_col = win.getmaxyx()
|
||||
if row < 0 or row >= max_row or col < 0 or col >= max_col:
|
||||
return
|
||||
avail = max_col - col - 1
|
||||
if avail <= 0:
|
||||
return
|
||||
win.addstr(row, col, text[:avail], attr)
|
||||
except curses.error:
|
||||
pass
|
||||
|
||||
|
||||
def safe_addch(win, row, col, ch, attr=0):
|
||||
try:
|
||||
max_row, max_col = win.getmaxyx()
|
||||
if row < 0 or row >= max_row or col < 0 or col >= max_col:
|
||||
return
|
||||
win.addch(row, col, ch, attr)
|
||||
except curses.error:
|
||||
pass
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Box drawing
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
def draw_box(win, row, col, h, w, attr=0):
|
||||
if h < 2 or w < 2:
|
||||
return
|
||||
safe_addch(win, row, col, "┌", attr)
|
||||
safe_addch(win, row, col + w-1, "┐", attr)
|
||||
safe_addch(win, row + h-1, col, "└", attr)
|
||||
safe_addch(win, row + h-1, col + w-1, "┘", attr)
|
||||
for c in range(col + 1, col + w - 1):
|
||||
safe_addch(win, row, c, "─", attr)
|
||||
safe_addch(win, row + h-1, c, "─", attr)
|
||||
for r in range(row + 1, row + h - 1):
|
||||
safe_addch(win, r, col, "│", attr)
|
||||
safe_addch(win, r, col + w-1, "│", attr)
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# App
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
class App:
|
||||
def __init__(self, stdscr):
|
||||
self.stdscr = stdscr
|
||||
self.monitors: List[MonitorState] = []
|
||||
self.selected_idx: int = 0
|
||||
self.mode: str = "normal" # "normal" | "mirror_pick"
|
||||
self.mirror_source_idx: int = 0
|
||||
self.mirror_target_idx: int = 1
|
||||
self.dirty: bool = False
|
||||
self.status_msg: str = ""
|
||||
self._scale: float = 0.0 # cached canvas scale
|
||||
self._scale_pane: tuple = (0, 0) # pane size used for cached scale
|
||||
self._load_monitors()
|
||||
self._init_colors()
|
||||
|
||||
def _load_monitors(self):
|
||||
self.monitors = fetch_monitors()
|
||||
if self.selected_idx >= len(self.monitors):
|
||||
self.selected_idx = 0
|
||||
|
||||
def _init_colors(self):
|
||||
curses.start_color()
|
||||
curses.use_default_colors()
|
||||
# 1 = selected (cyan bold)
|
||||
curses.init_pair(1, curses.COLOR_CYAN, -1)
|
||||
# 2 = normal (white)
|
||||
curses.init_pair(2, curses.COLOR_WHITE, -1)
|
||||
# 3 = mirror target (yellow)
|
||||
curses.init_pair(3, curses.COLOR_YELLOW, -1)
|
||||
# 4 = mirrored / dim
|
||||
curses.init_pair(4, curses.COLOR_BLACK + 8 if curses.COLORS >= 16 else curses.COLOR_WHITE, -1)
|
||||
# 5 = status bar (reversed)
|
||||
curses.init_pair(5, -1, -1)
|
||||
# 6 = help (green)
|
||||
curses.init_pair(6, curses.COLOR_GREEN, -1)
|
||||
|
||||
def _get_scale(self, pane_cols: int, pane_rows: int) -> float:
|
||||
"""Return cached scale; recompute only on resize or when a monitor escapes the viewport."""
|
||||
pane = (pane_cols, pane_rows)
|
||||
if self._scale > 0 and self._scale_pane == pane:
|
||||
# Check every monitor still fits inside the current viewport
|
||||
inner_cols = pane_cols - 2
|
||||
inner_rows = pane_rows - 2
|
||||
all_fit = True
|
||||
for m in self.monitors:
|
||||
brow, bcol = to_screen(m.x + m.logical_width, m.y + m.logical_height, self._scale)
|
||||
if bcol > inner_cols or brow > inner_rows:
|
||||
all_fit = False
|
||||
break
|
||||
if all_fit:
|
||||
return self._scale
|
||||
self._scale = compute_scale(self.monitors, pane_cols - 2, pane_rows - 2)
|
||||
self._scale_pane = pane
|
||||
return self._scale
|
||||
|
||||
# -----------------------------------------------------------------------
|
||||
# Event loop
|
||||
# -----------------------------------------------------------------------
|
||||
|
||||
def run(self):
|
||||
curses.curs_set(0)
|
||||
self.stdscr.timeout(100)
|
||||
self.draw()
|
||||
while True:
|
||||
ch = self.stdscr.getch()
|
||||
if ch == curses.KEY_RESIZE:
|
||||
self._scale_pane = (0, 0) # force scale recompute on resize
|
||||
self.draw()
|
||||
continue
|
||||
if ch == -1:
|
||||
continue
|
||||
if self.mode == "normal":
|
||||
result = self.handle_key_normal(ch)
|
||||
if result == "quit":
|
||||
break
|
||||
elif self.mode == "mirror_pick":
|
||||
self.handle_key_mirror(ch)
|
||||
self.draw()
|
||||
|
||||
# -----------------------------------------------------------------------
|
||||
# Key handlers
|
||||
# -----------------------------------------------------------------------
|
||||
|
||||
def handle_key_normal(self, ch) -> Optional[str]:
|
||||
mon = self.monitors[self.selected_idx] if self.monitors else None
|
||||
|
||||
# Tab / Shift+Tab — cycle monitor
|
||||
if ch == ord("\t"):
|
||||
self.selected_idx = (self.selected_idx + 1) % max(1, len(self.monitors))
|
||||
return
|
||||
if ch == curses.KEY_BTAB:
|
||||
self.selected_idx = (self.selected_idx - 1) % max(1, len(self.monitors))
|
||||
return
|
||||
|
||||
if mon is None:
|
||||
return
|
||||
|
||||
# Movement — coarse
|
||||
if ch == ord("h"):
|
||||
self.move_monitor(-MOVE_STEP, 0)
|
||||
elif ch == ord("l"):
|
||||
self.move_monitor(MOVE_STEP, 0)
|
||||
elif ch == ord("k"):
|
||||
self.move_monitor(0, -MOVE_STEP)
|
||||
elif ch == ord("j"):
|
||||
self.move_monitor(0, MOVE_STEP)
|
||||
# Movement — fine
|
||||
elif ch == ord("H"):
|
||||
self.move_monitor(-MOVE_STEP_FINE, 0)
|
||||
elif ch == ord("L"):
|
||||
self.move_monitor(MOVE_STEP_FINE, 0)
|
||||
elif ch == ord("K"):
|
||||
self.move_monitor(0, -MOVE_STEP_FINE)
|
||||
elif ch == ord("J"):
|
||||
self.move_monitor(0, MOVE_STEP_FINE)
|
||||
# Rotation
|
||||
elif ch == ord("u"):
|
||||
self.rotate_monitor(-1)
|
||||
elif ch == ord("i"):
|
||||
self.rotate_monitor(+1)
|
||||
# Mirror
|
||||
elif ch == ord("m"):
|
||||
if mon.mirror_of:
|
||||
mon.mirror_of = ""
|
||||
err = apply_monitor(mon)
|
||||
mon.dirty = True
|
||||
self.dirty = True
|
||||
self.status_msg = err or f"Un-mirrored {mon.name}"
|
||||
elif len(self.monitors) < 2:
|
||||
self.status_msg = "Need 2+ monitors to mirror"
|
||||
else:
|
||||
self.mirror_source_idx = self.selected_idx
|
||||
self.mirror_target_idx = (self.selected_idx + 1) % len(self.monitors)
|
||||
self.mode = "mirror_pick"
|
||||
# Mode cycling
|
||||
elif ch == ord("n"):
|
||||
self.cycle_mode(+1)
|
||||
elif ch == ord("N"):
|
||||
self.cycle_mode(-1)
|
||||
# Save
|
||||
elif ch == ord("s"):
|
||||
self._save()
|
||||
# Quit
|
||||
elif ch in (ord("q"), 27): # q or Esc
|
||||
if self.dirty:
|
||||
action = self.prompt_save_quit()
|
||||
if action == "cancel":
|
||||
return None
|
||||
if action == "save":
|
||||
self._save()
|
||||
return "quit"
|
||||
|
||||
def handle_key_mirror(self, ch):
|
||||
n = len(self.monitors)
|
||||
|
||||
def next_target(delta: int):
|
||||
t = (self.mirror_target_idx + delta) % n
|
||||
# skip source
|
||||
if t == self.mirror_source_idx:
|
||||
t = (t + delta) % n
|
||||
self.mirror_target_idx = t
|
||||
|
||||
if ch == ord("\t"):
|
||||
next_target(+1)
|
||||
elif ch == curses.KEY_BTAB:
|
||||
next_target(-1)
|
||||
elif ch in (curses.KEY_ENTER, ord("\n"), ord("\r")):
|
||||
self.set_mirror(self.mirror_source_idx, self.mirror_target_idx)
|
||||
self.mode = "normal"
|
||||
elif ch == 27: # Esc
|
||||
self.mode = "normal"
|
||||
self.status_msg = "Mirror cancelled"
|
||||
|
||||
# -----------------------------------------------------------------------
|
||||
# Actions
|
||||
# -----------------------------------------------------------------------
|
||||
|
||||
def move_monitor(self, dx: int, dy: int):
|
||||
mon = self.monitors[self.selected_idx]
|
||||
mon.x = max(0, mon.x + dx)
|
||||
mon.y = max(0, mon.y + dy)
|
||||
err = apply_monitor(mon)
|
||||
mon.dirty = True
|
||||
self.dirty = True
|
||||
self.status_msg = err or f"Moved {mon.name} to {mon.x},{mon.y}"
|
||||
|
||||
def rotate_monitor(self, direction: int):
|
||||
mon = self.monitors[self.selected_idx]
|
||||
if direction > 0:
|
||||
mon.transform = rotate_cw(mon.transform)
|
||||
else:
|
||||
mon.transform = rotate_ccw(mon.transform)
|
||||
err = apply_monitor(mon)
|
||||
mon.dirty = True
|
||||
self.dirty = True
|
||||
self.status_msg = err or f"Rotated {mon.name} → {TRANSFORM_LABEL[mon.transform]}"
|
||||
|
||||
def cycle_mode(self, delta: int):
|
||||
mon = self.monitors[self.selected_idx]
|
||||
if not mon.available_modes:
|
||||
self.status_msg = "No mode list available"
|
||||
return
|
||||
mon.mode_index = (mon.mode_index + delta) % len(mon.available_modes)
|
||||
mo = _MODE_RE.match(mon.available_modes[mon.mode_index])
|
||||
if mo:
|
||||
mon.width = int(mo.group(1))
|
||||
mon.height = int(mo.group(2))
|
||||
mon.refresh_rate = float(mo.group(3))
|
||||
err = apply_monitor(mon)
|
||||
mon.dirty = True
|
||||
self.dirty = True
|
||||
self.status_msg = err or f"{mon.name} → {mon.mode_str}"
|
||||
|
||||
def set_mirror(self, src_idx: int, tgt_idx: int):
|
||||
src = self.monitors[src_idx]
|
||||
tgt = self.monitors[tgt_idx]
|
||||
src.mirror_of = tgt.name
|
||||
err = apply_monitor(src)
|
||||
src.dirty = True
|
||||
self.dirty = True
|
||||
self.status_msg = err or f"Mirroring {src.name} → {tgt.name}"
|
||||
|
||||
def _save(self):
|
||||
try:
|
||||
save_monitors_lua(self.monitors, MONITORS_LUA)
|
||||
for m in self.monitors:
|
||||
m.dirty = False
|
||||
self.dirty = False
|
||||
self.status_msg = f"Saved to {MONITORS_LUA.name}"
|
||||
except Exception as e:
|
||||
self.status_msg = f"Save failed: {e}"
|
||||
|
||||
# -----------------------------------------------------------------------
|
||||
# Prompt
|
||||
# -----------------------------------------------------------------------
|
||||
|
||||
def prompt_save_quit(self) -> str:
|
||||
rows, cols = self.stdscr.getmaxyx()
|
||||
prompt = "Unsaved changes. [s]ave & quit [n]o save [c]ancel"
|
||||
safe_addstr(self.stdscr, rows - 1, 0, " " * (cols - 1), curses.A_REVERSE)
|
||||
safe_addstr(self.stdscr, rows - 1, 0, prompt[:cols - 1], curses.A_REVERSE)
|
||||
self.stdscr.timeout(-1)
|
||||
while True:
|
||||
ch = self.stdscr.getch()
|
||||
if ch in (ord("s"), ord("S")):
|
||||
self.stdscr.timeout(100)
|
||||
return "save"
|
||||
if ch in (ord("n"), ord("N")):
|
||||
self.stdscr.timeout(100)
|
||||
return "nosave"
|
||||
if ch in (ord("c"), ord("C"), 27):
|
||||
self.stdscr.timeout(100)
|
||||
return "cancel"
|
||||
|
||||
# -----------------------------------------------------------------------
|
||||
# Drawing
|
||||
# -----------------------------------------------------------------------
|
||||
|
||||
def draw(self):
|
||||
self.stdscr.erase()
|
||||
rows, cols = self.stdscr.getmaxyx()
|
||||
|
||||
use_info = cols >= 80
|
||||
canvas_w = (cols - INFO_W - 1) if use_info else cols
|
||||
canvas_h = max(4, rows - STATUS_ROWS)
|
||||
|
||||
self.draw_canvas(canvas_w, canvas_h)
|
||||
if use_info:
|
||||
self.draw_info(canvas_w, canvas_h)
|
||||
# vertical separator
|
||||
for r in range(canvas_h):
|
||||
safe_addch(self.stdscr, r, canvas_w, "│", curses.color_pair(2))
|
||||
|
||||
self.draw_status(rows - 2, cols)
|
||||
self.draw_help(rows - 1, cols)
|
||||
self.stdscr.noutrefresh()
|
||||
curses.doupdate()
|
||||
|
||||
def draw_canvas(self, pane_cols: int, pane_rows: int):
|
||||
scale = self._get_scale(pane_cols, pane_rows)
|
||||
|
||||
for idx, mon in enumerate(self.monitors):
|
||||
brow, bcol = to_screen(mon.x, mon.y, scale)
|
||||
bw = max(MIN_BOX_W, int(mon.logical_width * scale))
|
||||
bh = max(MIN_BOX_H, int(mon.logical_height * scale * 0.5))
|
||||
|
||||
# Clamp to pane
|
||||
if brow >= pane_rows or bcol >= pane_cols:
|
||||
continue
|
||||
|
||||
# Choose color
|
||||
if self.mode == "mirror_pick" and idx == self.mirror_target_idx:
|
||||
attr = curses.color_pair(3) | curses.A_BOLD
|
||||
elif idx == self.selected_idx:
|
||||
attr = curses.color_pair(1) | curses.A_BOLD
|
||||
elif mon.mirror_of:
|
||||
attr = curses.color_pair(4)
|
||||
else:
|
||||
attr = curses.color_pair(2)
|
||||
|
||||
draw_box(self.stdscr, brow, bcol, bh, bw, attr)
|
||||
|
||||
# Labels inside box
|
||||
inner_w = bw - 2
|
||||
if inner_w < 1:
|
||||
continue
|
||||
|
||||
def label_line(row_offset: int, text: str):
|
||||
r = brow + row_offset
|
||||
c = bcol + 1
|
||||
if r >= pane_rows or r <= brow or r >= brow + bh - 1:
|
||||
return
|
||||
safe_addstr(self.stdscr, r, c, text[:inner_w], attr)
|
||||
|
||||
# Line 1: name (+ dirty marker)
|
||||
name_label = mon.name + (" *" if mon.dirty else "")
|
||||
if mon.mirror_of:
|
||||
name_label = f"{mon.name} →{mon.mirror_of}"
|
||||
label_line(1, name_label)
|
||||
|
||||
# Line 2: mode
|
||||
if bh > 3:
|
||||
label_line(2, mon.mode_str)
|
||||
|
||||
# Line 3: rotation
|
||||
if bh > 4:
|
||||
label_line(3, TRANSFORM_LABEL.get(mon.transform, ""))
|
||||
|
||||
def draw_info(self, start_col: int, pane_rows: int):
|
||||
col = start_col + 1
|
||||
row = 0
|
||||
safe_addstr(self.stdscr, row, col, "Monitors:", curses.color_pair(6) | curses.A_BOLD)
|
||||
row += 1
|
||||
for idx, mon in enumerate(self.monitors):
|
||||
if row >= pane_rows:
|
||||
break
|
||||
prefix = "> " if idx == self.selected_idx else " "
|
||||
attr = curses.color_pair(1) | curses.A_BOLD if idx == self.selected_idx else curses.color_pair(2)
|
||||
safe_addstr(self.stdscr, row, col, f"{prefix}{mon.name}", attr)
|
||||
row += 1
|
||||
if row < pane_rows:
|
||||
safe_addstr(self.stdscr, row, col + 2, mon.mode_str, curses.color_pair(2))
|
||||
row += 1
|
||||
if row < pane_rows:
|
||||
safe_addstr(self.stdscr, row, col + 2, f"pos {mon.x},{mon.y}", curses.color_pair(2))
|
||||
row += 1
|
||||
if row < pane_rows:
|
||||
safe_addstr(self.stdscr, row, col + 2, f"scale {mon.scale}", curses.color_pair(2))
|
||||
row += 1
|
||||
if row < pane_rows:
|
||||
rot_str = TRANSFORM_LABEL.get(mon.transform, "")
|
||||
mirror_str = f" →{mon.mirror_of}" if mon.mirror_of else ""
|
||||
safe_addstr(self.stdscr, row, col + 2, rot_str + mirror_str, curses.color_pair(2))
|
||||
row += 1
|
||||
row += 1 # blank between monitors
|
||||
|
||||
def draw_status(self, row: int, cols: int):
|
||||
if self.mode == "mirror_pick":
|
||||
src = self.monitors[self.mirror_source_idx].name if self.monitors else "?"
|
||||
tgt = self.monitors[self.mirror_target_idx].name if self.monitors else "?"
|
||||
mode_tag = f"[MIRROR] {src} → {tgt}"
|
||||
else:
|
||||
mode_tag = "[NORMAL]"
|
||||
if self.dirty:
|
||||
mode_tag += " *"
|
||||
|
||||
msg = f"{mode_tag} {self.status_msg}"
|
||||
safe_addstr(self.stdscr, row, 0, " " * (cols - 1), curses.A_REVERSE)
|
||||
safe_addstr(self.stdscr, row, 0, msg[:cols - 1], curses.A_REVERSE)
|
||||
|
||||
def draw_help(self, row: int, cols: int):
|
||||
if self.mode == "mirror_pick":
|
||||
text = "Tab:cycle-target Enter:confirm Esc:cancel"
|
||||
else:
|
||||
text = "Tab:next hjkl:move HJK L:fine u/i:rot m:mirror n/N:mode s:save q:quit"
|
||||
safe_addstr(self.stdscr, row, 0, text[:cols - 1], curses.color_pair(6))
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Entry point
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
def main():
|
||||
try:
|
||||
curses.wrapper(lambda stdscr: App(stdscr).run())
|
||||
except subprocess.CalledProcessError as e:
|
||||
print(f"Error: hyprctl failed — is Hyprland running?\n{e}", file=sys.stderr)
|
||||
sys.exit(1)
|
||||
except KeyboardInterrupt:
|
||||
pass
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
|
|
@ -0,0 +1,257 @@
|
|||
#!/usr/bin/env bash
|
||||
# wds-deploy.sh — Package M-Archy archiso netboot artifacts for WDS + PXELinux deployment
|
||||
#
|
||||
# Usage:
|
||||
# bash wds-deploy.sh --http-srv URL [OPTIONS] [OUT_DIR]
|
||||
#
|
||||
# --http-srv URL HTTP base URL where arch netboot files will be served
|
||||
# (e.g. http://192.168.1.10/m-archy)
|
||||
# Arch's initrd fetches airootfs.sfs over HTTP at boot time.
|
||||
# Required.
|
||||
# --tftp-prefix PATH Subdirectory within the WDS TFTP root for kernel/initramfs
|
||||
# (default: m-archy)
|
||||
# --preconf [FILE] Passed through to build.sh — embeds an answerfile into the ISO
|
||||
# --no-rebuild Skip the archiso build if a netboot tarball already exists
|
||||
# OUT_DIR Output directory (default: ~/m-archy-out)
|
||||
#
|
||||
# Output layout (inside OUT_DIR/wds-deploy/):
|
||||
# TFTP/ Copy contents to WDS TFTP root: C:\RemoteInstall\Boot\x64\
|
||||
# HTTP/ Serve as HTTP root at the URL given to --http-srv
|
||||
# wds-tftp.zip Zip of TFTP/ — drop onto the Windows Server directly
|
||||
#
|
||||
# WDS deployment steps:
|
||||
# 1. Serve HTTP/ over IIS/Nginx at the --http-srv URL
|
||||
# 2. Extract wds-tftp.zip into C:\RemoteInstall\Boot\x64\
|
||||
# 3. In WDS console → server Properties → Boot tab:
|
||||
# Set "Default boot program" for x64 to: Boot\x64\pxelinux.0
|
||||
# 4. PXE-boot a client — the M-Archy menu appears
|
||||
|
||||
set -euo pipefail
|
||||
|
||||
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
||||
SYSLINUX_BIOS="/usr/lib/syslinux/bios"
|
||||
|
||||
# ── Argument parsing ───────────────────────────────────────────────────────────
|
||||
HTTP_SRV=""
|
||||
TFTP_PREFIX="m-archy"
|
||||
PRECONF_ARGS=()
|
||||
NO_REBUILD=0
|
||||
OUT_ARG=""
|
||||
|
||||
while [[ $# -gt 0 ]]; do
|
||||
case "$1" in
|
||||
--http-srv)
|
||||
[[ $# -gt 1 ]] || { echo "ERROR: --http-srv requires a URL" >&2; exit 1; }
|
||||
HTTP_SRV="$2"; shift 2 ;;
|
||||
--http-srv=*)
|
||||
HTTP_SRV="${1#--http-srv=}"; shift ;;
|
||||
--tftp-prefix)
|
||||
[[ $# -gt 1 ]] || { echo "ERROR: --tftp-prefix requires a value" >&2; exit 1; }
|
||||
TFTP_PREFIX="$2"; shift 2 ;;
|
||||
--tftp-prefix=*)
|
||||
TFTP_PREFIX="${1#--tftp-prefix=}"; shift ;;
|
||||
--preconf)
|
||||
if [[ $# -gt 1 && "${2:0:1}" != "-" ]]; then
|
||||
PRECONF_ARGS=(--preconf "$2"); shift 2
|
||||
else
|
||||
PRECONF_ARGS=(--preconf); shift
|
||||
fi ;;
|
||||
--preconf=*)
|
||||
PRECONF_ARGS=("$1"); shift ;;
|
||||
--no-rebuild)
|
||||
NO_REBUILD=1; shift ;;
|
||||
-*)
|
||||
echo "Unknown flag: $1" >&2; exit 1 ;;
|
||||
*)
|
||||
OUT_ARG="$1"; shift ;;
|
||||
esac
|
||||
done
|
||||
|
||||
OUT_DIR="${OUT_ARG:-${OUT_DIR:-$HOME/m-archy-out}}"
|
||||
WDS_DIR="$OUT_DIR/wds-deploy"
|
||||
|
||||
# ── Validate ──────────────────────────────────────────────────────────────────
|
||||
if [[ -z "$HTTP_SRV" ]]; then
|
||||
echo "ERROR: --http-srv <URL> is required." >&2
|
||||
echo " The Arch initrd fetches airootfs.sfs over HTTP at boot." >&2
|
||||
echo " Example: --http-srv http://192.168.1.10/m-archy" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
HTTP_SRV="${HTTP_SRV%/}" # strip trailing slash
|
||||
|
||||
# ── Ensure syslinux is available ──────────────────────────────────────────────
|
||||
if [[ ! -f "$SYSLINUX_BIOS/pxelinux.0" ]]; then
|
||||
echo "syslinux not found — installing..."
|
||||
sudo pacman -S --noconfirm syslinux
|
||||
fi
|
||||
|
||||
if [[ ! -f "$SYSLINUX_BIOS/pxelinux.0" ]]; then
|
||||
echo "ERROR: $SYSLINUX_BIOS/pxelinux.0 still not found after install." >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# ── Build ISO + netboot tarball (unless --no-rebuild) ─────────────────────────
|
||||
NETBOOT_TARBALL="$(ls "$OUT_DIR/"*-netboot-*.tar.gz 2>/dev/null | head -n1 || true)"
|
||||
|
||||
if [[ "$NO_REBUILD" -eq 1 && -n "$NETBOOT_TARBALL" ]]; then
|
||||
echo "Skipping build — using existing tarball: $(basename "$NETBOOT_TARBALL")"
|
||||
else
|
||||
echo "Building archiso (this may take a while)..."
|
||||
bash "$SCRIPT_DIR/build.sh" "${PRECONF_ARGS[@]+"${PRECONF_ARGS[@]}"}" "$OUT_DIR"
|
||||
NETBOOT_TARBALL="$(ls "$OUT_DIR/"*-netboot-*.tar.gz 2>/dev/null | head -n1 || true)"
|
||||
fi
|
||||
|
||||
[[ -n "$NETBOOT_TARBALL" ]] \
|
||||
|| { echo "ERROR: No netboot tarball found in $OUT_DIR — build may have failed." >&2; exit 1; }
|
||||
|
||||
echo "Using netboot tarball: $(basename "$NETBOOT_TARBALL")"
|
||||
|
||||
# ── Extract netboot tarball ───────────────────────────────────────────────────
|
||||
EXTRACT_DIR="$OUT_DIR/.netboot-extracted"
|
||||
rm -rf "$EXTRACT_DIR"
|
||||
mkdir -p "$EXTRACT_DIR"
|
||||
echo "Extracting netboot tarball..."
|
||||
tar -xzf "$NETBOOT_TARBALL" -C "$EXTRACT_DIR"
|
||||
|
||||
VMLINUZ="$(find "$EXTRACT_DIR" -name 'vmlinuz-linux' | head -n1 || true)"
|
||||
INITRAMFS="$(find "$EXTRACT_DIR" -name 'initramfs-linux.img' | head -n1 || true)"
|
||||
ARCH_DIR="$(find "$EXTRACT_DIR" -maxdepth 2 -type d -name 'arch' | head -n1 || true)"
|
||||
|
||||
[[ -f "$VMLINUZ" ]] || { echo "ERROR: vmlinuz-linux not found in netboot tarball." >&2; exit 1; }
|
||||
[[ -f "$INITRAMFS" ]] || { echo "ERROR: initramfs-linux.img not found in netboot tarball." >&2; exit 1; }
|
||||
[[ -d "$ARCH_DIR" ]] || { echo "ERROR: arch/ directory not found in netboot tarball." >&2; exit 1; }
|
||||
|
||||
# ── Build WDS deployment tree ─────────────────────────────────────────────────
|
||||
#
|
||||
# TFTP root layout (mirrors what WDS serves via TFTP):
|
||||
# pxelinux.0 PXELinux bootloader
|
||||
# ldlinux.c32 required by pxelinux.0
|
||||
# menu.c32 + libcom32.c32 + libutil.c32 text boot menu
|
||||
# pxelinux.cfg/default boot menu config
|
||||
# <tftp-prefix>/arch/boot/x86_64/vmlinuz-linux
|
||||
# <tftp-prefix>/arch/boot/x86_64/initramfs-linux.img
|
||||
#
|
||||
# HTTP root layout (served at $HTTP_SRV/ over IIS/Nginx/Apache):
|
||||
# arch/x86_64/airootfs.sfs fetched by initrd at boot
|
||||
# arch/x86_64/airootfs.sfs.sha512
|
||||
# arch/pkglist.x86_64.txt (and any other netboot files)
|
||||
|
||||
TFTP_ROOT="$WDS_DIR/TFTP"
|
||||
HTTP_ROOT="$WDS_DIR/HTTP"
|
||||
|
||||
rm -rf "$WDS_DIR"
|
||||
mkdir -p \
|
||||
"$TFTP_ROOT/$TFTP_PREFIX/arch/boot/x86_64" \
|
||||
"$TFTP_ROOT/pxelinux.cfg" \
|
||||
"$HTTP_ROOT"
|
||||
|
||||
# ── Copy syslinux modules ─────────────────────────────────────────────────────
|
||||
echo "Copying syslinux PXELinux modules..."
|
||||
REQUIRED_MODS=(pxelinux.0 ldlinux.c32 menu.c32 libcom32.c32 libutil.c32)
|
||||
MISSING_MODS=()
|
||||
|
||||
for mod in "${REQUIRED_MODS[@]}"; do
|
||||
if [[ -f "$SYSLINUX_BIOS/$mod" ]]; then
|
||||
cp "$SYSLINUX_BIOS/$mod" "$TFTP_ROOT/"
|
||||
else
|
||||
MISSING_MODS+=("$mod")
|
||||
fi
|
||||
done
|
||||
|
||||
if [[ ${#MISSING_MODS[@]} -gt 0 ]]; then
|
||||
echo "Warning: missing syslinux modules (non-fatal for some setups): ${MISSING_MODS[*]}"
|
||||
fi
|
||||
|
||||
# ── Copy kernel and initramfs ─────────────────────────────────────────────────
|
||||
echo "Copying kernel and initramfs..."
|
||||
cp "$VMLINUZ" "$TFTP_ROOT/$TFTP_PREFIX/arch/boot/x86_64/vmlinuz-linux"
|
||||
cp "$INITRAMFS" "$TFTP_ROOT/$TFTP_PREFIX/arch/boot/x86_64/initramfs-linux.img"
|
||||
|
||||
# ── Copy HTTP content (airootfs squashfs and supporting files) ────────────────
|
||||
echo "Copying HTTP content (airootfs + supporting files)..."
|
||||
cp -r "$ARCH_DIR" "$HTTP_ROOT/arch"
|
||||
|
||||
# ── Generate pxelinux.cfg/default ────────────────────────────────────────────
|
||||
echo "Writing pxelinux.cfg/default..."
|
||||
|
||||
# Kernel path is relative to the TFTP root
|
||||
KERNEL_PATH="${TFTP_PREFIX}/arch/boot/x86_64/vmlinuz-linux"
|
||||
INITRD_PATH="${TFTP_PREFIX}/arch/boot/x86_64/initramfs-linux.img"
|
||||
|
||||
# archiso_http_srv must end with a slash; archisobasedir is the subdir within it
|
||||
# that contains the x86_64/ squashfs tree
|
||||
APPEND_BASE="initrd=${INITRD_PATH} archiso_http_srv=${HTTP_SRV}/ archisobasedir=arch ip=dhcp"
|
||||
|
||||
cat > "$TFTP_ROOT/pxelinux.cfg/default" <<PXECFG
|
||||
DEFAULT menu.c32
|
||||
PROMPT 0
|
||||
TIMEOUT 150
|
||||
ONTIMEOUT m-archy
|
||||
|
||||
MENU TITLE M-Archy Arch Linux Installer
|
||||
|
||||
LABEL m-archy
|
||||
MENU LABEL M-Archy Arch Linux Installer
|
||||
KERNEL ${KERNEL_PATH}
|
||||
APPEND ${APPEND_BASE}
|
||||
|
||||
LABEL m-archy-console
|
||||
MENU LABEL M-Archy Arch Linux Installer (console only, no auto-launch)
|
||||
KERNEL ${KERNEL_PATH}
|
||||
APPEND ${APPEND_BASE} systemd.unit=multi-user.target
|
||||
|
||||
LABEL m-archy-ssh
|
||||
MENU LABEL M-Archy Arch Linux Installer (SSH access enabled)
|
||||
KERNEL ${KERNEL_PATH}
|
||||
APPEND ${APPEND_BASE} systemd.unit=multi-user.target sshd=1
|
||||
|
||||
LABEL local
|
||||
MENU LABEL Boot from local disk
|
||||
LOCALBOOT 0
|
||||
PXECFG
|
||||
|
||||
# ── Zip TFTP directory for easy transfer to Windows Server ────────────────────
|
||||
ZIP_FILE="$WDS_DIR/wds-tftp.zip"
|
||||
echo "Creating wds-tftp.zip..."
|
||||
if command -v zip &>/dev/null; then
|
||||
(cd "$TFTP_ROOT" && zip -r "$ZIP_FILE" .)
|
||||
echo "Created: $ZIP_FILE"
|
||||
else
|
||||
echo "Note: 'zip' not installed — skipping wds-tftp.zip creation."
|
||||
echo " Install with: sudo pacman -S zip"
|
||||
fi
|
||||
|
||||
# ── Summary ───────────────────────────────────────────────────────────────────
|
||||
echo
|
||||
echo "========================================================================="
|
||||
echo " WDS deployment package: $WDS_DIR"
|
||||
echo "========================================================================="
|
||||
echo
|
||||
echo " TFTP/ → WDS TFTP root (copy to Windows Server)"
|
||||
echo " Destination: C:\\RemoteInstall\\Boot\\x64\\"
|
||||
echo " Tip: use wds-tftp.zip if created above, or robocopy/SCP the TFTP/ tree."
|
||||
echo
|
||||
echo " HTTP/ → HTTP root (serve at: ${HTTP_SRV}/)"
|
||||
echo " The initrd fetches: ${HTTP_SRV}/arch/x86_64/airootfs.sfs"
|
||||
echo " Serve with IIS, Nginx, or Apache pointing to the HTTP/ directory."
|
||||
echo
|
||||
echo " pxelinux.cfg/default kernel args summary:"
|
||||
echo " archiso_http_srv = ${HTTP_SRV}/"
|
||||
echo " archisobasedir = arch"
|
||||
echo
|
||||
echo " WDS configuration steps:"
|
||||
echo " 1. Copy TFTP/ contents to C:\\RemoteInstall\\Boot\\x64\\"
|
||||
echo " 2. Serve HTTP/ over IIS/Nginx at: ${HTTP_SRV}/"
|
||||
echo " 3. Open WDS console → right-click server → Properties → Boot tab:"
|
||||
echo " x64 default boot program: Boot\\x64\\pxelinux.0"
|
||||
echo " Check 'Always continue the PXE boot' for unknown clients"
|
||||
echo " 4. If WDS manages DHCP, ensure option 67 is: Boot\\x64\\pxelinux.0"
|
||||
echo " If using a separate DHCP server, set:"
|
||||
echo " option 66 (next-server) = <WDS server IP>"
|
||||
echo " option 67 (boot-file) = Boot\\x64\\pxelinux.0"
|
||||
echo " 5. PXE-boot a client — the M-Archy menu should appear."
|
||||
echo
|
||||
echo " File sizes:"
|
||||
du -sh "$TFTP_ROOT" "$HTTP_ROOT" 2>/dev/null | sed 's/^/ /'
|
||||
echo "========================================================================="
|
||||
51
sysupdate.sh
51
sysupdate.sh
|
|
@ -1,6 +1,6 @@
|
|||
#!/usr/bin/env bash
|
||||
# sysupdate — Arch Linux System Update TUI
|
||||
# Usage: sysupdate [--AI]
|
||||
# Usage: sysupdate [--AI] [--packages|-p] [--configs|-c] [--both|-b]
|
||||
# Deps: yay, pacman-contrib (checkupdates), curl, python3, dialog
|
||||
# flatpak (optional) | claude CLI (required for --AI)
|
||||
# State: /updatestate — ISO timestamp of last completed update
|
||||
|
|
@ -17,7 +17,15 @@ readonly NEWS_FEED="https://archlinux.org/feeds/news/"
|
|||
DOTFILES="${DOTFILES:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
||||
|
||||
AI_MODE=false
|
||||
for _arg in "$@"; do [[ "$_arg" == "--AI" ]] && AI_MODE=true; done
|
||||
UPDATE_MODE="both" # packages | configs | both
|
||||
for _arg in "$@"; do
|
||||
case "$_arg" in
|
||||
--AI) AI_MODE=true ;;
|
||||
--packages|-p) UPDATE_MODE="packages" ;;
|
||||
--configs|-c) UPDATE_MODE="configs" ;;
|
||||
--both|-b) UPDATE_MODE="both" ;;
|
||||
esac
|
||||
done
|
||||
|
||||
# ═══════════════════════════════════════════════════════════════════════════════
|
||||
# TERMINAL / COLOR SETUP
|
||||
|
|
@ -568,11 +576,23 @@ _migrate_hypr_usr() {
|
|||
fi
|
||||
}
|
||||
|
||||
# Patch known stale paths inside hypr/usr/ that aren't auto-synced.
|
||||
_fix_hypr_usr() {
|
||||
local usr_dir="${XDG_CONFIG_HOME:-$HOME/.config}/hypr/usr"
|
||||
[[ -d "$usr_dir" ]] || return 0
|
||||
local input_lua="$usr_dir/input.lua"
|
||||
if [[ -f "$input_lua" ]] && grep -q 'require("input-device-exceptions")' "$input_lua"; then
|
||||
sed -i 's/require("input-device-exceptions")/require("usr.input-device-exceptions")/' "$input_lua"
|
||||
ok "Fixed require path in hypr/usr/input.lua ${DI}(input-device-exceptions → usr.input-device-exceptions)${RS}"
|
||||
fi
|
||||
}
|
||||
|
||||
sync_configs() {
|
||||
section "Config Sync"
|
||||
|
||||
# ── Migration: old flat layout → hypr/usr/ ───────────────────────────────
|
||||
_migrate_hypr_usr
|
||||
_fix_hypr_usr
|
||||
|
||||
# ── Preferred: use the installed update-configs.sh ───────────────────────
|
||||
local cfg_script
|
||||
|
|
@ -675,11 +695,27 @@ declare -a FLATPAK_PKGS=()
|
|||
main() {
|
||||
header
|
||||
|
||||
# ── Read state ───────────────────────────────────────────────────────────
|
||||
# ── Configs-only mode ────────────────────────────────────────────────────
|
||||
if [[ "$UPDATE_MODE" == "configs" ]]; then
|
||||
if ask "Sync dotfiles configs to ~/.config?"; then
|
||||
sync_configs
|
||||
fi
|
||||
rm -f "$_NEWS_PY"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
# ── Read state (packages / both modes) ───────────────────────────────────
|
||||
local last_update; last_update=$(read_state)
|
||||
log "Last recorded update: ${BO}${last_update}${RS}"
|
||||
echo
|
||||
|
||||
# ── Config sync (both mode) ──────────────────────────────────────────────
|
||||
if [[ "$UPDATE_MODE" == "both" ]]; then
|
||||
if ask "Sync dotfiles configs to ~/.config?"; then
|
||||
sync_configs
|
||||
fi
|
||||
fi
|
||||
|
||||
# ── Collect available updates ────────────────────────────────────────────
|
||||
section "Collecting Updates"
|
||||
|
||||
|
|
@ -705,10 +741,6 @@ main() {
|
|||
echo
|
||||
ok "${BO}System is up to date.${RS}"
|
||||
write_state
|
||||
echo
|
||||
if ask "Sync dotfiles configs to ~/.config?"; then
|
||||
sync_configs
|
||||
fi
|
||||
rm -f "$_NEWS_PY"
|
||||
exit 0
|
||||
fi
|
||||
|
|
@ -861,11 +893,6 @@ main() {
|
|||
fi
|
||||
echo
|
||||
|
||||
# ── Config sync ──────────────────────────────────────────────────────────
|
||||
if ask "Sync dotfiles configs to ~/.config?"; then
|
||||
sync_configs
|
||||
fi
|
||||
|
||||
rm -f "$_NEWS_PY"
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue