- Implement nomarchy-pkg-install, nomarchy-pkg-drop, nomarchy-pkg-aur-add (stub) - Implement nomarchy-theme, nomarchy-font, nomarchy-wallpaper wrappers - Update docs/SCRIPTS.md with 'kept' status for new scripts
20 lines
304 B
Bash
Executable File
20 lines
304 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Nomarchy Font Helper
|
|
# Usage: nomarchy-font [selector|set <name>|list]
|
|
|
|
COMMAND="$1"
|
|
|
|
case "$COMMAND" in
|
|
set)
|
|
shift
|
|
nomarchy-font-set "$@"
|
|
;;
|
|
list)
|
|
nomarchy-font-list
|
|
;;
|
|
selector|*)
|
|
nomarchy-font-selector
|
|
;;
|
|
esac
|