11 lines
421 B
Bash
Executable File
11 lines
421 B
Bash
Executable File
#!/bin/bash
|
|
# Exit immediately on error, treat unset variables as errors, propagate pipe failures.
|
|
set -euo pipefail
|
|
# Load shared log/warn/skip helpers from the installer library.
|
|
source "$(dirname "${BASH_SOURCE[0]}")/../../lib/logging.sh"
|
|
|
|
log "Installing OpenShot..."
|
|
# OpenShot is a non-linear video editor available in the official Arch repos.
|
|
sudo pacman -S --noconfirm --needed openshot
|
|
log "OpenShot installed."
|