- installer: set recursive ownership of /etc/nixos to main user post-install - themes: fix NOMARCHY_PATH and discovery logic for Lua theme menu - scripts: update CLI wrappers (font, theme, wallpaper) to use Walker menus - core: remove obsolete NOMARCHY_PATH and cleanup dead code - features: add pkgs.lua for Walker and remove obsolete switcher.nix - docs: update ROADMAP.md, SCRIPTS.md and STRUCTURE.md
21 lines
367 B
Bash
Executable File
21 lines
367 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
# Nomarchy Theme Helper
|
|
# Usage: nomarchy-theme [selector|set <name>|list]
|
|
|
|
COMMAND="$1"
|
|
|
|
case "$COMMAND" in
|
|
set)
|
|
shift
|
|
nomarchy-theme-set "$@"
|
|
;;
|
|
list)
|
|
nomarchy-theme-list
|
|
;;
|
|
selector|*)
|
|
nomarchy-launch-walker -m menus:nomarchythemes --width 800 --minheight 400
|
|
;;
|
|
esac
|