Files
omakub/bin/omakub-menu
David Heinemeier Hansson 5913457998 Move help further down
Actions first
2024-06-13 12:43:35 +02:00

8 lines
248 B
Plaintext

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