12 lines
515 B
Bash
Executable File
12 lines
515 B
Bash
Executable File
#!/bin/bash
|
|
# Exit immediately on error, treat unset variables as errors, propagate pipe failures.
|
|
set -euo pipefail
|
|
# Load shared log/skip/warn/err helpers from the installer library.
|
|
source "$(dirname "${BASH_SOURCE[0]}")/../../lib/logging.sh"
|
|
|
|
log "Installing Inkscape..."
|
|
# Inkscape is a vector graphics editor (SVG-native); available in the official repos.
|
|
# --noconfirm skips interactive prompts; --needed avoids reinstalling if current.
|
|
sudo pacman -S --noconfirm --needed inkscape
|
|
log "Inkscape installed."
|