12 lines
551 B
Bash
12 lines
551 B
Bash
#!/usr/bin/env bash
|
|
|
|
apps+=(
|
|
["Android Studio"]="source ${HOME}/.bashrc.d/programs.d/sdkman.sh;android-studio"
|
|
["Bytecode Viewer"]="bytecodeviewer"
|
|
["IntelliJ IDEA"]="source ${HOME}/.bashrc.d/programs.d/sdkman.sh;idea"
|
|
["VisualVM"]="source ${HOME}/.bashrc.d/programs.d/sdkman.sh;visualvm"
|
|
["Godot Engine (native)"]="godot"
|
|
["Godot Engine 4"]="flatpak run org.godotengine.Godot"
|
|
["Godot Engine 3"]="flatpak run org.godotengine.Godot3"
|
|
["VSCodium"]="codium --enable-features=UseOzonePlatform,WaylandWindowDecorations --ozone-platform=wayland"
|
|
)
|