|
#!/bin/bash
|
|
set -euo pipefail
|
|
source "$(dirname "${BASH_SOURCE[0]}")/../../lib/logging.sh"
|
|
|
|
log "Installing Inkscape (Flatpak)..."
|
|
ensure_flatpak
|
|
flatpak install -y flathub org.inkscape.Inkscape
|
|
apply_flatpak_theme "org.inkscape.Inkscape"
|
|
log "Inkscape installed."
|