mirror of
https://github.com/aljazceru/omakub.git
synced 2026-01-20 04:14:21 +01:00
8 lines
248 B
Plaintext
8 lines
248 B
Plaintext
if [ $# -eq 0 ]; then
|
|
SUB=$(gum choose "Help" "Theme" "Font" "Install" "Uninstall" "Update" "Quit" --height 10 --header "" | tr '[:upper:]' '[:lower:]')
|
|
else
|
|
SUB=$1
|
|
fi
|
|
|
|
[ -n "$SUB" ] && [ "$SUB" != "quit" ] && source $OMAKUB_PATH/bin/omakub-$SUB
|