Major rewrite of the runtime so the entry point is a proper gum TUI
instead of zenity dialogs, plus a handful of correctness fixes that
make it work on real Omarchy setups.
Runtime (motion-wallpaper-toggle, extracted from the installer heredoc):
* Full gum TUI: status header, monitor picker (with All monitors),
library / filesystem pickers, change-video, autostart toggle.
* State file at ~/.config/motion-wallpaper/state remembers last
video, target monitor, and last-used directory so Browse reopens
where the user was.
* Actions: toggle | start | stop | change | status.
Autostart:
* Ships a systemd user unit (motion-wallpaper.service).
* First fresh start prompts the user via gum confirm to enable it.
* Running-state menu offers a Turn autostart ON/OFF entry.
* Header shows the current autostart state.
Auto-pause:
* mpvpaper's -p is unreliable on Hyprland 0.54.x, so a small
motion-wallpaper-watcher subscribes to Hyprland's socket2 and
toggles mpv pause/resume via --input-ipc-server on fullscreen
enter/exit. Started/stopped alongside mpvpaper.
Omarchy compatibility:
* Stop path now respawns swaybg pointed at
~/.config/omarchy/current/background via setsid uwsm-app (the way
Omarchy autostarts it), instead of execing hyprpaper which isn't
present. Falls back to hyprpaper on non-Omarchy Hyprland setups.
* mpvpaper is launched under setsid uwsm-app so it survives the
Walker-spawned terminal closing.
Install / UX:
* Installer only invokes sudo/yay when packages are actually
missing, so reinstall is quiet.
* Dropped zenity; added gum + socat + libnotify.
* Custom SVG icon in the hicolor theme so Walker shows a proper
tile. Installer restarts elephant.service so the new entry/icon
appear without logout.
* .desktop flipped to Terminal=true so launchers spawn a terminal
for the TUI.
* Watcher lookup falls back to the script's own dir when PATH is
minimal (launcher-spawned terminals).
Bug fixes:
* Monitor picker was sending row-major data to zenity as one cell;
fixed (kept the correct form for the new gum picker).
* load_state / action_status no longer leak a non-zero exit code
from trailing test expressions.
* Stop path cleans up stray hyprpaper that would otherwise win the
background layer.
23 lines
927 B
XML
23 lines
927 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256" width="256" height="256">
|
|
<title>Motion Wallpaper</title>
|
|
|
|
<!-- Rounded square app-tile background -->
|
|
<rect x="16" y="16" width="224" height="224" rx="44" ry="44" fill="#1e1e2e"/>
|
|
|
|
<!-- Monitor frame -->
|
|
<rect x="44" y="64" width="168" height="116" rx="14" ry="14"
|
|
fill="#11111b" stroke="#cdd6f4" stroke-width="5"/>
|
|
|
|
<!-- Subtle waveform inside screen — signals moving wallpaper -->
|
|
<path d="M 60 146 Q 84 118 108 146 T 156 146 T 196 146"
|
|
stroke="#cdd6f4" stroke-width="4" fill="none"
|
|
stroke-linecap="round" opacity="0.35"/>
|
|
|
|
<!-- Play triangle -->
|
|
<path d="M 108 94 L 108 138 L 148 116 Z" fill="#cba6f7"/>
|
|
|
|
<!-- Monitor stand -->
|
|
<rect x="116" y="180" width="24" height="18" fill="#cdd6f4"/>
|
|
<rect x="84" y="198" width="88" height="10" rx="5" ry="5" fill="#cdd6f4"/>
|
|
</svg>
|