# Post-Installation Script This directory contains files belonging to the Linux Mint post-installation scripts. ## Structure ``` post_installation_script/ ├── Nachinstallationsarbeiten_LC_Esslingen.sh # Main script (asks for desktop) ├── xfce/ │ ├── xfce.sh # XFCE-specific configurations │ └── xfce4-panel-profiles.tar.bz2 # XFCE panel backup ├── cinnamon/ │ └── cinnamon.sh # Cinnamon (reserved for future) ├── 01_prepare_release.sh └── 02_finalise_release.sh ``` ## Prerequisites to run the script - Linux Mint (XFCE or Cinnamon) installed and running - Internet connection for downloading packages and fonts - Required tools: `curl`, `unzip`, `wget`, `fc-cache` (most are pre-installed) No external files need to be pre-downloaded. ## Usage Run the main script: ```bash cd post_installation_script bash Nachinstallationsarbeiten_LC_Esslingen.sh ``` The script will ask you to select your desktop environment (XFCE or Cinnamon), then proceed with the installation. The script is interactive and will prompt for confirmation before each installation step. ## Testing See `../post_installation_script_test/README.md` for container-based testing instructions.