10 lines
268 B
Bash
Executable File
10 lines
268 B
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
source "$(dirname "${BASH_SOURCE[0]}")/../../lib/logging.sh"
|
|
|
|
log "Installing VSCodium (Flatpak)..."
|
|
ensure_flatpak
|
|
flatpak install --user -y flathub com.vscodium.codium
|
|
apply_flatpak_theme "com.vscodium.codium"
|
|
log "VSCodium installed."
|