|
1 | 1 | CHOICES=(
|
| 2 | + "Dev Editor Install alternative programming editors" |
2 | 3 | "Dev Language Install programming language environment"
|
3 | 4 | "Dev Database Install development database in Docker"
|
4 | 5 | "1password Manage your passwords securely across devices"
|
5 | 6 | "Audacity Record and edit audio"
|
6 | 7 | "ASDControl Set brightness on Apple Studio and XDR displays via cli"
|
7 | 8 | "Brave Chrome-based browser with built-in ad blocking"
|
8 |
| - "Cursor The AI Code Editor" |
9 |
| - "Doom Emacs Emacs framework with curated list of packages" |
10 | 9 | "Dropbox Sync files across computers with ease"
|
11 | 10 | "Mainline Kernels Install newer Linux kernels than Ubuntu defaults"
|
12 | 11 | "OBS Studio Record screencasts with inputs from both display + webcam"
|
13 | 12 | "Ollama Run LLMs, like Meta's Llama3, locally"
|
14 |
| - "RubyMine IntelliJ's commercial Ruby editor" |
15 | 13 | "Scrcpy Android screen mirroring (requires dev mode / USB debug on!)"
|
16 | 14 | "Spotify Stream music from the world's most popular service"
|
17 | 15 | "Steam Play games from Valve's store"
|
18 | 16 | "VirtualBox Virtual machines to run Windows/Linux"
|
19 |
| - "Zed Fast all-purpose editor" |
20 | 17 | "Zoom Attend and host video chat meetings"
|
21 | 18 | "> All Re-run any of the default installers"
|
22 | 19 | "<< Back "
|
23 | 20 | )
|
24 | 21 |
|
25 |
| -CHOICE=$(gum choose "${CHOICES[@]}" --height 23 --header "Install application") |
| 22 | +CHOICE=$(gum choose "${CHOICES[@]}" --height 20 --header "Install application") |
26 | 23 |
|
27 | 24 | if [[ "$CHOICE" == "<< Back"* ]] || [[ -z "$CHOICE" ]]; then
|
28 | 25 | # Don't install anything
|
|
38 | 35 | INSTALLER=$(echo "$CHOICE" | awk -F ' {2,}' '{print $1}' | tr '[:upper:]' '[:lower:]' | sed 's/ /-/g')
|
39 | 36 |
|
40 | 37 | case "$INSTALLER" in
|
| 38 | + "dev-editor") INSTALLER_FILE="$OMAKUB_PATH/bin/omakub-sub/install-dev-editor.sh" ;; |
41 | 39 | "dev-language") INSTALLER_FILE="$OMAKUB_PATH/install/terminal/select-dev-language.sh" ;;
|
42 | 40 | "dev-database") INSTALLER_FILE="$OMAKUB_PATH/install/terminal/select-dev-storage.sh" ;;
|
43 | 41 | "ollama") INSTALLER_FILE="$OMAKUB_PATH/install/terminal/optional/app-ollama.sh" ;;
|
|
0 commit comments