#!/usr/bin/env bash
set -euo pipefail

# shellcheck disable=SC1091
source /usr/lib/biglinux-livecd/live-state

# Best-effort: the terminal has to open even when the live state cannot be
# written. Under set -e a sudo without a matching sudoers rule aborted the
# script before the exec below.
initialize_default_live_state || true
install_live_state_defaults || true

exec /usr/bin/konsole --fullscreen
