Files
omakub/bin/omakub-sub/menu.sh
David Heinemeier Hansson ec5101701d Use Manual online instead
2024-07-03 18:44:56 +02:00

8 lines
257 B
Bash

if [ $# -eq 0 ]; then
SUB=$(gum choose "Theme" "Font" "Update" "Install" "Uninstall" "Manual" "Quit" --height 10 --header "" | tr '[:upper:]' '[:lower:]')
else
SUB=$1
fi
[ -n "$SUB" ] && [ "$SUB" != "quit" ] && source $OMAKUB_PATH/bin/omakub-sub/$SUB.sh