12 lines
406 B
Bash
12 lines
406 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
apps+=(
|
|
["Android Studio"]="android-studio"
|
|
["Bytecode Viewer"]="bytecodeviewer"
|
|
["IntelliJ IDEA"]="idea"
|
|
["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"
|
|
)
|