diff --git a/live_exam_os/.gitignore b/live_exam_os/.gitignore deleted file mode 100644 index 906aca118331bd80348ac667bd0d215a2e74d2b3..0000000000000000000000000000000000000000 --- a/live_exam_os/.gitignore +++ /dev/null @@ -1,6 +0,0 @@ -*.iso -.env* -cache/ -config/02-customisation/etc/NetworkManager/system-connections/wifi.nmconnection -tools/unlocker-advanced.c -config/03-post_install/7000-unlocker-advanced.sh* diff --git a/live_exam_os/Dockerfile b/live_exam_os/Dockerfile deleted file mode 100644 index 9cedb4633c87b3d20e1be17787ea024794392bba..0000000000000000000000000000000000000000 --- a/live_exam_os/Dockerfile +++ /dev/null @@ -1,57 +0,0 @@ -FROM ubuntu:22.04 - -ENV archive=go1.22.6.linux-amd64.tar.gz -ENV PATH=$PATH:/usr/local/go/bin - -RUN apt-get update && \ - DEBIAN_FRONTEND=noninteractive \ - apt-get install -y gcc \ - pkg-config \ - git \ - wget \ - make \ - ca-certificates \ - libglfw3-dev \ - libxcursor-dev \ - libxinerama-dev \ - libxi-dev \ - libxxf86vm-dev \ - upx-ucl \ - curl \ - cryptsetup \ - squashfs-tools \ - fakechroot \ - debootstrap \ - xorriso \ - mtools \ - dosfstools \ - gnutls-bin \ - build-essential \ - unzip \ - libykpers-1-dev \ - libyubikey-dev \ - libcryptsetup-dev \ - libssl-dev \ - && apt-get clean - - -RUN git clone https://github.com/limine-bootloader/limine.git --branch=v8.x-binary --depth=1 /opt/limine && \ - cd /opt/limine && \ - make && \ - cp /opt/limine/limine /bin/ - - -# This part is ONLY used to compile the dependencies so that it doesn't have to be done every time build.sh is run (saves ~2-3min). -WORKDIR / -RUN git clone https://gitedu.hesge.ch/flg_projects/nexus_vdi/nexus.git -WORKDIR /nexus -RUN wget https://go.dev/dl/$archive && tar -C /usr/local -xzf $archive -RUN git config --global --add safe.directory /nexus - -RUN cd config/certs && ./gen-cert.sh ca.info nexus-server.info /nexus/certs -RUN make build_nexus-exam SERVER='127.0.0.1:1077' CERT='certs/ca-cert.pem' EXAM_USER='user' EXAM_PWD='pwd' - -WORKDIR /tigress -COPY tigress_4.0.10-1_all.deb.zip . -RUN unzip tigress_4.0.10-1_all.deb.zip -RUN dpkg --force-architecture -i tigress_4.0.10-1_all.deb diff --git a/live_exam_os/Makefile b/live_exam_os/Makefile deleted file mode 100644 index f9aa3d06b1b05062f1b8fa09d50d864f48d7abb7..0000000000000000000000000000000000000000 --- a/live_exam_os/Makefile +++ /dev/null @@ -1,28 +0,0 @@ -IMAGE_NAME := builder_nexus_iso -CURRENT_DIR := $(shell basename $(PWD)) -QEMU := qemu-system-x86_64 -machine accel=kvm -m 4G -smp 4 -boot d -nic user,model=virtio - -help: - @echo "Available targets:" - @echo "prepare Prepare the container image used by the build script" - @echo "build Build the ISO image by running the build script inside a container" - @echo " require the conf variable which specifies the config file to use, e.g." - @echo " make build conf=my_awsome_env" - @echo "bios Boot the ISO as a harddisk in legacy mode (BIOS)" - @echo "bios_cd Boot the ISO on a CD-ROM in legacy mode (BIOS)" - @echo "uefi Boot the ISO as a harddisk in UEFI mode" - -prepare: - docker buildx build -t $(IMAGE_NAME) . - -build: - docker run -it --rm --mount type=bind,src=$(PWD)/..,dst=/data --workdir /data/$(CURRENT_DIR) --privileged $(IMAGE_NAME) ./build.sh $(conf) - -bios: - $(QEMU) -drive file=$(ISO),format=raw - -bios_cd: - $(QEMU) -drive file=$(ISO),media=cdrom,if=ide,readonly=on - -uefi: - $(QEMU) -drive file=$(ISO),format=raw -bios /usr/share/OVMF/x64/OVMF.fd diff --git a/live_exam_os/README.md b/live_exam_os/README.md deleted file mode 100644 index a07a80e0a0879e10748311266d3343df9427d677..0000000000000000000000000000000000000000 --- a/live_exam_os/README.md +++ /dev/null @@ -1,175 +0,0 @@ -# Live Exam OS Builder - -This project builds a customized ISO image used during live exam with nexus. The following features are supported: root filesystem encryption, PXE booting, secure boot, OS and filesystem configuration. - -## Usage - -A Makefile is provided to build the nexus live exam ISO image. This Makefile takes care of running the build script, `build.sh`, inside a container in order to avoid any potential corruption of the host system. Indeed, the script binds directories such as `/dev`, `/sys`, etc. to the created filesystem. If a problem occurs during this process, the host system might be affected and possibly corrupted. - -Consequently, make absolutely sure to NOT DIRECTLY RUN `build.sh` on the host system! Instead, use `make` as described below: - -1. First, prepare the container image required by the build process: - ```bash - make prepare - ``` - -2. Then, run the ISO image build process with the desired config: - ```bash - make build conf=<env> - ``` - Where `<env>` is the path to a file containing the config to use when building the image. The config is specified through environment variables described in the next section. - -## Configuration - -Here is a sample configuration file listing all supported variables. In this example, encryption is disabled. To activate it, uncomment the block under `[Encryption settings]`. - -```bash -# [General settings] -# Final ISO image to produce -export ISO_NAME="nexus.iso" -# Whether to produce extra messages -export VERBOSE=true -# Output directory for generated files -export OUTPUT="output" -# Directory where to download packages for the initial root filesystem -export CACHE_FS="cache" - -# [nexus-exam settings] -# nexus server ip and port -export SERVER="127.0.0.1:1077" -# Path, within the current directory, to the public certificate file used by nexus-exam -export CERT="ca-cert.pem" -# Default user for nexus-exam -export EXAM_USER='luke@force.net' -# Default password for nexus-exam -export EXAM_PWD='r2d2' - -# [Encryption settings] -# Enable LUKS encryption with passphrase -# export LUKS_PASSPHRASE='passphrase' -# List of additional keys -# export ADDITIONAL_KEYS='key1 key2' -# Copy the rootfs to RAM (instead of being stored on the usb key) -#export RAM="squashfs_tmpfs" - -# [PXE settings] -# Set the url of the PXE server and generate an initramfs, kernel and squashfs for PXE to use -# Use the url of the directory where squashfs is stored, not the direct link to it -#export PXE_URL="127.0.0.1:8000" -``` - -## Makefile Targets - -The default target is `help`, which shows the available targets: - -``` -$ make -Available targets: -prepare Prepare the container image used by the build script -build Build the ISO image by running the build script inside a container - require the conf variable which specifies the config file to use, e.g. - make build conf=my_awsome_env -bios Boot the ISO as a harddisk in legacy mode (BIOS) -bios_cd Boot the ISO on a CD-ROM in legacy mode (BIOS) -uefi Boot the ISO as a harddisk in UEFI mode -``` - -Note that a QEMU virtual machine is used when booting the ISO image. - -## Project Components - -### Scripts - - - **build.sh**: Main script to build the ISO image and configure the environment. - - **tools/functions.sh**: Contains helper functions used by the build.sh script to streamline operations and ensure consistency. - -### Configuration Files - -The configuration files are organized in the `config/` directory and include the following subdirectories: - -- **config/00-bootloader**: Contains bootloader configuration files. - - grub.cfg, grub.efi.cfg, limine.conf - -- **config/01-packages_install**: Lists packages to be installed. - - packages - -- **config/02-customisation**: Contains customization files for the filesystem. - - etc/, home/, usr/ - -- **config/03-post_install**: Contains post-installation scripts to further customize the environment. - - 1000-create-user.sh, 2000-enable_services.sh, 3000-nexus_exam.sh, 5000-push_challenge.sh, 8000-initramfs.sh, 1000-disable_root.sh, 2500-disable_services.sh, 4000-firewall.sh, 5000-pxe.sh, 9999-cleanup.sh - -### Wifi Connection - -Each wifi connection must reside in a `.nmconnection` file located in `config/02-customisation/etc/NetworkManager/system-connections/`. - -Here are two example files, `wifi1.nmconnection` and `wifi2.nmconnection`. Make sure that whatever configuration files you copy in that directory **cannot be read by anyone**, but root: -``` -chmod 600 config/02-customisation/etc/NetworkManager/system-connections/*.nmconnection -``` - -Content of `wifi1.nmconnection`: -``` -[connection] -# Name of the connection as shown by Network Manager -id=example1 -# Random UUID referencing the connection -uuid=8a065b14-beb3-4f28-97b5-f560c368ae12 -type=wifi - -[wifi] -# Whether the SSID is hidden or not (true/false) -hidden=false -# Name of the WIFI SSID -ssid=the_empire_strickes_back - -[wifi-security] -key-mgmt=wpa-eap - -[802-1x] -eap=peap; -identity=luke_skywalker -password=you_are_not_ready_young_padawan -phase2-auth=mschapv2 - -[ipv4] -method=auto - -[ipv6] -addr-gen-mode=stable-privacy -method=auto -``` - -Content of `wifi2.nmconnection`: -``` -[connection] -# Name of the connection as shown by Network Manager -id=example2 -# Random UUID referencing the connection -uuid=8a065b14-beb3-4f28-97b5-f560c368ae12 -type=wifi - -[wifi] -# Whether the SSID is hidden or not (true/false) -hidden=true -# Name of the WIFI SSID -ssid=return_of_the_jedi -mode=infrastructure - -[wifi-security] -auth-alg=open -key-mgmt=wpa-psk -psk=may_the_force_be_with_you - -[ipv4] -method=auto - -[ipv6] -addr-gen-mode=stable-privacy -method=auto -``` -## Notes - -- Ensure that all required dependencies are installed before running the script or Makefile. -- For UEFI testing, verify that the OVMF firmware is installed on your system (e.g., `/usr/share/OVMF/x64/OVMF.fd`). -- When specifying a cache directory or a directory for downloading the filesystem, avoid using `/tmp` in the container, as it is often set with the noexec attribute, which can prevent tools like debootstrap from working properly. Choose a directory with execution permissions instead. diff --git a/live_exam_os/build.sh b/live_exam_os/build.sh deleted file mode 100755 index 6ff364078e8f76ef0828f093d4aee3b37a243702..0000000000000000000000000000000000000000 --- a/live_exam_os/build.sh +++ /dev/null @@ -1,260 +0,0 @@ -#!/bin/bash - -. tools/functions.sh - -# Default variables -export VERBOSE=false -export OUTPUT="output" -export CACHE_FS="cache" -export ISO_NAME="nexus.iso" -export UBUNTU_DISTRIB="noble" -export ARCH="amd64" - -helper() { - echo "USAGE: $(basename "$0") envfile" - echo " envfile path to an environment file containing the config to use when building the image" - exit 1 -} - -export UBUNTU_REPO="https://archive.ubuntu.com/ubuntu" -export SQUASHFS_IMG="squash.rootfs" -export ROOTFS_DIR="$OUTPUT/rootfs" - -SQUASHFS="$OUTPUT/squashfs" -ISO_DIR="$OUTPUT/iso" -BOOT_DIR="$ISO_DIR/boot" - -TMP_KERNEL=$(mktemp /tmp/vmlinuz.XXXXXX) -TMP_INITRD=$(mktemp /tmp/initrd.XXXXXX) -TMP_SQUASHFS_IMG=$(mktemp /tmp/squashfs_img.XXXXXX) - -if [ $# -ne 1 ]; then - helper -fi - -if [ -f "$1" ]; then - source "$1" > /dev/null - # prepend the CERT variable with the current directory (required by nexus-exam build process) - export CERT=$(basename $(pwd))/$CERT -else - echo "Error: file '$1' not found." >&2 - helper -fi - -check_inside_container -check_environment_var -check_dependencies -CMDLINE="boot=nexus $RAM modprobe.blacklist=floppy" - -echo "[Cleanup $ROOTFS_DIR]" -ROOTFS_PATH="${ROOTFS_DIR%/}" -child_mounts=$(findmnt -rn -o TARGET | grep -E "^${ROOTFS_PATH}/[^/]+$") - -if [ -n "$child_mounts" ]; then - echo "WARNING: The following mount points are directly under $ROOTFS_DIR:" - echo "$child_mounts" - echo - read -p "Do you want to unmount these mount points? [y/N]: " confirmation - case "$confirmation" in - [yY][eE][sS]|[yY]) - while IFS= read -r mount_point; do - echo "Unmounting $mount_point..." - if ! umount "$mount_point"; then - echo "Error: failed to unmount $mount_point. Please unmount manually or reboot the system to avoid issues." - exit 1 - fi - done <<< "$child_mounts" - ;; - *) - echo "Cleanup aborted by user." - exit 1 - ;; - esac -fi -run_command rm -rf "$ROOTFS_DIR" - -echo "[Cleanup $OUTPUT]" -run_command rm -rf "$OUTPUT" - -echo "[Create filesystem...]" -mkdir -p "$ROOTFS_DIR" - -if [ -z "$CACHE_FS" ]; then - run_command debootstrap --arch="$ARCH" "$UBUNTU_DISTRIB" "$ROOTFS_DIR" $UBUNTU_REPO - run_command mount -t proc /proc "$ROOTFS_DIR/proc" - run_command mount --rbind /sys "$ROOTFS_DIR/sys" - run_command mount --rbind /dev "$ROOTFS_DIR/dev" - run_command mount --rbind /run "$ROOTFS_DIR/run" - run_command mount -t tmpfs tmpfs "$ROOTFS_DIR/tmp" - - echo "[Installing packages...]" - packages=$(tr '\n' ' ' < config/01-packages_install/packages) - echo "deb $UBUNTU_REPO $UBUNTU_DISTRIB main universe" > "$ROOTFS_DIR/etc/apt/sources.list" - run_command_chroot apt update - # shim-signed required for UEFI secure boot - run_command_chroot apt install -y --no-install-recommends "$packages" -else - if [ ! -d "$CACHE_FS" ]; then - mkdir "$CACHE_FS" - run_command debootstrap --arch="$ARCH" "$UBUNTU_DISTRIB" "$CACHE_FS" $UBUNTU_REPO - - run_command mount -t proc /proc "$CACHE_FS/proc" - run_command mount --rbind /sys "$CACHE_FS/sys" - run_command mount --rbind /dev "$CACHE_FS/dev" - run_command mount --rbind /run "$CACHE_FS/run" - run_command mount -t tmpfs tmpfs "$CACHE_FS/tmp" - - echo "[Installing packages...]" - packages=$(tr '\n' ' ' < config/01-packages_install/packages) - echo "deb $UBUNTU_REPO $UBUNTU_DISTRIB main universe" > "$CACHE_FS/etc/apt/sources.list" - run_command chroot "$CACHE_FS" apt update - run_command chroot "$CACHE_FS" apt install -y --no-install-recommends "$packages" - - run_command umount -l "$CACHE_FS/proc" - run_command umount -l "$CACHE_FS/sys" - run_command umount -l "$CACHE_FS/dev" - run_command umount -l "$CACHE_FS/run" - run_command umount -l "$CACHE_FS/tmp" - else - echo "[Skip through cache]" - fi - - run_command cp -r "$CACHE_FS"/. "$ROOTFS_DIR"/ - - run_command mount -t proc /proc "$ROOTFS_DIR/proc" - run_command mount --rbind /sys "$ROOTFS_DIR/sys" - run_command mount --rbind /dev "$ROOTFS_DIR/dev" - run_command mount --rbind /run "$ROOTFS_DIR/run" - run_command mount -t tmpfs tmpfs "$ROOTFS_DIR/tmp" -fi - -echo "[Copying configuration file...]" -run_command cp -rf config/02-customisation/* "$ROOTFS_DIR" - -echo "[Checking for required dependencies...]" -if [ ! -d "/opt/limine" ]; then - echo "Error: /opt/limine not found. Please install the Limine bootloader files in /opt/limine." - exit 1 -fi - -if [ ! -f "$ROOTFS_DIR/usr/lib/shim/shimx64.efi.signed.latest" ] || [ ! -f "$ROOTFS_DIR/usr/lib/grub/x86_64-efi-signed/grubx64.efi.signed" ]; then - echo "Error: required EFI files not found in $ROOTFS_DIR." - exit 1 -fi - -if [ -z "$PXE_URL" ]; then - EFIBOOT=$(mktemp /tmp/efiboot.img.XXXXXX) - EFIBOOT_MOUNT=$(mktemp -d /tmp/efiboot.XXXXXX) - echo "[EFI img preparation]" - run_command mkdir -p "$ISO_DIR/boot/grub" - run_command "sed 's/CMDLINE/$CMDLINE/g' config/00-bootloader/grub.cfg > $ISO_DIR/boot/grub/grub.cfg" - SIZE_EFIBOOT=$(get_total_size "$ROOTFS_DIR/usr/lib/shim/shimx64.efi.signed.latest" "$ROOTFS_DIR/usr/lib/grub/x86_64-efi-signed/grubx64.efi.signed") - OFFSET=$(( 150 * 1024 )) # Some space for fat header and grub.cfg file - - run_command fallocate -l $(( $SIZE_EFIBOOT + $OFFSET)) "$EFIBOOT" - run_command mkfs.vfat "$EFIBOOT" - run_command mount -o loop "$EFIBOOT" "$EFIBOOT_MOUNT" - run_command mkdir -p "$EFIBOOT_MOUNT/EFI/BOOT" - run_command cp config/00-bootloader/grub.efi.cfg "$EFIBOOT_MOUNT/EFI/BOOT/grub.cfg" - run_command cp "$ROOTFS_DIR/usr/lib/shim/shimx64.efi.signed.latest" "$EFIBOOT_MOUNT/EFI/BOOT/BOOTx64.EFI" - run_command cp "$ROOTFS_DIR/usr/lib/grub/x86_64-efi-signed/grubx64.efi.signed" "$EFIBOOT_MOUNT/EFI/BOOT/grubx64.efi" - run_command umount "$EFIBOOT_MOUNT" - run_command rmdir "$EFIBOOT_MOUNT" -fi - -echo "[Post-install...]" -for script in config/03-post_install/*.sh; do - echo "[Running $script...]" - run_command "$script" -done - -echo "[Moving kernel...]" -KERNEL_FILE=$(ls -1 "$ROOTFS_DIR/boot/vmlinuz-"* 2>/dev/null | head -n 1) -if [ -z "$KERNEL_FILE" ]; then - echo "Error: no kernel file found in $ROOTFS_DIR/boot" - exit 1 -fi -run_command cp "$KERNEL_FILE" "$TMP_KERNEL" -run_command cp "$ROOTFS_DIR/boot/initrd.img" "$TMP_INITRD" -run_command rm -rf "$ROOTFS_DIR/boot" - -echo "[Unmount subsystem...]" -run_command umount -l "$ROOTFS_DIR/proc" -run_command umount -l "$ROOTFS_DIR/sys" -run_command umount -l "$ROOTFS_DIR/dev" -run_command umount -l "$ROOTFS_DIR/run" -run_command umount -l "$ROOTFS_DIR/tmp" - -echo "[Create squash.rootfs...]" -run_command mksquashfs "$ROOTFS_DIR" "$SQUASHFS" -comp zstd - -if [ ! -z "$LUKS_PASSPHRASE" ]; then - echo "[Encrypt squash.rootfs...]" - SQUASHFS_SIZE=$(stat -c %s "$SQUASHFS") - LUKS_HEADER_SIZE=$((1024 * 1024 * 16)) # 16 MiB header LUKS2 - TOTAL_SIZE=$((SQUASHFS_SIZE + LUKS_HEADER_SIZE)) - SECTOR_SIZE=512 - - run_command fallocate -l "$TOTAL_SIZE" "$TMP_SQUASHFS_IMG" - run_command bash -c "cat <<EOF | cryptsetup luksFormat '$TMP_SQUASHFS_IMG' --batch-mode -$LUKS_PASSPHRASE -EOF" - - run_command bash -c "cat <<EOF | cryptsetup luksOpen '$TMP_SQUASHFS_IMG' container -$LUKS_PASSPHRASE -EOF" - run_command dd if="$SQUASHFS" of=/dev/mapper/container bs=4M - rm -f "$SQUASHFS" - run_command cryptsetup luksClose container - - if [ ! -z "$ADDITIONAL_KEYS" ]; then - for key in $ADDITIONAL_KEYS; do - key_file=$(mktemp) - echo "$key" > "$key_file" - run_command bash -c "cat <<EOF | cryptsetup luksAddKey '$TMP_SQUASHFS_IMG' -$LUKS_PASSPHRASE -$key -EOF" - rm -f "$key_file" - done - fi -else - mv "$SQUASHFS" "$TMP_SQUASHFS_IMG" -fi - -if [ ! -z "$PXE_URL" ]; then - run_command cp "$TMP_KERNEL" "$OUTPUT/vmlinuz" - run_command cp "$TMP_INITRD" "$OUTPUT/initrd" - run_command cp "$TMP_SQUASHFS_IMG" "$OUTPUT/$SQUASHFS_IMG" - run_command cp "$ROOTFS_DIR/usr/lib/shim/shimx64.efi.signed.latest" "$OUTPUT/BOOTx64.EFI" - run_command cp "$ROOTFS_DIR/usr/lib/grub/x86_64-efi-signed/grubx64.efi.signed" "$OUTPUT/grubx64.efi" - CMDLINE="boot=pxe $RAM modprobe.blacklist=floppy" - run_command "sed 's/CMDLINE/$CMDLINE/g' config/00-bootloader/grub.cfg > $OUTPUT/grub.cfg" -else - echo "[Moving kernel && squashfs from rootfs to iso/boot...]" - run_command mkdir -p "$BOOT_DIR" - run_command cp "$TMP_KERNEL" "$BOOT_DIR/vmlinuz" - run_command cp "$TMP_INITRD" "$BOOT_DIR/initrd" - - echo "[Create iso...]" - run_command cp "$TMP_SQUASHFS_IMG" "$ISO_DIR/$SQUASHFS_IMG" - run_command cp /opt/limine/*.bin "$ISO_DIR/" - run_command cp /opt/limine/*.sys "$ISO_DIR/" - run_command cp "$EFIBOOT" "$ISO_DIR/efiboot.img" - run_command "sed 's/CMDLINE/$CMDLINE/g' config/00-bootloader/limine.conf > $ISO_DIR/boot/limine.conf" - # IMPORTANT!!! - # -volid value MUST MATCH the one in config/02-customisation/etc/initramfs-tools/scripts/nexus - run_command xorriso -as mkisofs -R -r -J -b "limine-bios-cd.bin" \ - -no-emul-boot -boot-load-size 4 -boot-info-table -hfsplus \ - -apm-block-size 2048 --efi-boot "efiboot.img" \ - -efi-boot-part --efi-boot-image --protective-msdos-label \ - -volid "nexus-live-exam" \ - "$ISO_DIR" -o "$OUTPUT/$ISO_NAME" - - run_command limine bios-install "$OUTPUT/$ISO_NAME" -fi - -chown -R 1000:1000 "$OUTPUT" - -echo "[Cleanup temporary files...]" -rm -f "$TMP_KERNEL" "$TMP_INITRD" "$TMP_SQUASHFS_IMG" "$EFIBOOT" diff --git a/live_exam_os/config/00-bootloader/grub.cfg b/live_exam_os/config/00-bootloader/grub.cfg deleted file mode 100644 index b9c139084a82214e15ba1a1ffb16c7474ae8c93e..0000000000000000000000000000000000000000 --- a/live_exam_os/config/00-bootloader/grub.cfg +++ /dev/null @@ -1,6 +0,0 @@ -set timeout=0 - -menuentry "Nexus-Exam" { - linux /boot/vmlinuz CMDLINE -- - initrd /boot/initrd -} diff --git a/live_exam_os/config/00-bootloader/grub.efi.cfg b/live_exam_os/config/00-bootloader/grub.efi.cfg deleted file mode 100644 index 08ef767a9a2291cf408c5a5bdbe47c4f3118c8bd..0000000000000000000000000000000000000000 --- a/live_exam_os/config/00-bootloader/grub.efi.cfg +++ /dev/null @@ -1,2 +0,0 @@ -search --file /boot/vmlinuz --no-floppy --set root -configfile /boot/grub/grub.cfg diff --git a/live_exam_os/config/00-bootloader/limine.conf b/live_exam_os/config/00-bootloader/limine.conf deleted file mode 100644 index 5a2cf966beb6388c3286b9300b66b48de01c0009..0000000000000000000000000000000000000000 --- a/live_exam_os/config/00-bootloader/limine.conf +++ /dev/null @@ -1,7 +0,0 @@ -timeout: 0 - -/Nexus - protocol: linux - kernel_path: boot():/boot/vmlinuz - kernel_cmdline: CMDLINE - module_path: boot():/boot/initrd diff --git a/live_exam_os/config/01-packages_install/packages b/live_exam_os/config/01-packages_install/packages deleted file mode 100644 index 33d495e853ad1c3e611124e2824399dcc53ed786..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-packages_install/packages +++ /dev/null @@ -1,38 +0,0 @@ -zstd -initramfs-tools -linux-image-generic -linux-firmware -ubuntu-drivers-common -cryptsetup-initramfs -network-manager -network-manager-gnome -systemd -policykit-1 -adwaita-icon-theme -dbus -dbus-x11 -virt-viewer -iptables -ufw -rfkill -wpasupplicant -shim-signed -grub-efi-amd64-signed -libykpers-1-dev -libyubikey-dev -libcryptsetup-dev -numlockx -systemd-timesyncd -task-laptop -light -xserver-xorg -xserver-xorg-input-libinput -x11-xserver-utils -xinit -xfce4 -xfce4-terminal -xubuntu-default-settings -xfdesktop4 -elementary-xfce-icon-theme -onboard -dconf-cli \ No newline at end of file diff --git a/live_exam_os/config/02-customisation/etc/NetworkManager/conf.d/10-globally-managed-devices.conf b/live_exam_os/config/02-customisation/etc/NetworkManager/conf.d/10-globally-managed-devices.conf deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/live_exam_os/config/02-customisation/etc/default/keyboard b/live_exam_os/config/02-customisation/etc/default/keyboard deleted file mode 100644 index ad849b1f846aece8158718d922fdc961dd2aeea5..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/etc/default/keyboard +++ /dev/null @@ -1,10 +0,0 @@ -# KEYBOARD CONFIGURATION FILE - -# Consult the keyboard(5) manual page. - -XKBMODEL="pc105" -XKBLAYOUT="ch" -XKBVARIANT="fr" -XKBOPTIONS="" - -BACKSPACE="guess" diff --git a/live_exam_os/config/02-customisation/etc/initramfs-tools/hooks/pxe b/live_exam_os/config/02-customisation/etc/initramfs-tools/hooks/pxe deleted file mode 100755 index 64ef1890b9f1a5bc8f485be3fb65c5fb7a5cfc42..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/etc/initramfs-tools/hooks/pxe +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh -set -e - -. /usr/share/initramfs-tools/hook-functions - -if [ -f /etc/squashfs-url ]; then - copy_exec /etc/squashfs-url /squashfs-url -fi diff --git a/live_exam_os/config/02-customisation/etc/initramfs-tools/hooks/unlock b/live_exam_os/config/02-customisation/etc/initramfs-tools/hooks/unlock deleted file mode 100755 index ddeed75ff61bf34da4324ab5d62fde44adb260ab..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/etc/initramfs-tools/hooks/unlock +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/sh - -set -e -. /usr/share/initramfs-tools/hook-functions - -copy_exec /etc/unlock_luks /scripts/unlock_luks -copy_exec /lib/x86_64-linux-gnu/libykpers-1.so.* /lib/x86_64-linux-gnu/ diff --git a/live_exam_os/config/02-customisation/etc/initramfs-tools/scripts/nexus b/live_exam_os/config/02-customisation/etc/initramfs-tools/scripts/nexus deleted file mode 100755 index ff47497f8e275ed4e12f7158a7e6ffc8306187ad..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/etc/initramfs-tools/scripts/nexus +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh - -. /scripts/tools - -while true; do - for dev in /dev/sd* /dev/sr*; do - if [ -e "$dev" ]; then - label="$(blkid -o value -s LABEL "$dev" 2>/dev/null)" - if [ "$label" = "nexus-live-exam" ]; then - DISK="$dev" - break 2 - fi - fi - done -done - - -mkdir -p /cdrom -mount -t iso9660 $DISK /cdrom - -cryptsetup isLuks /cdrom/squash.rootfs -exit_code=$? -if [ ! $exit_code -eq 0 ]; then - mount_and_switch /cdrom/squash.rootfs -fi - -decrypt_mount_and_switch diff --git a/live_exam_os/config/02-customisation/etc/initramfs-tools/scripts/pxe b/live_exam_os/config/02-customisation/etc/initramfs-tools/scripts/pxe deleted file mode 100755 index 8077c0256a8e965791c21d0f7f104a1cccc28660..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/etc/initramfs-tools/scripts/pxe +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/sh - -. /scripts/tools - -SQUASH_FILE="/squash.rootfs" - -sleep 3 - -echo "DHCP lookup..." -find_active_interface - -wget $(cat /squashfs-url) -O $SQUASH_FILE - -cryptsetup isLuks $SQUASH_FILE -exit_code=$? -if [ ! $exit_code -eq 0 ]; then - mount_and_switch $SQUASH_FILE -fi - -decrypt_mount_and_switch diff --git a/live_exam_os/config/02-customisation/etc/initramfs-tools/scripts/tools b/live_exam_os/config/02-customisation/etc/initramfs-tools/scripts/tools deleted file mode 100755 index 6e31e08a5d9864a91247b87c71edc186a995282f..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/etc/initramfs-tools/scripts/tools +++ /dev/null @@ -1,97 +0,0 @@ -#!/bin/bash - -mount_and_switch() { - SQUASHFS_PATH=$1 - - mount_fs $SQUASHFS_PATH - - mount -t devtmpfs none /newroot/dev - mount -t proc none /newroot/proc - mount -t sysfs none /newroot/sys - mount -t tmpfs none /newroot/tmp - mount -t devpts none /newroot/dev/pts - - exec switch_root /newroot /sbin/init -} - -decrypt_mount_and_switch() { - echo "Waiting for Yubikey." - while true; do - output=$(/scripts/unlock_luks) - exit_code=$? - - if read -t 1 -n 1 input && [ "$input" = "p" ]; then - echo "" - decrypt_with_passphrase /cdrom/squash.rootfs - continue - fi - - if [ "$exit_code" -eq 1 ]; then - sleep 1 - continue - fi - - mount_and_switch /dev/mapper/data - done -} - -decrypt_with_passphrase() { - SQUASHFS_LUKS=$1 - cryptsetup open $1 data - exit_code=$? - - if [ "$exit_code" -eq 0 ]; then - mount_and_switch /dev/mapper/data - fi - - echo "Wrong passphrase" -} - -mount_fs() { - SQUASHFS_PATH=$1 - mkdir -p /newroot/{home, run, tmp, var/log, var/tmp} /rw_home /squash - - if grep -q "squashfs_tmpfs" /proc/cmdline; then - echo "Mounting fs to RAM..." - mount -t squashfs -o loop,ro $SQUASHFS_PATH /squash - mount -t tmpfs none /newroot - cp -rp /squash/* /newroot - else - echo "Mounting fs..." - mount -t squashfs -o loop,ro "$SQUASHFS_PATH" /newroot - fi - - mount -t tmpfs none /rw_home - cp -rp /newroot/home/. /rw_home/ - - mount -t tmpfs none /newroot/run - mount -t tmpfs none /newroot/tmp - mount -t tmpfs none /newroot/var/log - mount -t tmpfs none /newroot/var/tmp - mount -t tmpfs none /newroot/var/lib/systemd - mount --bind /rw_home /newroot/home -} - -find_active_interface() { - for iface in $(ls /sys/class/net); do - if [ "$iface" = "lo" ]; then - continue - fi - - if [ "$(cat /sys/class/net/$iface/type)" = "1" ]; then - if ip link show "$iface" | grep -q "<BROADCAST,MULTICAST>"; then - echo "Lookup for $iface interface" - dhcpcd -q $iface - exit_code=$? - - if [ "$exit_code" -eq 0 ]; then - return 0 - fi - fi - fi - done - - echo "No active network interface found." >&2 - /bin/sh - return 1 -} diff --git a/live_exam_os/config/02-customisation/etc/locale.conf b/live_exam_os/config/02-customisation/etc/locale.conf deleted file mode 100644 index 01ec548f82205efd53e4fc1be27aef47ddaee9cc..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/etc/locale.conf +++ /dev/null @@ -1 +0,0 @@ -LANG=en_US.UTF-8 diff --git a/live_exam_os/config/02-customisation/etc/systemd/system/getty@tty1.service.d/autologin.conf b/live_exam_os/config/02-customisation/etc/systemd/system/getty@tty1.service.d/autologin.conf deleted file mode 100644 index 9712e76cba9b8c9462343b8e651ab9d15f412698..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/etc/systemd/system/getty@tty1.service.d/autologin.conf +++ /dev/null @@ -1,3 +0,0 @@ -[Service] -ExecStart= -ExecStart=-/sbin/agetty -o '-p -f -- \\u' --noclear --autologin user %I $TERM diff --git a/live_exam_os/config/02-customisation/etc/systemd/timesyncd.conf b/live_exam_os/config/02-customisation/etc/systemd/timesyncd.conf deleted file mode 100644 index d0551a9eea7a37dc9019e36654e3bf0c5aad4836..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/etc/systemd/timesyncd.conf +++ /dev/null @@ -1,22 +0,0 @@ -# This file is part of systemd. -# -# systemd is free software; you can redistribute it and/or modify it under the -# terms of the GNU Lesser General Public License as published by the Free -# Software Foundation; either version 2.1 of the License, or (at your option) -# any later version. -# -# Entries in this file show the compile time defaults. Local configuration -# should be created by either modifying this file, or by creating "drop-ins" in -# the timesyncd.conf.d/ subdirectory. The latter is generally recommended. -# Defaults can be restored by simply deleting this file and all drop-ins. -# -# See timesyncd.conf(5) for details. - -[Time] -NTP=pool.ntp.org 0.europe.pool.ntp.org 1.europe.pool.ntp.org 2.europe.pool.ntp.org 3.europe.pool.ntp.org 0.north-america.pool.ntp.org 1.north-america.pool.ntp.org 2.north-america.pool.ntp.org -FallbackNTP=0.debian.pool.ntp.org 1.debian.pool.ntp.org 2.debian.pool.ntp.org 3.debian.pool.ntp.org -#RootDistanceMaxSec=5 -#PollIntervalMinSec=32 -#PollIntervalMaxSec=2048 -#ConnectionRetrySec=30 -#SaveIntervalSec=60 diff --git a/live_exam_os/config/02-customisation/etc/xdg/autostart/nexus-exam.desktop b/live_exam_os/config/02-customisation/etc/xdg/autostart/nexus-exam.desktop deleted file mode 120000 index e6562d422ee2e457b90cc65137433c4ce016b387..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/etc/xdg/autostart/nexus-exam.desktop +++ /dev/null @@ -1 +0,0 @@ -../../../usr/local/bin/nexus-exam.desktop \ No newline at end of file diff --git a/live_exam_os/config/02-customisation/etc/xdg/autostart/screen_settings.desktop b/live_exam_os/config/02-customisation/etc/xdg/autostart/screen_settings.desktop deleted file mode 100755 index a8a47afd33bc380dfb11c3f319ad05ef73758241..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/etc/xdg/autostart/screen_settings.desktop +++ /dev/null @@ -1,8 +0,0 @@ -[Desktop Entry] -Type=Application -Name=Set screen settings -# Disable screen blanking (by default blanks the screen after 10min) -# Set brightness to 100% -# Enable numlock -Exec=bash -c 'xset s off ; light -S 100 ; numlockx on' -Terminal=true diff --git a/live_exam_os/config/02-customisation/etc/xdg/autostart/virtual_keyboard.desktop b/live_exam_os/config/02-customisation/etc/xdg/autostart/virtual_keyboard.desktop deleted file mode 100755 index ec6819f0e727f48bdd37fd9ad73b4d3d8e5fcb43..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/etc/xdg/autostart/virtual_keyboard.desktop +++ /dev/null @@ -1,4 +0,0 @@ -[Desktop Entry] -Type=Application -Name=onboard -Exec=/usr/bin/onboard diff --git a/live_exam_os/config/02-customisation/etc/xdg/autostart/wallpaper.desktop b/live_exam_os/config/02-customisation/etc/xdg/autostart/wallpaper.desktop deleted file mode 100755 index 7e1148ae059e5ec71804238743a52828156dfe14..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/etc/xdg/autostart/wallpaper.desktop +++ /dev/null @@ -1,5 +0,0 @@ -[Desktop Entry] -Type=Application -Name=Set desktop wallpaper -Exec=bash -c 'xfconf-query -c xfce4-desktop --list|grep last-image|xargs xfconf-query -c xfce4-desktop -s /usr/share/xfce4/backdrops/Journey_home_by_Juliette_Taka.jpg -p' -Terminal=true diff --git a/live_exam_os/config/02-customisation/etc/xdg/xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml b/live_exam_os/config/02-customisation/etc/xdg/xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml deleted file mode 100644 index 44c07c2644992833874975465653d7d8b282f2e7..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/etc/xdg/xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml +++ /dev/null @@ -1,29 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> - -<channel name="xfce4-desktop" version="1.0"> - - <property name="desktop-icons" type="empty"> - <property name="style" type="empty"/> - <property name="file-icons" type="empty"> - <property name="show-home" type="bool" value="false"/> - <property name="show-filesystem" type="bool" value="false"/> - <property name="show-removable" type="bool" value="false"/> - <property name="show-trash" type="bool" value="false"/> - </property> - <property name="icon-size" type="empty"/> - <property name="tooltip-size" type="empty"/> - </property> - - <property name="desktop-menu" type="empty"> - <property name="show" type="bool" value="false"/> - </property> - - <property name="windowlist-menu" type="empty"> - <property name="show" type="bool" value="false"/> - </property> - - <property name="last" type="empty"> - <property name="window-width" type="int" value="561"/> - <property name="window-height" type="int" value="545"/> - </property> -</channel> diff --git a/live_exam_os/config/02-customisation/etc/xdg/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml b/live_exam_os/config/02-customisation/etc/xdg/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml deleted file mode 100644 index 9d2eef741163bc10011ed5706ba05c7c418a307a..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/etc/xdg/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml +++ /dev/null @@ -1,79 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> - -<channel name="xfce4-panel" version="1.0"> - <property name="configver" type="int" value="2"/> - <property name="panels" type="array"> - <value type="int" value="1"/> - <property name="dark-mode" type="bool" value="true"/> - <property name="panel-1" type="empty"> - <property name="position" type="string" value="p=6;x=0;y=0"/> - <property name="length" type="uint" value="100"/> - <property name="position-locked" type="bool" value="true"/> - <property name="icon-size" type="uint" value="16"/> - <property name="size" type="uint" value="26"/> - <property name="plugin-ids" type="array"> - <value type="int" value="1"/> - <value type="int" value="2"/> - <value type="int" value="3"/> - <value type="int" value="5"/> - <value type="int" value="6"/> - <value type="int" value="8"/> - <value type="int" value="10"/> - <value type="int" value="11"/> - <value type="int" value="12"/> - <value type="int" value="13"/> - <value type="int" value="14"/> - </property> - </property> - </property> - <property name="plugins" type="empty"> - <property name="plugin-1" type="string" value="applicationsmenu"> - <property name="show-button-title" type="bool" value="false"/> - </property> - <property name="plugin-2" type="string" value="tasklist"> - <property name="grouping" type="uint" value="1"/> - </property> - <property name="plugin-3" type="string" value="separator"> - <property name="expand" type="bool" value="true"/> - <property name="style" type="uint" value="0"/> - </property> - <property name="plugin-5" type="string" value="separator"> - <property name="style" type="uint" value="0"/> - </property> - <property name="plugin-6" type="string" value="systray"> - <property name="square-icons" type="bool" value="true"/> - <property name="known-legacy-items" type="array"> - <value type="string" value="applet networkmanager"/> - </property> - </property> - <property name="plugin-8" type="string" value="pulseaudio"> - <property name="enable-keyboard-shortcuts" type="bool" value="true"/> - <property name="show-notifications" type="bool" value="true"/> - </property> - <property name="plugin-9" type="string" value="power-manager-plugin"/> - <property name="plugin-10" type="string" value="notification-plugin"/> - <property name="plugin-11" type="string" value="separator"> - <property name="style" type="uint" value="0"/> - </property> - <property name="plugin-12" type="string" value="clock"/> - <property name="plugin-13" type="string" value="separator"> - <property name="style" type="uint" value="0"/> - </property> - <property name="plugin-14" type="string" value="actions"> - <property name="items" type="array"> - <value type="string" value="+lock-screen"/> - <value type="string" value="-switch-user"/> - <value type="string" value="+separator"/> - <value type="string" value="+suspend"/> - <value type="string" value="-hibernate"/> - <value type="string" value="-hybrid-sleep"/> - <value type="string" value="-separator"/> - <value type="string" value="+shutdown"/> - <value type="string" value="-restart"/> - <value type="string" value="+separator"/> - <value type="string" value="+logout"/> - <value type="string" value="-logout-dialog"/> - </property> - </property> - </property> -</channel> diff --git a/live_exam_os/config/02-customisation/etc/xdg/xfce4/xfconf/xfce-perchannel-xml/xfce4-power-manager.xml b/live_exam_os/config/02-customisation/etc/xdg/xfce4/xfconf/xfce-perchannel-xml/xfce4-power-manager.xml deleted file mode 100644 index 3b653cd2c1133248cead5c0ec1304fe437c4df4a..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/etc/xdg/xfce4/xfconf/xfce-perchannel-xml/xfce4-power-manager.xml +++ /dev/null @@ -1,8 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> - -<channel name="xfce4-power-manager" version="1.0"> - <property name="xfce4-power-manager" type="empty"> - <property name="power-button-action" type="uint" value="3"/> - <property name="dpms-enabled" type="bool" value="false"/> - </property> -</channel> diff --git a/live_exam_os/config/02-customisation/etc/xdg/xfce4/xfconf/xfce-perchannel-xml/xfce4-settings-manager.xml b/live_exam_os/config/02-customisation/etc/xdg/xfce4/xfconf/xfce-perchannel-xml/xfce4-settings-manager.xml deleted file mode 100644 index 25ea3a54b0b7d94862eb402c9d317f97d6944f22..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/etc/xdg/xfce4/xfconf/xfce-perchannel-xml/xfce4-settings-manager.xml +++ /dev/null @@ -1,8 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> - -<channel name="xfce4-settings-manager" version="1.0"> - <property name="last" type="empty"> - <property name="window-width" type="int" value="642"/> - <property name="window-height" type="int" value="500"/> - </property> -</channel> diff --git a/live_exam_os/config/02-customisation/etc/xdg/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml b/live_exam_os/config/02-customisation/etc/xdg/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml deleted file mode 100644 index 93bedf19a5744a1a15179581e14693ba87be5c11..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/etc/xdg/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml +++ /dev/null @@ -1,86 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> - -<channel name="xfwm4" version="1.0"> - <property name="general" type="empty"> - <property name="activate_action" type="string" value="bring"/> - <property name="box_move" type="bool" value="false"/> - <property name="box_resize" type="bool" value="false"/> - <property name="button_layout" type="string" value="O|HMC"/> - <property name="button_offset" type="int" value="0"/> - <property name="button_spacing" type="int" value="0"/> - <property name="click_to_focus" type="bool" value="true"/> - <property name="cycle_apps_only" type="bool" value="false"/> - <property name="cycle_draw_frame" type="bool" value="true"/> - <property name="cycle_preview" type="bool" value="true"/> - <property name="double_click_distance" type="int" value="5"/> - <property name="double_click_time" type="int" value="250"/> - <property name="focus_delay" type="int" value="250"/> - <property name="focus_new" type="bool" value="true"/> - <property name="frame_opacity" type="int" value="100"/> - <property name="full_width_title" type="bool" value="true"/> - <property name="maximized_offset" type="int" value="0"/> - <property name="mousewheel_rollup" type="bool" value="true"/> - <property name="placement_mode" type="string" value="center"/> - <property name="raise_delay" type="int" value="250"/> - <property name="raise_on_click" type="bool" value="true"/> - <property name="raise_on_focus" type="bool" value="false"/> - <property name="repeat_urgent_blink" type="bool" value="false"/> - <property name="scroll_workspaces" type="bool" value="true"/> - <property name="shadow_delta_height" type="int" value="0"/> - <property name="shadow_delta_width" type="int" value="0"/> - <property name="shadow_delta_x" type="int" value="0"/> - <property name="shadow_delta_y" type="int" value="-3"/> - <property name="shadow_opacity" type="int" value="50"/> - <property name="show_app_icon" type="bool" value="false"/> - <property name="show_dock_shadow" type="bool" value="true"/> - <property name="show_frame_shadow" type="bool" value="true"/> - <property name="show_popup_shadow" type="bool" value="false"/> - <property name="snap_to_border" type="bool" value="true"/> - <property name="snap_to_windows" type="bool" value="false"/> - <property name="snap_width" type="int" value="10"/> - <property name="theme" type="string" value="Daloa"/> - <property name="title_alignment" type="string" value="center"/> - <property name="title_font" type="string" value="Sans Bold 9"/> - <property name="title_horizontal_offset" type="int" value="0"/> - <property name="title_shadow_active" type="string" value="false"/> - <property name="title_shadow_inactive" type="string" value="false"/> - <property name="title_vertical_offset_active" type="int" value="0"/> - <property name="title_vertical_offset_inactive" type="int" value="0"/> - <property name="urgent_blink" type="bool" value="false"/> - <property name="use_compositing" type="bool" value="true"/> - <property name="workspace_count" type="int" value="1"/> - <property name="wrap_resistance" type="int" value="10"/> - <property name="wrap_windows" type="empty"/> - <property name="wrap_workspaces" type="bool" value="false"/> - <property name="borderless_maximize" type="empty"/> - <property name="cycle_raise" type="empty"/> - <property name="cycle_hidden" type="empty"/> - <property name="cycle_minimum" type="empty"/> - <property name="cycle_minimized" type="empty"/> - <property name="cycle_tabwin_mode" type="empty"/> - <property name="cycle_workspaces" type="empty"/> - <property name="double_click_action" type="empty"/> - <property name="easy_click" type="empty"/> - <property name="focus_hint" type="empty"/> - <property name="frame_border_top" type="empty"/> - <property name="horiz_scroll_opacity" type="empty"/> - <property name="inactive_opacity" type="empty"/> - <property name="move_opacity" type="empty"/> - <property name="placement_ratio" type="empty"/> - <property name="popup_opacity" type="empty"/> - <property name="prevent_focus_stealing" type="empty"/> - <property name="raise_with_any_button" type="empty"/> - <property name="resize_opacity" type="empty"/> - <property name="snap_resist" type="empty"/> - <property name="vblank_mode" type="empty"/> - <property name="tile_on_move" type="empty"/> - <property name="titleless_maximize" type="empty"/> - <property name="toggle_workspaces" type="empty"/> - <property name="unredirect_overlays" type="empty"/> - <property name="wrap_cycle" type="empty"/> - <property name="wrap_layout" type="empty"/> - <property name="zoom_desktop" type="empty"/> - <property name="zoom_pointer" type="empty"/> - <property name="workspace_names" type="empty"/> - </property> -</channel> diff --git a/live_exam_os/config/02-customisation/home/user/.config/dconf/user b/live_exam_os/config/02-customisation/home/user/.config/dconf/user deleted file mode 100644 index fb5483eff3491903aa928393399f2fc5e72ac1fd..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/home/user/.config/dconf/user and /dev/null differ diff --git a/live_exam_os/config/02-customisation/home/user/.profile b/live_exam_os/config/02-customisation/home/user/.profile deleted file mode 100644 index fecabe0d3d60460df4510a1265a496cacdd0b8b7..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/home/user/.profile +++ /dev/null @@ -1,5 +0,0 @@ -while [ ! -e /dev/dri/card* ]; do - sleep 1 -done - -startx && poweroff diff --git a/live_exam_os/config/02-customisation/home/user/.xinitrc b/live_exam_os/config/02-customisation/home/user/.xinitrc deleted file mode 100644 index ff8a1e5c3505c3bcec8f9d3f54f3524244319cfc..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/home/user/.xinitrc +++ /dev/null @@ -1 +0,0 @@ -exec startxfce4 diff --git a/live_exam_os/config/02-customisation/home/user/Desktop/nexus-exam.desktop b/live_exam_os/config/02-customisation/home/user/Desktop/nexus-exam.desktop deleted file mode 120000 index e6562d422ee2e457b90cc65137433c4ce016b387..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/home/user/Desktop/nexus-exam.desktop +++ /dev/null @@ -1 +0,0 @@ -../../../usr/local/bin/nexus-exam.desktop \ No newline at end of file diff --git a/live_exam_os/config/02-customisation/usr/local/bin/nexus-exam.desktop b/live_exam_os/config/02-customisation/usr/local/bin/nexus-exam.desktop deleted file mode 100755 index 197cb565b96102fd5e8634ed2f67433485fb4421..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/local/bin/nexus-exam.desktop +++ /dev/null @@ -1,5 +0,0 @@ -[Desktop Entry] -Type=Application -Name=nexus-exam -Exec=/usr/local/bin/nexus-exam -Icon=preferences-desktop-remote-desktop diff --git a/live_exam_os/config/02-customisation/usr/share/backgrounds/xfce/xfce-shapes.svg b/live_exam_os/config/02-customisation/usr/share/backgrounds/xfce/xfce-shapes.svg deleted file mode 100644 index b45cea915c496e54843af59683582eec6cf29c98..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/backgrounds/xfce/xfce-shapes.svg +++ /dev/null @@ -1,4 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- Do not edit this file with editors other than draw.io --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="2px" height="2px" viewBox="-0.5 -0.5 2 2" content="<mxfile host="Electron" agent="Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) draw.io/24.7.8 Chrome/128.0.6613.36 Electron/32.0.1 Safari/537.36" version="24.7.8" scale="1" border="0"> <diagram name="Page-1" id="tK3Q1kdH3rO5AoC3ZQEa"> <mxGraphModel dx="31" dy="13" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="850" pageHeight="1100" math="0" shadow="0"> <root> <mxCell id="0" /> <mxCell id="1" parent="0" /> <mxCell id="2" value="" style="verticalLabelPosition=bottom;verticalAlign=top;shape=mxgraph.basic.rect;fillColor2=none;strokeWidth=1;size=0.46;indent=5;fillColor=#000000;strokeColor=default;fontColor=none;noLabel=1;" vertex="1" parent="1"> <mxGeometry x="1" y="1" width="1" height="1" as="geometry" /> </mxCell> </root> </mxGraphModel> </diagram> </mxfile> "><defs/><g><g data-cell-id="0"><g data-cell-id="1"><g data-cell-id="2"><g><path d="M 0 0 L 1 0 L 1 1 L 0 1 L 0 0 Z" fill="#000000" stroke="none" pointer-events="all"/><path d="M 0.04 0.04 L 0.04 0.96 L 0.04 0.96 L 0.96 0.96 L 0.96 0.04 L 0.04 0.04" fill="none" stroke="none" pointer-events="all"/><path d="M 0 0 L 1 0 L 1 1 L 0 1 L 0 0 Z" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/></g></g></g></g></g></svg> \ No newline at end of file diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/README b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/README deleted file mode 100644 index 0ba551620417658ecf5de6739267df429a693098..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/README +++ /dev/null @@ -1,10 +0,0 @@ -Daloa ------ - -An original theme for xfwm4. -Created May 2006 by Mike Massonnet <mmassonnet@gmail.com> -Modified June 2006 by Olivier Fourdan <fourdan@xfce.org> -Redone in SVG, Nov 2006 by Olivier Fourdan <fourdan@xfce.org>. -Based on xfwm4 4.4 Default theme. - -Theme released under GNU GPL license. diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/bottom-active.png b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/bottom-active.png deleted file mode 100644 index 8ada929102d6f5cc2dbe3fea04eb880130bfd08e..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/bottom-active.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/bottom-active.xpm b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/bottom-active.xpm deleted file mode 100644 index 9f0dc6ea604792f4dc9e4daad444dd12bc5d8ee3..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/bottom-active.xpm +++ /dev/null @@ -1,13 +0,0 @@ -/* XPM */ -static char * bottom_active_xpm[] = { -"24 5 5 1", -" c None", -"+ c #E0E0FF s active_hilight_1", -"@ c #A0A0FF s active_shadow_1", -"$ c #B0B0B0 s active_mid_2", -"# c #C0C0C0 s active_color_2", -"########################", -"########################", -"########################", -"++++++++++++++++++++++++", -"@@@@@@@@@@@@@@@@@@@@@@@@"}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/bottom-inactive.png b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/bottom-inactive.png deleted file mode 100644 index 8ada929102d6f5cc2dbe3fea04eb880130bfd08e..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/bottom-inactive.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/bottom-inactive.xpm b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/bottom-inactive.xpm deleted file mode 100644 index 845fae7082eb5acff60b53a6ee0255a60067fcf9..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/bottom-inactive.xpm +++ /dev/null @@ -1,13 +0,0 @@ -/* XPM */ -static char * bottom_inactive_xpm[] = { -"24 5 5 1", -" c None", -"+ c #E0E0FF s inactive_hilight_1", -"@ c #A0A0FF s inactive_shadow_1", -"$ c #B0B0B0 s inactive_mid_2", -"# c #C0C0C0 s inactive_color_2", -"########################", -"########################", -"########################", -"++++++++++++++++++++++++", -"@@@@@@@@@@@@@@@@@@@@@@@@"}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/bottom-left-active.png b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/bottom-left-active.png deleted file mode 100644 index 3b9e9f81250acd32eb52d467c24ff6ae0760bd3a..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/bottom-left-active.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/bottom-left-active.xpm b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/bottom-left-active.xpm deleted file mode 100644 index 33db4f0daa7e5c99e66daabe42361ddf2f313658..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/bottom-left-active.xpm +++ /dev/null @@ -1,24 +0,0 @@ -/* XPM */ -static char * bottom_left_active_xpm[] = { -"16 16 5 1", -" c None", -"+ c #E0E0FF s active_hilight_1", -"@ c #A0A0FF s active_shadow_1", -"$ c #B0B0B0 s active_mid_2", -"# c #C0C0C0 s active_color_2", -"@+### ", -"@+### ", -"@+### ", -"@+### ", -"@+### ", -"@+### ", -"@+### ", -"@+### ", -"@+### ", -"@+### ", -"@+### ", -"@+##############", -"@+##############", -"@+##############", -"@+++++++++++++++", -" @@@@@@@@@@@@@@@"}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/bottom-left-inactive.png b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/bottom-left-inactive.png deleted file mode 100644 index 3b9e9f81250acd32eb52d467c24ff6ae0760bd3a..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/bottom-left-inactive.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/bottom-left-inactive.xpm b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/bottom-left-inactive.xpm deleted file mode 100644 index 97465e3916a9493b77437623c39e44bf3728924e..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/bottom-left-inactive.xpm +++ /dev/null @@ -1,24 +0,0 @@ -/* XPM */ -static char * bottom_left_inactive_xpm[] = { -"16 16 5 1", -" c None", -"+ c #E0E0FF s inactive_hilight_1", -"@ c #A0A0FF s inactive_shadow_1", -"$ c #B0B0B0 s inactive_mid_2", -"# c #C0C0C0 s inactive_color_2", -"@+### ", -"@+### ", -"@+### ", -"@+### ", -"@+### ", -"@+### ", -"@+### ", -"@+### ", -"@+### ", -"@+### ", -"@+### ", -"@+##############", -"@+##############", -"@+##############", -"@+++++++++++++++", -" @@@@@@@@@@@@@@@"}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/bottom-right-active.png b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/bottom-right-active.png deleted file mode 100644 index a4a8290408b73aa804b839d9605906cafd0928e5..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/bottom-right-active.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/bottom-right-active.xpm b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/bottom-right-active.xpm deleted file mode 100644 index 1a16e8c5d8c007032601326a8ad9770e23ed98e8..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/bottom-right-active.xpm +++ /dev/null @@ -1,24 +0,0 @@ -/* XPM */ -static char * bottom_right_active_xpm[] = { -"16 16 5 1", -" c None", -"+ c #E0E0FF s active_hilight_1", -"@ c #A0A0FF s active_shadow_1", -"$ c #B0B0B0 s active_mid_2", -"# c #C0C0C0 s active_color_2", -" ###+@", -" ###+@", -" ###+@", -" ###+@", -" ###+@", -" ###+@", -" ###+@", -" ###+@", -" ###+@", -" ###+@", -" ###+@", -"##############+@", -"##############+@", -"##############+@", -"+++++++++++++++@", -"@@@@@@@@@@@@@@@ "}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/bottom-right-inactive.png b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/bottom-right-inactive.png deleted file mode 100644 index a4a8290408b73aa804b839d9605906cafd0928e5..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/bottom-right-inactive.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/bottom-right-inactive.xpm b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/bottom-right-inactive.xpm deleted file mode 100644 index 9047eb6dc0b59d1a040836a5d447b25e09c7ae6f..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/bottom-right-inactive.xpm +++ /dev/null @@ -1,24 +0,0 @@ -/* XPM */ -static char * bottom_right_inactive_xpm[] = { -"16 16 5 1", -" c None", -"+ c #E0E0FF s inactive_hilight_1", -"@ c #A0A0FF s inactive_shadow_1", -"$ c #B0B0B0 s inactive_mid_2", -"# c #C0C0C0 s inactive_color_2", -" ###+@", -" ###+@", -" ###+@", -" ###+@", -" ###+@", -" ###+@", -" ###+@", -" ###+@", -" ###+@", -" ###+@", -" ###+@", -"##############+@", -"##############+@", -"##############+@", -"+++++++++++++++@", -"@@@@@@@@@@@@@@@ "}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/close-active.png b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/close-active.png deleted file mode 100644 index 9476859cf75dcdd2430e8e0f74d29b67b2b7df9f..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/close-active.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/close-active.xpm b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/close-active.xpm deleted file mode 100644 index cad39f277fa404ca6c85f3119ca083d019358fef..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/close-active.xpm +++ /dev/null @@ -1,24 +0,0 @@ -/* XPM */ -static char * close_active_xpm[] = { -"24 19 2 1", -" c None", -". c #C0C0FF s active_color_1", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -" "}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/close-inactive.png b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/close-inactive.png deleted file mode 100644 index 7ebe832cae4c504ae5a863f1340bc4fab9176245..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/close-inactive.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/close-inactive.xpm b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/close-inactive.xpm deleted file mode 100644 index 4dbc94f6802617bb03a1afce3dcdd100bf9b2f93..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/close-inactive.xpm +++ /dev/null @@ -1,24 +0,0 @@ -/* XPM */ -static char * close_inactive_xpm[] = { -"24 19 2 1", -" c None", -". c #C0C0FF s inactive_color_1", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -" "}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/close-prelight.png b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/close-prelight.png deleted file mode 100644 index e708929654301380684653764dea47f6bb7c2d2f..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/close-prelight.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/close-prelight.xpm b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/close-prelight.xpm deleted file mode 100644 index b2bedbba552903f2ff8e286cb5a785d26a8f6843..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/close-prelight.xpm +++ /dev/null @@ -1,24 +0,0 @@ -/* XPM */ -static char * close_pressed_xpm[] = { -"24 19 2 1", -" c None", -". c #C0C0FF s active_color_1", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -" "}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/close-pressed.png b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/close-pressed.png deleted file mode 100644 index bb0dd68ee5dfecc7bea926f805c4ce2c00ddf443..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/close-pressed.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/close-pressed.xpm b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/close-pressed.xpm deleted file mode 100644 index b2bedbba552903f2ff8e286cb5a785d26a8f6843..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/close-pressed.xpm +++ /dev/null @@ -1,24 +0,0 @@ -/* XPM */ -static char * close_pressed_xpm[] = { -"24 19 2 1", -" c None", -". c #C0C0FF s active_color_1", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -" "}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/hide-active.png b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/hide-active.png deleted file mode 100644 index f1fb15384acd538881c018e8824fe4c4c0e445d3..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/hide-active.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/hide-active.xpm b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/hide-active.xpm deleted file mode 100644 index 1cf3332866141768e966096ca1cab1e3e0120bd2..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/hide-active.xpm +++ /dev/null @@ -1,24 +0,0 @@ -/* XPM */ -static char * hide_active_xpm[] = { -"24 19 2 1", -" c None", -". c #C0C0FF s active_color_1", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -" "}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/hide-inactive.png b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/hide-inactive.png deleted file mode 100644 index 2853f52a7acb27cbee7e60c77ef8f5309214a8e3..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/hide-inactive.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/hide-inactive.xpm b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/hide-inactive.xpm deleted file mode 100644 index c7ba106d20af916c5bec88ea96cfda39824b4c06..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/hide-inactive.xpm +++ /dev/null @@ -1,24 +0,0 @@ -/* XPM */ -static char * hide_inactive_xpm[] = { -"24 19 2 1", -" c None", -". c #C0C0FF s inactive_color_1", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -" "}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/hide-prelight.png b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/hide-prelight.png deleted file mode 100644 index 28d6f5cbf0996ae979f264a8d598966830729b1c..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/hide-prelight.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/hide-prelight.xpm b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/hide-prelight.xpm deleted file mode 100644 index f8c34cf0b96668dd03a34536003ff46588800506..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/hide-prelight.xpm +++ /dev/null @@ -1,24 +0,0 @@ -/* XPM */ -static char * hide_pressed_xpm[] = { -"24 19 2 1", -" c None", -". c #C0C0FF s active_color_1", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -" "}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/hide-pressed.png b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/hide-pressed.png deleted file mode 100644 index c6afcdd72088d589564d082b904c3f34314fa900..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/hide-pressed.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/hide-pressed.xpm b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/hide-pressed.xpm deleted file mode 100644 index f8c34cf0b96668dd03a34536003ff46588800506..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/hide-pressed.xpm +++ /dev/null @@ -1,24 +0,0 @@ -/* XPM */ -static char * hide_pressed_xpm[] = { -"24 19 2 1", -" c None", -". c #C0C0FF s active_color_1", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -" "}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/left-active.png b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/left-active.png deleted file mode 100644 index 4040e57358789c8cb06764aec4395cbfc2e824cc..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/left-active.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/left-active.xpm b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/left-active.xpm deleted file mode 100644 index 8af6328b7aee269af88dfaea649abab687988042..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/left-active.xpm +++ /dev/null @@ -1,32 +0,0 @@ -/* XPM */ -static char * left_active_xpm[] = { -"5 24 5 1", -" c None", -"+ c #E0E0FF s active_hilight_1", -"@ c #A0A0FF s active_shadow_1", -"$ c #B0B0B0 s active_mid_2", -"# c #C0C0C0 s active_color_2", -"@+###", -"@+###", -"@+###", -"@+###", -"@+###", -"@+###", -"@+###", -"@+###", -"@+###", -"@+###", -"@+###", -"@+###", -"@+###", -"@+###", -"@+###", -"@+###", -"@+###", -"@+###", -"@+###", -"@+###", -"@+###", -"@+###", -"@+###", -"@+###"}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/left-inactive.png b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/left-inactive.png deleted file mode 100644 index 4040e57358789c8cb06764aec4395cbfc2e824cc..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/left-inactive.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/left-inactive.xpm b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/left-inactive.xpm deleted file mode 100644 index 18997b2f47ea61ab8949ddbcc18fba596fe48648..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/left-inactive.xpm +++ /dev/null @@ -1,32 +0,0 @@ -/* XPM */ -static char * left_inactive_xpm[] = { -"5 24 5 1", -" c None", -"+ c #E0E0FF s inactive_hilight_1", -"@ c #A0A0FF s inactive_shadow_1", -"$ c #B0B0B0 s inactive_mid_2", -"# c #C0C0C0 s inactive_color_2", -"@+###", -"@+###", -"@+###", -"@+###", -"@+###", -"@+###", -"@+###", -"@+###", -"@+###", -"@+###", -"@+###", -"@+###", -"@+###", -"@+###", -"@+###", -"@+###", -"@+###", -"@+###", -"@+###", -"@+###", -"@+###", -"@+###", -"@+###", -"@+###"}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/maximize-active.png b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/maximize-active.png deleted file mode 100644 index ace39e6e8e3d2344586438f2372eb5dfad351de9..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/maximize-active.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/maximize-active.xpm b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/maximize-active.xpm deleted file mode 100644 index 89bfb3508895ac11668893d90f6902a85d201e8d..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/maximize-active.xpm +++ /dev/null @@ -1,24 +0,0 @@ -/* XPM */ -static char * maximize_active_xpm[] = { -"24 19 2 1", -" c None", -". c #C0C0FF s active_color_1", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -" "}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/maximize-inactive.png b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/maximize-inactive.png deleted file mode 100644 index 8c5a62417aa2217f5bc2e3bc2d43578f2b2ba7cf..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/maximize-inactive.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/maximize-inactive.xpm b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/maximize-inactive.xpm deleted file mode 100644 index 3e53a64bc367c00eacbb8bc4d29a011aba539a10..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/maximize-inactive.xpm +++ /dev/null @@ -1,24 +0,0 @@ -/* XPM */ -static char * maximize_inactive_xpm[] = { -"24 19 2 1", -" c None", -". c #C0C0FF s inactive_color_1", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -" "}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/maximize-prelight.png b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/maximize-prelight.png deleted file mode 100644 index 21ab6b74b0540e4a53887bcbe350fd67408339a5..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/maximize-prelight.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/maximize-prelight.xpm b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/maximize-prelight.xpm deleted file mode 100644 index 921aab71c625c1ee53e4c3b3178482119c8664fe..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/maximize-prelight.xpm +++ /dev/null @@ -1,24 +0,0 @@ -/* XPM */ -static char * maximize_pressed_xpm[] = { -"24 19 2 1", -" c None", -". c #C0C0FF s active_color_1", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -" "}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/maximize-pressed.png b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/maximize-pressed.png deleted file mode 100644 index 6ac3c103f46a57c947c80af6f43bda5667882fc6..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/maximize-pressed.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/maximize-pressed.xpm b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/maximize-pressed.xpm deleted file mode 100644 index 921aab71c625c1ee53e4c3b3178482119c8664fe..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/maximize-pressed.xpm +++ /dev/null @@ -1,24 +0,0 @@ -/* XPM */ -static char * maximize_pressed_xpm[] = { -"24 19 2 1", -" c None", -". c #C0C0FF s active_color_1", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -" "}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/maximize-toggled-active.png b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/maximize-toggled-active.png deleted file mode 100644 index 5164bfee14ceaab77079f90fc034c016b3de13a0..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/maximize-toggled-active.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/maximize-toggled-active.xpm b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/maximize-toggled-active.xpm deleted file mode 100644 index 716034b2cbdb87fe54cfe5211e9800078bc6af19..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/maximize-toggled-active.xpm +++ /dev/null @@ -1,24 +0,0 @@ -/* XPM */ -static char * maximize_toggled_active_xpm[] = { -"24 19 2 1", -" c None", -". c #C0C0FF s active_color_1", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -" "}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/maximize-toggled-inactive.png b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/maximize-toggled-inactive.png deleted file mode 100644 index 443a96bd20296db84b698c484945bc0c2a3f5e29..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/maximize-toggled-inactive.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/maximize-toggled-inactive.xpm b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/maximize-toggled-inactive.xpm deleted file mode 100644 index ec0a9bc4cb56b6bce49e3f61ddc3c54b15bcedc6..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/maximize-toggled-inactive.xpm +++ /dev/null @@ -1,24 +0,0 @@ -/* XPM */ -static char * maximize_toggled_inactive_xpm[] = { -"24 19 2 1", -" c None", -". c #C0C0FF s inactive_color_1", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -" "}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/maximize-toggled-prelight.png b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/maximize-toggled-prelight.png deleted file mode 100644 index 7c3d60a2e1d44cdcbd3d8f3c3ac5cd0b489b4848..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/maximize-toggled-prelight.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/maximize-toggled-prelight.xpm b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/maximize-toggled-prelight.xpm deleted file mode 100644 index 35b929d77c30e8b1eac58b3e563924c6a74b744f..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/maximize-toggled-prelight.xpm +++ /dev/null @@ -1,24 +0,0 @@ -/* XPM */ -static char * maximize_toggled_pressed_xpm[] = { -"24 19 2 1", -" c None", -". c #C0C0FF s active_color_1", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -" "}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/maximize-toggled-pressed.png b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/maximize-toggled-pressed.png deleted file mode 100644 index 11f7e86efffaa4a21ee385d72a2ff4e5ddb87eaa..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/maximize-toggled-pressed.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/maximize-toggled-pressed.xpm b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/maximize-toggled-pressed.xpm deleted file mode 100644 index 35b929d77c30e8b1eac58b3e563924c6a74b744f..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/maximize-toggled-pressed.xpm +++ /dev/null @@ -1,24 +0,0 @@ -/* XPM */ -static char * maximize_toggled_pressed_xpm[] = { -"24 19 2 1", -" c None", -". c #C0C0FF s active_color_1", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -" "}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/menu-active.png b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/menu-active.png deleted file mode 100644 index c25ab44c8368bd699d4c9a215bd941cf40ff265f..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/menu-active.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/menu-active.xpm b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/menu-active.xpm deleted file mode 100644 index 1a243a4c15105f7c480b674fc6d6dcabf0d7b382..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/menu-active.xpm +++ /dev/null @@ -1,21 +0,0 @@ -/* XPM */ -static char * menu_active_xpm[] = { -"24 16 2 1", -" c None", -". c #C0C0FF s active_color_1", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................"}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/menu-inactive.png b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/menu-inactive.png deleted file mode 100644 index c25ab44c8368bd699d4c9a215bd941cf40ff265f..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/menu-inactive.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/menu-inactive.xpm b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/menu-inactive.xpm deleted file mode 100644 index a09d91c97fbf3af301fadb22732908b2b6502935..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/menu-inactive.xpm +++ /dev/null @@ -1,21 +0,0 @@ -/* XPM */ -static char * menu_inactive_xpm[] = { -"24 16 2 1", -" c None", -". c #C0C0FF s inactive_color_1", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................"}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/menu-prelight.png b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/menu-prelight.png deleted file mode 100644 index cd9e0e0652d3820ee282935135064970d9cda128..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/menu-prelight.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/menu-prelight.xpm b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/menu-prelight.xpm deleted file mode 100644 index 84a25aeede8ab23054e35f8d7a530f15eb0d873f..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/menu-prelight.xpm +++ /dev/null @@ -1,21 +0,0 @@ -/* XPM */ -static char * menu_pressed_xpm[] = { -"24 16 2 1", -" c None", -". c #C0C0FF s active_color_1", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................"}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/menu-pressed.png b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/menu-pressed.png deleted file mode 100644 index 0a6bae6eb1f1d8a6fb5186bbdde8363372e1fb2d..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/menu-pressed.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/menu-pressed.xpm b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/menu-pressed.xpm deleted file mode 100644 index 84a25aeede8ab23054e35f8d7a530f15eb0d873f..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/menu-pressed.xpm +++ /dev/null @@ -1,21 +0,0 @@ -/* XPM */ -static char * menu_pressed_xpm[] = { -"24 16 2 1", -" c None", -". c #C0C0FF s active_color_1", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................"}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/right-active.png b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/right-active.png deleted file mode 100644 index 91e31c901423fce24dc9681b73350312276eb06e..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/right-active.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/right-active.xpm b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/right-active.xpm deleted file mode 100644 index 7b9f6b926b1c4afb23f6454981d1535e0fd9863e..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/right-active.xpm +++ /dev/null @@ -1,32 +0,0 @@ -/* XPM */ -static char * right_active_xpm[] = { -"5 24 5 1", -" c None", -"+ c #E0E0FF s active_hilight_1", -"@ c #A0A0FF s active_shadow_1", -"$ c #B0B0B0 s active_mid_2", -"# c #C0C0C0 s active_color_2", -"###+@", -"###+@", -"###+@", -"###+@", -"###+@", -"###+@", -"###+@", -"###+@", -"###+@", -"###+@", -"###+@", -"###+@", -"###+@", -"###+@", -"###+@", -"###+@", -"###+@", -"###+@", -"###+@", -"###+@", -"###+@", -"###+@", -"###+@", -"###+@"}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/right-inactive.png b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/right-inactive.png deleted file mode 100644 index 91e31c901423fce24dc9681b73350312276eb06e..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/right-inactive.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/right-inactive.xpm b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/right-inactive.xpm deleted file mode 100644 index 38e76c2ff040a53aa1a6268d942a0b1e7cf4597f..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/right-inactive.xpm +++ /dev/null @@ -1,32 +0,0 @@ -/* XPM */ -static char * right_inactive_xpm[] = { -"5 24 5 1", -" c None", -"+ c #E0E0FF s inactive_hilight_1", -"@ c #A0A0FF s inactive_shadow_1", -"$ c #B0B0B0 s inactive_mid_2", -"# c #C0C0C0 s inactive_color_2", -"###+@", -"###+@", -"###+@", -"###+@", -"###+@", -"###+@", -"###+@", -"###+@", -"###+@", -"###+@", -"###+@", -"###+@", -"###+@", -"###+@", -"###+@", -"###+@", -"###+@", -"###+@", -"###+@", -"###+@", -"###+@", -"###+@", -"###+@", -"###+@"}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/shade-active.png b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/shade-active.png deleted file mode 100644 index 73b1476cfeea9d2b950b14878b0f8beed2d68c96..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/shade-active.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/shade-active.xpm b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/shade-active.xpm deleted file mode 100644 index ff55801730378ce682ec30e8b4c5f7a70dbc9c4c..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/shade-active.xpm +++ /dev/null @@ -1,24 +0,0 @@ -/* XPM */ -static char * shade_active_xpm[] = { -"24 19 2 1", -" c None", -". c #C0C0FF s active_color_1", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -" "}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/shade-inactive.png b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/shade-inactive.png deleted file mode 100644 index 4bc5956e38b3fd2897dc80f8a2c8dc877664cd5f..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/shade-inactive.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/shade-inactive.xpm b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/shade-inactive.xpm deleted file mode 100644 index 596f0fa459b2aa4e82e68fee2cde3cc2ecaa10e4..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/shade-inactive.xpm +++ /dev/null @@ -1,24 +0,0 @@ -/* XPM */ -static char * shade_inactive_xpm[] = { -"24 19 2 1", -" c None", -". c #C0C0FF s inactive_color_1", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -" "}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/shade-prelight.png b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/shade-prelight.png deleted file mode 100644 index 5403d132c38083ca2d6cafd6a948aedb8f8a020d..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/shade-prelight.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/shade-prelight.xpm b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/shade-prelight.xpm deleted file mode 100644 index 3f018c92be4c2a87d661af20cc34aeb82b93769b..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/shade-prelight.xpm +++ /dev/null @@ -1,24 +0,0 @@ -/* XPM */ -static char * shade_pressed_xpm[] = { -"24 19 2 1", -" c None", -". c #C0C0FF s active_color_1", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -" "}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/shade-pressed.png b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/shade-pressed.png deleted file mode 100644 index 753127a44a833028f44b010ff8ed4c781fe66a2f..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/shade-pressed.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/shade-pressed.xpm b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/shade-pressed.xpm deleted file mode 100644 index 3f018c92be4c2a87d661af20cc34aeb82b93769b..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/shade-pressed.xpm +++ /dev/null @@ -1,24 +0,0 @@ -/* XPM */ -static char * shade_pressed_xpm[] = { -"24 19 2 1", -" c None", -". c #C0C0FF s active_color_1", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -" "}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/shade-toggled-active.png b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/shade-toggled-active.png deleted file mode 100644 index 09dbdd9e41fd9f718b775392c32ba55385807abb..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/shade-toggled-active.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/shade-toggled-active.xpm b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/shade-toggled-active.xpm deleted file mode 100644 index af734f9c15b016ccfbb417e5b5be4a436340732d..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/shade-toggled-active.xpm +++ /dev/null @@ -1,24 +0,0 @@ -/* XPM */ -static char * shade_toggled_active_xpm[] = { -"24 19 2 1", -" c None", -". c #C0C0FF s active_color_1", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -" "}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/shade-toggled-inactive.png b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/shade-toggled-inactive.png deleted file mode 100644 index 8ecaeebc009f996cefc61066d665b255b31272ec..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/shade-toggled-inactive.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/shade-toggled-inactive.xpm b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/shade-toggled-inactive.xpm deleted file mode 100644 index 0ef117155a9edb68dee23d191600c4201bd68791..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/shade-toggled-inactive.xpm +++ /dev/null @@ -1,24 +0,0 @@ -/* XPM */ -static char * shade_toggled_inactive_xpm[] = { -"24 19 2 1", -" c None", -". c #C0C0FF s inactive_color_1", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -" "}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/shade-toggled-prelight.png b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/shade-toggled-prelight.png deleted file mode 100644 index b3292c8dd0dea37443740f98874c254e31bbe83f..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/shade-toggled-prelight.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/shade-toggled-prelight.xpm b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/shade-toggled-prelight.xpm deleted file mode 100644 index 2670b1e9b63a9f0cff281aa33f3707ca67a0fec2..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/shade-toggled-prelight.xpm +++ /dev/null @@ -1,24 +0,0 @@ -/* XPM */ -static char * shade_toggled_pressed_xpm[] = { -"24 19 2 1", -" c None", -". c #C0C0FF s active_color_1", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -" "}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/shade-toggled-pressed.png b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/shade-toggled-pressed.png deleted file mode 100644 index f454097b35fab5224774bfbf9e7285e4181c2147..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/shade-toggled-pressed.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/shade-toggled-pressed.xpm b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/shade-toggled-pressed.xpm deleted file mode 100644 index 2670b1e9b63a9f0cff281aa33f3707ca67a0fec2..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/shade-toggled-pressed.xpm +++ /dev/null @@ -1,24 +0,0 @@ -/* XPM */ -static char * shade_toggled_pressed_xpm[] = { -"24 19 2 1", -" c None", -". c #C0C0FF s active_color_1", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -" "}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/stick-active.png b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/stick-active.png deleted file mode 100644 index 52c982129145faf6b5585510d337a6ebb96cd491..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/stick-active.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/stick-active.xpm b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/stick-active.xpm deleted file mode 100644 index e86acd6614dc1b9605fde1118ca89888aab4ba55..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/stick-active.xpm +++ /dev/null @@ -1,24 +0,0 @@ -/* XPM */ -static char * stick_active_xpm[] = { -"24 19 2 1", -" c None", -". c #C0C0FF s active_color_1", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -" "}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/stick-inactive.png b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/stick-inactive.png deleted file mode 100644 index 9f58ec6b63e5c38cbd5bfec44d01f721b6dad491..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/stick-inactive.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/stick-inactive.xpm b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/stick-inactive.xpm deleted file mode 100644 index b1b4f769bd64a593100e2a267ee5c1a8cd441dd9..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/stick-inactive.xpm +++ /dev/null @@ -1,24 +0,0 @@ -/* XPM */ -static char * stick_inactive_xpm[] = { -"24 19 2 1", -" c None", -". c #C0C0FF s inactive_color_1", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -" "}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/stick-prelight.png b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/stick-prelight.png deleted file mode 100644 index d47a15c264e9f6d9b1b7e3f08d13c6afa767f3c3..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/stick-prelight.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/stick-prelight.xpm b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/stick-prelight.xpm deleted file mode 100644 index b4b0c3dedd804b37458bd1f4e19618102572e740..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/stick-prelight.xpm +++ /dev/null @@ -1,24 +0,0 @@ -/* XPM */ -static char * stick_pressed_xpm[] = { -"24 19 2 1", -" c None", -". c #C0C0FF s active_color_1", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -" "}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/stick-pressed.png b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/stick-pressed.png deleted file mode 100644 index c521f2110dee78671594decdc09a252479c50cb5..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/stick-pressed.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/stick-pressed.xpm b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/stick-pressed.xpm deleted file mode 100644 index b4b0c3dedd804b37458bd1f4e19618102572e740..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/stick-pressed.xpm +++ /dev/null @@ -1,24 +0,0 @@ -/* XPM */ -static char * stick_pressed_xpm[] = { -"24 19 2 1", -" c None", -". c #C0C0FF s active_color_1", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -" "}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/stick-toggled-active.png b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/stick-toggled-active.png deleted file mode 100644 index 9a35d900055f8bea343bc1e25287d89439167def..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/stick-toggled-active.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/stick-toggled-active.xpm b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/stick-toggled-active.xpm deleted file mode 100644 index 00ba83ae2ab969242a9ce90134e48c7978c8a048..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/stick-toggled-active.xpm +++ /dev/null @@ -1,24 +0,0 @@ -/* XPM */ -static char * stick_toggled_active_xpm[] = { -"24 19 2 1", -" c None", -". c #C0C0FF s active_color_1", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -" "}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/stick-toggled-inactive.png b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/stick-toggled-inactive.png deleted file mode 100644 index f1c4a7866ce0acfee44ef7ad978abd858744ae3a..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/stick-toggled-inactive.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/stick-toggled-inactive.xpm b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/stick-toggled-inactive.xpm deleted file mode 100644 index 3c17d9ebf9c1a2099c4022b747a5bda11ba21e5b..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/stick-toggled-inactive.xpm +++ /dev/null @@ -1,24 +0,0 @@ -/* XPM */ -static char * stick_toggled_inactive_xpm[] = { -"24 19 2 1", -" c None", -". c #C0C0FF s inactive_color_1", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -" "}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/stick-toggled-prelight.png b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/stick-toggled-prelight.png deleted file mode 100644 index 66f50f89c26b97271d6fe737405a3cfc565a0169..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/stick-toggled-prelight.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/stick-toggled-prelight.xpm b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/stick-toggled-prelight.xpm deleted file mode 100644 index d51375c2e0484d14e6c98328cf26786c6a5eda0c..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/stick-toggled-prelight.xpm +++ /dev/null @@ -1,24 +0,0 @@ -/* XPM */ -static char * stick_toggled_pressed_xpm[] = { -"24 19 2 1", -" c None", -". c #C0C0FF s active_color_1", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -" "}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/stick-toggled-pressed.png b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/stick-toggled-pressed.png deleted file mode 100644 index 6aed33629c8dc960167d9596edd96a776efd4a11..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/stick-toggled-pressed.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/stick-toggled-pressed.xpm b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/stick-toggled-pressed.xpm deleted file mode 100644 index d51375c2e0484d14e6c98328cf26786c6a5eda0c..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/stick-toggled-pressed.xpm +++ /dev/null @@ -1,24 +0,0 @@ -/* XPM */ -static char * stick_toggled_pressed_xpm[] = { -"24 19 2 1", -" c None", -". c #C0C0FF s active_color_1", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -"........................", -" "}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/themerc b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/themerc deleted file mode 100644 index eef70cbf2389b7a70617f125c3d4018c7576abf2..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/themerc +++ /dev/null @@ -1,14 +0,0 @@ -active_text_color=#ffffff -button_offset=1 -button_spacing=-1 -maximized_offset=0 -shadow_delta_height=0 -shadow_delta_width=0 -shadow_delta_x=0 -shadow_delta_y=2 -show_app_icon=true -title_horizontal_offset=0 -title_shadow_active=frame -title_shadow_inactive=false -title_vertical_offset_active=1 -title_vertical_offset_inactive=1 diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/title-1-active.png b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/title-1-active.png deleted file mode 100644 index 5b761b2c028620e3fba2ef0d5ca9d601d91f444d..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/title-1-active.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/title-1-active.xpm b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/title-1-active.xpm deleted file mode 100644 index 77a3733b8537881c4f3a5383582bb16e5bd58d7d..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/title-1-active.xpm +++ /dev/null @@ -1,26 +0,0 @@ -/* XPM */ -static char * title_1_active_xpm[] = { -"4 19 4 1", -" c None", -". c #A0A0FF s active_shadow_1", -"+ c #D0D0FF s active_hilight_1", -"@ c #C0C0FF s active_color_1", -"....", -"++++", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@"}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/title-1-inactive.png b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/title-1-inactive.png deleted file mode 100644 index 5b761b2c028620e3fba2ef0d5ca9d601d91f444d..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/title-1-inactive.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/title-1-inactive.xpm b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/title-1-inactive.xpm deleted file mode 100644 index 04d5003fb545976279bead59e0cdde7c82df4edb..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/title-1-inactive.xpm +++ /dev/null @@ -1,26 +0,0 @@ -/* XPM */ -static char * title_1_inactive_xpm[] = { -"4 19 4 1", -" c None", -". c #A0A0FF s inactive_shadow_1", -"+ c #D0D0FF s inactive_hilight_1", -"@ c #C0C0FF s inactive_color_1", -"....", -"++++", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@"}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/title-2-active.png b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/title-2-active.png deleted file mode 100644 index 5b761b2c028620e3fba2ef0d5ca9d601d91f444d..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/title-2-active.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/title-2-active.xpm b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/title-2-active.xpm deleted file mode 100644 index 7562c6689c2a361bd0d4d8c6d00cf564daa412f0..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/title-2-active.xpm +++ /dev/null @@ -1,26 +0,0 @@ -/* XPM */ -static char * title_2_active_xpm[] = { -"4 19 4 1", -" c None", -". c #A0A0FF s active_shadow_1", -"+ c #D0D0FF s active_hilight_1", -"@ c #C0C0FF s active_color_1", -"....", -"++++", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@"}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/title-2-inactive.png b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/title-2-inactive.png deleted file mode 100644 index 5b761b2c028620e3fba2ef0d5ca9d601d91f444d..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/title-2-inactive.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/title-2-inactive.xpm b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/title-2-inactive.xpm deleted file mode 100644 index 409487ba1c9e25771c5ef9abef056880f04f42ec..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/title-2-inactive.xpm +++ /dev/null @@ -1,26 +0,0 @@ -/* XPM */ -static char * title_2_inactive_xpm[] = { -"4 19 4 1", -" c None", -". c #A0A0FF s inactive_shadow_1", -"+ c #D0D0FF s inactive_hilight_1", -"@ c #C0C0FF s inactive_color_1", -"....", -"++++", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@"}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/title-3-active.png b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/title-3-active.png deleted file mode 100644 index 5b761b2c028620e3fba2ef0d5ca9d601d91f444d..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/title-3-active.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/title-3-active.xpm b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/title-3-active.xpm deleted file mode 100644 index 9b9c0e26f20b4969586992c4abdd097f32da3097..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/title-3-active.xpm +++ /dev/null @@ -1,26 +0,0 @@ -/* XPM */ -static char * title_3_active_xpm[] = { -"4 19 4 1", -" c None", -". c #A0A0FF s active_shadow_1", -"+ c #D0D0FF s active_hilight_1", -"@ c #C0C0FF s active_color_1", -"....", -"++++", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@"}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/title-3-inactive.png b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/title-3-inactive.png deleted file mode 100644 index 5b761b2c028620e3fba2ef0d5ca9d601d91f444d..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/title-3-inactive.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/title-3-inactive.xpm b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/title-3-inactive.xpm deleted file mode 100644 index cdbea483062c356d91383273497175bfadaef4bd..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/title-3-inactive.xpm +++ /dev/null @@ -1,27 +0,0 @@ -/* XPM */ -static char * title_3_inactive_xpm[] = { -"4 20 4 1", -" c None", -". c #A0A0FF s inactive_shadow_1", -"+ c #D0D0FF s inactive_hilight_1", -"@ c #C0C0FF s inactive_color_1", -"....", -"++++", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@"}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/title-4-active.png b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/title-4-active.png deleted file mode 100644 index 5b761b2c028620e3fba2ef0d5ca9d601d91f444d..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/title-4-active.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/title-4-active.xpm b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/title-4-active.xpm deleted file mode 100644 index 421a34aba89e0bfbb14f9aa10277e9eef1421ad5..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/title-4-active.xpm +++ /dev/null @@ -1,26 +0,0 @@ -/* XPM */ -static char * title_4_active_xpm[] = { -"4 19 4 1", -" c None", -". c #A0A0FF s active_shadow_1", -"+ c #D0D0FF s active_hilight_1", -"@ c #C0C0FF s active_color_1", -"....", -"++++", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@"}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/title-4-inactive.png b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/title-4-inactive.png deleted file mode 100644 index 5b761b2c028620e3fba2ef0d5ca9d601d91f444d..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/title-4-inactive.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/title-4-inactive.xpm b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/title-4-inactive.xpm deleted file mode 100644 index a7be209a8fa3f658c19c4e49661e1bec6e58b195..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/title-4-inactive.xpm +++ /dev/null @@ -1,26 +0,0 @@ -/* XPM */ -static char * title_4_inactive_xpm[] = { -"4 19 4 1", -" c None", -". c #A0A0FF s inactive_shadow_1", -"+ c #D0D0FF s inactive_hilight_1", -"@ c #C0C0FF s inactive_color_1", -"....", -"++++", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@"}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/title-5-active.png b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/title-5-active.png deleted file mode 100644 index 5b761b2c028620e3fba2ef0d5ca9d601d91f444d..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/title-5-active.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/title-5-active.xpm b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/title-5-active.xpm deleted file mode 100644 index 4208fdc89c39ce613f615fe615949c2d45206c95..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/title-5-active.xpm +++ /dev/null @@ -1,26 +0,0 @@ -/* XPM */ -static char * title_5_active_xpm[] = { -"4 19 4 1", -" c None", -". c #A0A0FF s active_shadow_1", -"+ c #D0D0FF s active_hilight_1", -"@ c #C0C0FF s active_color_1", -"....", -"++++", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@"}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/title-5-inactive.png b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/title-5-inactive.png deleted file mode 100644 index 5b761b2c028620e3fba2ef0d5ca9d601d91f444d..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/title-5-inactive.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/title-5-inactive.xpm b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/title-5-inactive.xpm deleted file mode 100644 index 683eca5c3f9e346bc4429cc3f44d9c91c51b8669..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/title-5-inactive.xpm +++ /dev/null @@ -1,26 +0,0 @@ -/* XPM */ -static char * title_5_inactive_xpm[] = { -"4 19 4 1", -" c None", -". c #A0A0FF s inactive_shadow_1", -"+ c #D0D0FF s inactive_hilight_1", -"@ c #C0C0FF s inactive_color_1", -"....", -"++++", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@", -"@@@@"}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/top-left-active.png b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/top-left-active.png deleted file mode 100644 index fbca735496f4c20e0a7d62a198e2a2812fbd450d..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/top-left-active.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/top-left-active.xpm b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/top-left-active.xpm deleted file mode 100644 index bac9aa49ab3494b1ffc5fd91a90060636569e1ed..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/top-left-active.xpm +++ /dev/null @@ -1,26 +0,0 @@ -/* XPM */ -static char * top_left_active_xpm[] = { -"8 19 4 1", -" c None", -". c #A0A0FF s active_shadow_1", -"+ c #D0D0FF s active_hilight_1", -"@ c #C0C0FF s active_color_1", -" ......", -" .++++++", -".+@@@@@@", -".+@@@@@@", -".+@@@@@@", -".+@@@@@@", -".+@@@@@@", -".+@@@@@@", -".+@@@@@@", -".+@@@@@@", -".+@@@@@@", -".+@@@@@@", -".+@@@@@@", -".+@@@@@@", -".+@@@@@@", -".+@@@@@@", -".+@@@@@@", -".+@@@@@@", -".+@@@@@@"}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/top-left-inactive.png b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/top-left-inactive.png deleted file mode 100644 index fbca735496f4c20e0a7d62a198e2a2812fbd450d..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/top-left-inactive.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/top-left-inactive.xpm b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/top-left-inactive.xpm deleted file mode 100644 index a5e3dc7f0a26f4441e2d2a028db905fff48295cd..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/top-left-inactive.xpm +++ /dev/null @@ -1,26 +0,0 @@ -/* XPM */ -static char * top_left_inactive_xpm[] = { -"8 19 4 1", -" c None", -". c #A0A0FF s inactive_shadow_1", -"+ c #D0D0FF s inactive_hilight_1", -"@ c #C0C0FF s inactive_color_1", -" ......", -" .++++++", -".+@@@@@@", -".+@@@@@@", -".+@@@@@@", -".+@@@@@@", -".+@@@@@@", -".+@@@@@@", -".+@@@@@@", -".+@@@@@@", -".+@@@@@@", -".+@@@@@@", -".+@@@@@@", -".+@@@@@@", -".+@@@@@@", -".+@@@@@@", -".+@@@@@@", -".+@@@@@@", -".+@@@@@@"}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/top-right-active.png b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/top-right-active.png deleted file mode 100644 index 65533a03207ad29cd524f4f131827fff4c75acfa..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/top-right-active.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/top-right-active.xpm b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/top-right-active.xpm deleted file mode 100644 index c3f5c60acc933c60748e25d2f859576f4b273c51..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/top-right-active.xpm +++ /dev/null @@ -1,27 +0,0 @@ -/* XPM */ -static char * top_right_active_xpm[] = { -"8 19 5 1", -" c None", -". c #A0A0FF s active_shadow_1", -"+ c #D0D0FF s active_hilight_1", -"@ c #C0C0FF s active_color_1", -"# c #B0B0FF s active_mid_1", -"...... ", -"++++++. ", -"@@@@@@+.", -"@@@@@@+.", -"@@@@@@+.", -"@@@@@@+.", -"@@@@@@+.", -"@@@@@@+.", -"@@@@@@+.", -"@@@@@@+.", -"@@@@@@+.", -"@@@@@@+.", -"@@@@@@+.", -"@@@@@@+.", -"@@@@@@+.", -"@@@@@@+.", -"@@@@@@+.", -"@@@@@@+.", -"@@@@@@+."}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/top-right-inactive.png b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/top-right-inactive.png deleted file mode 100644 index 65533a03207ad29cd524f4f131827fff4c75acfa..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/top-right-inactive.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/top-right-inactive.xpm b/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/top-right-inactive.xpm deleted file mode 100644 index 1dc245035ec6fcc98c6ab6b11d1d09f978618da3..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/Daloa/xfwm4/top-right-inactive.xpm +++ /dev/null @@ -1,27 +0,0 @@ -/* XPM */ -static char * top_right_inactive_xpm[] = { -"8 19 5 1", -" c None", -". c #A0A0FF s inactive_shadow_1", -"+ c #D0D0FF s inactive_hilight_1", -"@ c #C0C0FF s inactive_color_1", -"# c #B0B0FF s inactive_mid_1", -"...... ", -"++++++. ", -"@@@@@@+.", -"@@@@@@+.", -"@@@@@@+.", -"@@@@@@+.", -"@@@@@@+.", -"@@@@@@+.", -"@@@@@@+.", -"@@@@@@+.", -"@@@@@@+.", -"@@@@@@+.", -"@@@@@@+.", -"@@@@@@+.", -"@@@@@@+.", -"@@@@@@+.", -"@@@@@@+.", -"@@@@@@+.", -"@@@@@@+."}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/bottom-active.png b/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/bottom-active.png deleted file mode 100755 index 37ecf0f3bb501cc94e27a89ac6dc838c2839ed70..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/bottom-active.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/bottom-active.xpm b/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/bottom-active.xpm deleted file mode 100755 index bb61572cf61494a7d457e1d440d7b5ce9a676d81..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/bottom-active.xpm +++ /dev/null @@ -1,6 +0,0 @@ -/* XPM */ -static char * bottom_active_xpm[] = { -"2 2 1 1", -" c #285577", -" ", -" "}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/bottom-inactive.png b/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/bottom-inactive.png deleted file mode 100755 index 272988e084fea0341c9459d9f5f83ab4fdb29646..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/bottom-inactive.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/bottom-inactive.xpm b/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/bottom-inactive.xpm deleted file mode 100755 index 1e18f5fc0a06146cf9f4824d37419385229a9804..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/bottom-inactive.xpm +++ /dev/null @@ -1,6 +0,0 @@ -/* XPM */ -static char * bottom_inactive_xpm[] = { -"2 2 1 1", -" c #222222", -" ", -" "}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/bottom-left-active.png b/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/bottom-left-active.png deleted file mode 100755 index 581c2f74c589c541bb8ac42537d5392e75af494c..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/bottom-left-active.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/bottom-left-active.xpm b/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/bottom-left-active.xpm deleted file mode 100755 index d86961d55e5f998bcce11302b796f7fbeb649526..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/bottom-left-active.xpm +++ /dev/null @@ -1,6 +0,0 @@ -/* XPM */ -static char * bottom_left_active_xpm[] = { -"2 2 1 1", -" c #285577", -" ", -" "}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/bottom-left-inactive.png b/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/bottom-left-inactive.png deleted file mode 100755 index c7b853ed246f03f1a34c65d8189e5f126b657799..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/bottom-left-inactive.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/bottom-left-inactive.xpm b/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/bottom-left-inactive.xpm deleted file mode 100755 index 8b77d9fc1677710e5c9dcc7e8afb663608532a0f..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/bottom-left-inactive.xpm +++ /dev/null @@ -1,6 +0,0 @@ -/* XPM */ -static char * bottom_left_inactive_xpm[] = { -"2 2 1 1", -" c #222222", -" ", -" "}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/bottom-right-active.png b/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/bottom-right-active.png deleted file mode 100755 index 3cc6a875e7a16cd4e48796f4b1b9b0120bf7f6e1..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/bottom-right-active.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/bottom-right-active.xpm b/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/bottom-right-active.xpm deleted file mode 100755 index 43e3125427df0ec1c2cf0d98f83629cb36364ded..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/bottom-right-active.xpm +++ /dev/null @@ -1,6 +0,0 @@ -/* XPM */ -static char * bottom_right_active_xpm[] = { -"2 2 1 1", -" c #285577", -" ", -" "}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/bottom-right-inactive.png b/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/bottom-right-inactive.png deleted file mode 100755 index 5ac5fbbe2d377781571444a7e7a2ec5a0e9867cd..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/bottom-right-inactive.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/bottom-right-inactive.xpm b/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/bottom-right-inactive.xpm deleted file mode 100755 index a4363a13eb58cfc082b8c1ce56005b0cb121bf11..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/bottom-right-inactive.xpm +++ /dev/null @@ -1,6 +0,0 @@ -/* XPM */ -static char * bottom_right_inactive_xpm[] = { -"2 2 1 1", -" c #222222", -" ", -" "}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/left-active.png b/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/left-active.png deleted file mode 100755 index b1b186ebcad7d28858224186c1c738dfcd4ba430..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/left-active.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/left-active.xpm b/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/left-active.xpm deleted file mode 100755 index 363c18d40d2bda6daf59a50f10961fa389ac0222..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/left-active.xpm +++ /dev/null @@ -1,6 +0,0 @@ -/* XPM */ -static char * left_active_xpm[] = { -"2 2 1 1", -" c #285577", -" ", -" "}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/left-inactive.png b/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/left-inactive.png deleted file mode 100755 index 53f2f2a5074dbfa791069282c23b6143a3abb99c..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/left-inactive.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/left-inactive.xpm b/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/left-inactive.xpm deleted file mode 100755 index ecb117574c05d0dc3e9715816a8b0d7f090db646..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/left-inactive.xpm +++ /dev/null @@ -1,6 +0,0 @@ -/* XPM */ -static char * left_inactive_xpm[] = { -"2 2 1 1", -" c #222222", -" ", -" "}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/right-active.png b/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/right-active.png deleted file mode 100755 index 12283c3c7218c696dabbcf100021efca8e594af2..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/right-active.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/right-active.xpm b/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/right-active.xpm deleted file mode 100755 index d6311f6b74a3d0f4f33df028c835b9d85fb9a5d6..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/right-active.xpm +++ /dev/null @@ -1,6 +0,0 @@ -/* XPM */ -static char * right_active_xpm[] = { -"2 2 1 1", -" c #285577", -" ", -" "}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/right-inactive.png b/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/right-inactive.png deleted file mode 100755 index a3996213490e6c6cebd76e5d06cc3c3f412cb3a1..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/right-inactive.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/right-inactive.xpm b/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/right-inactive.xpm deleted file mode 100755 index c88d2ff8dd81a37ba32d38b27551043dff0e812a..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/right-inactive.xpm +++ /dev/null @@ -1,6 +0,0 @@ -/* XPM */ -static char * right_inactive_xpm[] = { -"2 2 1 1", -" c #222222", -" ", -" "}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/themerc b/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/themerc deleted file mode 100755 index d5b76bf8d4c7a39baa254c4d42de33ad49cdcb9c..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/themerc +++ /dev/null @@ -1,6 +0,0 @@ -full_width_title=true -button_layout=| -title_vertical_offset_active=0 -title_vertical_offset_inactive=0 -active_text_color=#ffffff -inactive_text_color=#888888 diff --git a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/title-1-active.png b/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/title-1-active.png deleted file mode 100755 index 1038f8f21d05da79cf3e07144cdd82dd93e004fa..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/title-1-active.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/title-1-active.xpm b/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/title-1-active.xpm deleted file mode 100755 index f988f5ab15f9daef8e2e5ea696b167dd2276e1b6..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/title-1-active.xpm +++ /dev/null @@ -1,23 +0,0 @@ -/* XPM */ -static char * title_1_active_xpm[] = { -"5 18 2 1", -" c #4C7899", -". c #285577", -" ", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -" "}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/title-1-inactive.png b/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/title-1-inactive.png deleted file mode 100755 index 64857dd30c838f07174b9d4e323d2c9d6f802cd0..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/title-1-inactive.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/title-1-inactive.xpm b/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/title-1-inactive.xpm deleted file mode 100755 index 8cafccb397a754822f62fbb3042636b4f74aeeef..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/title-1-inactive.xpm +++ /dev/null @@ -1,23 +0,0 @@ -/* XPM */ -static char * title_1_inactive_xpm[] = { -"5 18 2 1", -" c #333333", -". c #222222", -" ", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -" "}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/title-2-active.png b/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/title-2-active.png deleted file mode 100755 index 1038f8f21d05da79cf3e07144cdd82dd93e004fa..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/title-2-active.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/title-2-active.xpm b/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/title-2-active.xpm deleted file mode 100755 index f988f5ab15f9daef8e2e5ea696b167dd2276e1b6..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/title-2-active.xpm +++ /dev/null @@ -1,23 +0,0 @@ -/* XPM */ -static char * title_1_active_xpm[] = { -"5 18 2 1", -" c #4C7899", -". c #285577", -" ", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -" "}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/title-2-inactive.png b/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/title-2-inactive.png deleted file mode 100755 index 64857dd30c838f07174b9d4e323d2c9d6f802cd0..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/title-2-inactive.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/title-2-inactive.xpm b/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/title-2-inactive.xpm deleted file mode 100755 index 8cafccb397a754822f62fbb3042636b4f74aeeef..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/title-2-inactive.xpm +++ /dev/null @@ -1,23 +0,0 @@ -/* XPM */ -static char * title_1_inactive_xpm[] = { -"5 18 2 1", -" c #333333", -". c #222222", -" ", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -" "}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/title-3-active.png b/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/title-3-active.png deleted file mode 100755 index 1038f8f21d05da79cf3e07144cdd82dd93e004fa..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/title-3-active.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/title-3-active.xpm b/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/title-3-active.xpm deleted file mode 100755 index f988f5ab15f9daef8e2e5ea696b167dd2276e1b6..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/title-3-active.xpm +++ /dev/null @@ -1,23 +0,0 @@ -/* XPM */ -static char * title_1_active_xpm[] = { -"5 18 2 1", -" c #4C7899", -". c #285577", -" ", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -" "}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/title-3-inactive.png b/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/title-3-inactive.png deleted file mode 100755 index 64857dd30c838f07174b9d4e323d2c9d6f802cd0..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/title-3-inactive.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/title-3-inactive.xpm b/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/title-3-inactive.xpm deleted file mode 100755 index 8cafccb397a754822f62fbb3042636b4f74aeeef..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/title-3-inactive.xpm +++ /dev/null @@ -1,23 +0,0 @@ -/* XPM */ -static char * title_1_inactive_xpm[] = { -"5 18 2 1", -" c #333333", -". c #222222", -" ", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -" "}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/title-4-active.png b/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/title-4-active.png deleted file mode 100755 index 1038f8f21d05da79cf3e07144cdd82dd93e004fa..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/title-4-active.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/title-4-active.xpm b/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/title-4-active.xpm deleted file mode 100755 index f988f5ab15f9daef8e2e5ea696b167dd2276e1b6..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/title-4-active.xpm +++ /dev/null @@ -1,23 +0,0 @@ -/* XPM */ -static char * title_1_active_xpm[] = { -"5 18 2 1", -" c #4C7899", -". c #285577", -" ", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -" "}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/title-4-inactive.png b/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/title-4-inactive.png deleted file mode 100755 index 64857dd30c838f07174b9d4e323d2c9d6f802cd0..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/title-4-inactive.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/title-4-inactive.xpm b/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/title-4-inactive.xpm deleted file mode 100755 index 8cafccb397a754822f62fbb3042636b4f74aeeef..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/title-4-inactive.xpm +++ /dev/null @@ -1,23 +0,0 @@ -/* XPM */ -static char * title_1_inactive_xpm[] = { -"5 18 2 1", -" c #333333", -". c #222222", -" ", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -" "}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/title-5-active.png b/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/title-5-active.png deleted file mode 100755 index 1038f8f21d05da79cf3e07144cdd82dd93e004fa..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/title-5-active.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/title-5-active.xpm b/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/title-5-active.xpm deleted file mode 100755 index f988f5ab15f9daef8e2e5ea696b167dd2276e1b6..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/title-5-active.xpm +++ /dev/null @@ -1,23 +0,0 @@ -/* XPM */ -static char * title_1_active_xpm[] = { -"5 18 2 1", -" c #4C7899", -". c #285577", -" ", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -" "}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/title-5-inactive.png b/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/title-5-inactive.png deleted file mode 100755 index 64857dd30c838f07174b9d4e323d2c9d6f802cd0..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/title-5-inactive.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/title-5-inactive.xpm b/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/title-5-inactive.xpm deleted file mode 100755 index 8cafccb397a754822f62fbb3042636b4f74aeeef..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/title-5-inactive.xpm +++ /dev/null @@ -1,23 +0,0 @@ -/* XPM */ -static char * title_1_inactive_xpm[] = { -"5 18 2 1", -" c #333333", -". c #222222", -" ", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -".....", -" "}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/top-left-active.png b/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/top-left-active.png deleted file mode 100755 index f80355e7558680c31bd7f71ed4c1e53c72d12bbc..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/top-left-active.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/top-left-active.xpm b/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/top-left-active.xpm deleted file mode 100755 index 35573a36c349f9f9c26ef82a38cc3dc13a549537..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/top-left-active.xpm +++ /dev/null @@ -1,23 +0,0 @@ -/* XPM */ -static char * top_left_active_xpm[] = { -"2 18 2 1", -" c #4C7899", -". c #285577", -" ", -"..", -"..", -"..", -"..", -"..", -"..", -"..", -"..", -"..", -"..", -"..", -"..", -"..", -"..", -"..", -"..", -".."}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/top-left-inactive.png b/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/top-left-inactive.png deleted file mode 100755 index 5f0a3b1868232906c1d5122265b806121fa43931..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/top-left-inactive.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/top-left-inactive.xpm b/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/top-left-inactive.xpm deleted file mode 100755 index 57fcfda4caff729c13f78165f230ce795b4ca2af..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/top-left-inactive.xpm +++ /dev/null @@ -1,23 +0,0 @@ -/* XPM */ -static char * top_left_inactive_xpm[] = { -"2 18 2 1", -" c #333333", -". c #222222", -" ", -"..", -"..", -"..", -"..", -"..", -"..", -"..", -"..", -"..", -"..", -"..", -"..", -"..", -"..", -"..", -"..", -".."}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/top-right-active.png b/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/top-right-active.png deleted file mode 100755 index cfe89800b6a234d42d9e8dfba394011ff246b07b..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/top-right-active.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/top-right-active.xpm b/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/top-right-active.xpm deleted file mode 100755 index c27740f68da0ced9ebc6d9df992650142ef30a0e..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/top-right-active.xpm +++ /dev/null @@ -1,23 +0,0 @@ -/* XPM */ -static char * top_right_active_xpm[] = { -"2 18 2 1", -" c #4C7899", -". c #285577", -" ", -"..", -"..", -"..", -"..", -"..", -"..", -"..", -"..", -"..", -"..", -"..", -"..", -"..", -"..", -"..", -"..", -".."}; diff --git a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/top-right-inactive.png b/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/top-right-inactive.png deleted file mode 100755 index 99fa676ce2a755cc9bdce9afb6288cd24097f7d9..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/top-right-inactive.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/top-right-inactive.xpm b/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/top-right-inactive.xpm deleted file mode 100755 index cc06d6ad1947517b70fa68b1c43cb881a1b5b692..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-customisation/usr/share/themes/i3/xfwm4/top-right-inactive.xpm +++ /dev/null @@ -1,23 +0,0 @@ -/* XPM */ -static char * top_right_inactive_xpm[] = { -"2 18 2 1", -" c #333333", -". c #222222", -" ", -"..", -"..", -"..", -"..", -"..", -"..", -"..", -"..", -"..", -"..", -"..", -"..", -"..", -"..", -"..", -"..", -".."}; diff --git a/live_exam_os/config/02-customisation/usr/share/xfce4/backdrops/Journey_home_by_Juliette_Taka.jpg b/live_exam_os/config/02-customisation/usr/share/xfce4/backdrops/Journey_home_by_Juliette_Taka.jpg deleted file mode 100644 index 603121f9c59feb158af4eebc47b0727d42b86255..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/xfce4/backdrops/Journey_home_by_Juliette_Taka.jpg and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/xfce4/backdrops/xubuntu-development.png b/live_exam_os/config/02-customisation/usr/share/xfce4/backdrops/xubuntu-development.png deleted file mode 100644 index 32541088f322c3aace863efd3e9dc58075088036..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/xfce4/backdrops/xubuntu-development.png and /dev/null differ diff --git a/live_exam_os/config/02-customisation/usr/share/xfce4/backdrops/xubuntu-mantic.png b/live_exam_os/config/02-customisation/usr/share/xfce4/backdrops/xubuntu-mantic.png deleted file mode 100644 index b0afc0513cdfc889b2413661a76f0e7ef41cbfc6..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/02-customisation/usr/share/xfce4/backdrops/xubuntu-mantic.png and /dev/null differ diff --git a/live_exam_os/config/03-post_install/1000-create-user.sh b/live_exam_os/config/03-post_install/1000-create-user.sh deleted file mode 100755 index b368787e437477a024a43b009f7c9acbbad49be7..0000000000000000000000000000000000000000 --- a/live_exam_os/config/03-post_install/1000-create-user.sh +++ /dev/null @@ -1,10 +0,0 @@ -#/bin/bash - -. tools/functions.sh - -echo "[User creation...]" -run_command_chroot useradd -m user -run_command_chroot usermod -aG video user -run_command_chroot usermod -aG input user -run_command_chroot usermod -aG plugdev user -run_command_chroot chown -R 1000:1000 /home/user/ diff --git a/live_exam_os/config/03-post_install/1000-disable_root.sh b/live_exam_os/config/03-post_install/1000-disable_root.sh deleted file mode 100755 index 3930359bd4a990571eb6426d6080ca5f7f676a8b..0000000000000000000000000000000000000000 --- a/live_exam_os/config/03-post_install/1000-disable_root.sh +++ /dev/null @@ -1,6 +0,0 @@ -#/bin/sh - -. tools/functions.sh - -echo "[Disable root user...]" -run_command_chroot passwd -l root diff --git a/live_exam_os/config/03-post_install/2000-enable_services.sh b/live_exam_os/config/03-post_install/2000-enable_services.sh deleted file mode 100755 index 3389d5d7b5c5093b41f4e424a5b31f27f19cd7d1..0000000000000000000000000000000000000000 --- a/live_exam_os/config/03-post_install/2000-enable_services.sh +++ /dev/null @@ -1,7 +0,0 @@ -#/bin/sh - -. tools/functions.sh - -echo "[Enabling services...]" -run_command_chroot systemctl enable NetworkManager -run_command_chroot systemctl enable ufw diff --git a/live_exam_os/config/03-post_install/2500-disable_services.sh b/live_exam_os/config/03-post_install/2500-disable_services.sh deleted file mode 100755 index 237d1e44cd30a11f6be3764e11a84e39a52299fa..0000000000000000000000000000000000000000 --- a/live_exam_os/config/03-post_install/2500-disable_services.sh +++ /dev/null @@ -1,6 +0,0 @@ -#/bin/sh - -. tools/functions.sh - -echo "[Masking services...]" -run_command_chroot systemctl mask console-setup diff --git a/live_exam_os/config/03-post_install/3000-nexus_exam.sh b/live_exam_os/config/03-post_install/3000-nexus_exam.sh deleted file mode 100755 index 91bd29264257dbb23c369cc9747b0bcb91efc9ef..0000000000000000000000000000000000000000 --- a/live_exam_os/config/03-post_install/3000-nexus_exam.sh +++ /dev/null @@ -1,16 +0,0 @@ -#/bin/bash - -. tools/functions.sh - -echo "[Compiling nexus-exam...]" -pushd .. > /dev/null -run_command make build_nexus-exam -if [[ "$ROOTFS_DIR" != /* ]]; then - run_command mkdir -p live_exam_os/$ROOTFS_DIR/usr/local/bin - run_command cp build/nexus-exam live_exam_os/$ROOTFS_DIR/usr/local/bin/nexus-exam -else - run_command mkdir -p $ROOTFS_DIR/usr/local/bin - run_command cp build/nexus-exam $ROOTFS_DIR/usr/local/bin/nexus-exam -fi -run_command make clean_client -popd > /dev/null diff --git a/live_exam_os/config/03-post_install/5000-pxe.sh b/live_exam_os/config/03-post_install/5000-pxe.sh deleted file mode 100755 index 2445b67865ca0009dadfae749707ef3e5a76a6b6..0000000000000000000000000000000000000000 --- a/live_exam_os/config/03-post_install/5000-pxe.sh +++ /dev/null @@ -1,8 +0,0 @@ -#/bin/bash - -. tools/functions.sh - -if [ ! -z $PXE_URL ]; then - echo "[Adding PXE url...]" - echo -n "$PXE_URL/$SQUASHFS_IMG" > $ROOTFS_DIR/etc/squashfs-url -fi diff --git a/live_exam_os/config/03-post_install/7000-unlocker.sh b/live_exam_os/config/03-post_install/7000-unlocker.sh deleted file mode 100755 index 74e59304200770a4d68909c374c9916f20ba333e..0000000000000000000000000000000000000000 --- a/live_exam_os/config/03-post_install/7000-unlocker.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/bash - -. tools/functions.sh - -echo "[Compile unlocker...]" - -sed "s/DUMMY_CHALLENGE/$CHALLENGE/g" tools/unlocker.c > /tmp/unlocker.c -run_command gcc -o /tmp/unlock_luks /tmp/unlocker.c -I/usr/include/ykpers-1 -lykpers-1 -lyubikey -lcryptsetup -run_command strip /tmp/unlock_luks -run_command cp /tmp/unlock_luks $ROOTFS_DIR/etc/unlock_luks diff --git a/live_exam_os/config/03-post_install/8000-initramfs.sh b/live_exam_os/config/03-post_install/8000-initramfs.sh deleted file mode 100755 index 3492d6e95ec95bfb1baedf85bb9bdd751664357a..0000000000000000000000000000000000000000 --- a/live_exam_os/config/03-post_install/8000-initramfs.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/bash - -. tools/functions.sh - -echo "[Update initramfs...]" -run_command_chroot update-initramfs -u diff --git a/live_exam_os/config/03-post_install/9000-cleanup.sh b/live_exam_os/config/03-post_install/9000-cleanup.sh deleted file mode 100755 index 357ab4abd3e44667a4af7f535d26e28f4db244aa..0000000000000000000000000000000000000000 --- a/live_exam_os/config/03-post_install/9000-cleanup.sh +++ /dev/null @@ -1,9 +0,0 @@ -#/bin/bash - -. tools/functions.sh - -echo "[Cleanup...]" -PACKAGES="krb5-locales libatm1t64 libglib2.0-data libnss-systemd libpam-cap logrotate python3-rich rsyslog systemd-hwe-hwdb systemd-resolved ubuntu-pro-client-l10n xxd lightdm-gtk-greeter libykpers-1-dev libyubikey-dev libcryptsetup-dev" -run_command_chroot apt remove --purge -y $PACKAGES -run_command_chroot apt autoremove -y -run_command_chroot dpkg -P geoclue gnome-settings-daemon libcrypt-dev libgtk xubuntu-artwork diff --git a/live_exam_os/config/03-post_install/9998-admin-mode.sh.disabled b/live_exam_os/config/03-post_install/9998-admin-mode.sh.disabled deleted file mode 100755 index 7e86cc4ac2f4237487affbc983523428b1d22596..0000000000000000000000000000000000000000 --- a/live_exam_os/config/03-post_install/9998-admin-mode.sh.disabled +++ /dev/null @@ -1,9 +0,0 @@ -#/bin/bash - -. tools/functions.sh - -echo "[Admin stuff...]" -run_command_chroot usermod -aG sudo user -run_command_chroot apt install -y xfce4-terminal -run_command_chroot chmod a=rx,u+ws /usr/bin/sudo -echo "user:0" | chroot "$ROOTFS_DIR" /usr/sbin/chpasswd diff --git a/live_exam_os/config/03-post_install/9999-firewall.sh b/live_exam_os/config/03-post_install/9999-firewall.sh deleted file mode 100755 index 7cab79671cdc9f47c25f018c0269fd4bb9933247..0000000000000000000000000000000000000000 --- a/live_exam_os/config/03-post_install/9999-firewall.sh +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/bash - -. tools/functions.sh - -IP_SERVER=$(echo $SERVER | cut -d ':' -f1) -PORT_SERVER=$(echo $SERVER | cut -d ':' -f2) - -echo "[Firewall configuration...]" - -# Block all incoming and outgoing traffic -run_command_chroot ufw default deny incoming -run_command_chroot ufw default deny outgoing -# Allow outgoing traffic to nexus-server API -run_command_chroot ufw allow out from any to $IP_SERVER port $PORT_SERVER proto tcp -# Allow outgoing ntp traffic -run_command_chroot ufw allow out from any to any port 123 proto udp -# Allow outgoing dns traffic -run_command_chroot ufw allow out from any to any port 53 proto udp -# Allow outgoing traffic to nexus VMs (Spice) -run_command_chroot ufw allow out from any to $IP_SERVER port 1025:65535 proto tcp - -run_command_chroot ufw enable diff --git a/live_exam_os/tigress_4.0.10-1_all.deb.zip b/live_exam_os/tigress_4.0.10-1_all.deb.zip deleted file mode 100644 index 3a4c6a2e6a9f57d6a0f9d32d6906c1041766c476..0000000000000000000000000000000000000000 Binary files a/live_exam_os/tigress_4.0.10-1_all.deb.zip and /dev/null differ diff --git a/live_exam_os/tools/functions.sh b/live_exam_os/tools/functions.sh deleted file mode 100755 index dc90d629b5d0c85e29b64271a0cbee0eb996d5ee..0000000000000000000000000000000000000000 --- a/live_exam_os/tools/functions.sh +++ /dev/null @@ -1,96 +0,0 @@ -#/bin/bash - -run() { - chroot "$ROOTFS_DIR" $@ -} - -run_command() { - local cmd="$@" - if $VERBOSE; then - echo $cmd - bash -c "$cmd" - EXIT_CODE=$? - else - bash -c "$cmd" > /dev/null 2>&1 - EXIT_CODE=$? - fi - check_exit_code $EXIT_CODE "Error during command execution: $cmd" -} - -run_command_chroot() { - run_command chroot "$ROOTFS_DIR" $@ -} - -check_exit_code() { - EXIT_CODE=$1 - if [ ! $EXIT_CODE -eq 0 ]; then - echo $2 - exit 1 - fi -} - -check_environment_var() { - if [ -z $SERVER ] || [ -z $CERT ] || [ -z $EXAM_USER ] || [ -z $EXAM_PWD ]; then - echo "Error: environment variables aren't set" >&2 - echo "SERVER = $SERVER" >&2 - echo "CERT = $CERT" >&2 - echo "EXAM_USER = $EXAM_USER" >&2 - echo "EXAM_PWD = $EXAM_PWD" >&2 - helper - fi -} - -get_total_size() { - local total=0 - for file in "$@"; do - if [[ -f "$file" ]]; then - total=$(( total + $(stat -c%s "$file") )) - else - return 1 - fi - done - echo "$total" -} - -check_inside_container() { - if [ ! -f "/.dockerenv" ] && [ ! -f "/run/.containerenv" ]; then - echo "Error: this script must be run inside a Docker or Podman container." >&2 - exit 1 - fi -} - -check_dependencies() { - local dependencies=(debootstrap chroot sed mount umount fallocate mkfs.vfat mksquashfs cryptsetup bash xorriso limine) - local missing=() - - for cmd in "${dependencies[@]}"; do - if ! command -v "$cmd" >/dev/null 2>&1; then - missing+=("$cmd") - fi - done - - if [ "${#missing[@]}" -ne 0 ]; then - echo "Error: the following required tools are missing or not in the PATH:" >&2 - for tool in "${missing[@]}"; do - echo " - $tool" >&2 - done - exit 1 - fi -} - -find_latest_library() { - local library_name=$1 - - local library_files - library_files=$(find $ROOTFS_DIR -name "$library_name" 2>/dev/null) - - if [ -z "$library_files" ]; then - echo "No version available of $library_name." >&2 - return 1 - fi - - local latest_library - latest_library=$(echo "$library_files" | sort -r | head -n 1) - - realpath "$latest_library" -} diff --git a/live_exam_os/tools/unlocker.c b/live_exam_os/tools/unlocker.c deleted file mode 100644 index 8af2605fd18e217b3c1c6418162c324cc80a40ac..0000000000000000000000000000000000000000 --- a/live_exam_os/tools/unlocker.c +++ /dev/null @@ -1,85 +0,0 @@ -#include <stdio.h> -#include <stdlib.h> -#include <string.h> -#include <unistd.h> -#include <ykpers-1/ykpers.h> -#include <yubikey.h> -#include <libcryptsetup.h> - -#define LUKS_DEVICE "/cdrom/squash.rootfs" -#define LUKS_NAME "data" - -int unlock_luks(const char *device, const char *name, const char *key, size_t key_size) { - struct crypt_device *cd; - - if (crypt_init(&cd, device) < 0) { - fprintf(stderr, "Error: Cannot initialize cryptsetup\n"); - return -1; - } - - if (crypt_load(cd, CRYPT_LUKS2, NULL) < 0) { - fprintf(stderr, "Error: Cannot load LUKS header\n"); - crypt_free(cd); - return -1; - } - - if (crypt_activate_by_passphrase(cd, name, CRYPT_ANY_SLOT, key, strlen(key), CRYPT_ACTIVATE_ALLOW_DISCARDS) < 0) { - fprintf(stderr, "Error: Cannot decrypt device\n"); - crypt_free(cd); - return -1; - } - - crypt_free(cd); - return 0; -} - -int main() { - YK_KEY *yk = NULL; - unsigned char response[64]; - unsigned int response_len = sizeof(response); - char *hex_response = malloc(41); - unsigned char challenge[64] = "DUMMY_CHALLENGE\n"; - - if (!hex_response) { - fprintf(stderr, "Error: Failed memory allocation\n"); - free(hex_response); - return 1; - } - - if (!yk_init()) { - fprintf(stderr, "Error: Cannot initialize libykpers\n"); - free(hex_response); - return 1; - } - - yk = yk_open_first_key(); - if (!yk) { - yk_release(); - free(hex_response); - return 1; - } - - if (!yk_challenge_response(yk, SLOT_CHAL_HMAC1, YK_FLAG_MAYBLOCK, sizeof(challenge), challenge, response_len, response)) { - fprintf(stderr, "Error: challenge-response issue\n"); - yk_close_key(yk); - yk_release(); - free(hex_response); - return 1; - } - - for (int i = 0; i < 20; i++) { - sprintf(hex_response + (i * 2), "%02x", response[i]); - } - hex_response[40] = '\0'; - - yk_close_key(yk); - yk_release(); - - if (unlock_luks(LUKS_DEVICE, LUKS_NAME, hex_response, strlen(hex_response)) != 0) { - fprintf(stderr, "Error: Cannot decrypt device\n"); - return 1; - } - - free(hex_response); - return 0; -} diff --git a/live_exam_os/utils/devices_umounter b/live_exam_os/utils/devices_umounter deleted file mode 100755 index 062c645e68f958b4282b683f5fdd66f44ace07ca..0000000000000000000000000000000000000000 --- a/live_exam_os/utils/devices_umounter +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/bash - -while [ 1 ]; do - ./umount_multi a b c d e f g h i j k l m n o p q r s t u v w x y z - sleep 1 -done diff --git a/live_exam_os/utils/devices_watcher b/live_exam_os/utils/devices_watcher deleted file mode 100755 index 2fac1c2b30ee90ba3840b6869e1f5adcafea5659..0000000000000000000000000000000000000000 --- a/live_exam_os/utils/devices_watcher +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/bash - -watch -n 1 "lsblk|grep sd" diff --git a/live_exam_os/utils/flash_iso_multi_keys b/live_exam_os/utils/flash_iso_multi_keys deleted file mode 100755 index 4fad322965c0f72cf44aef73a5bcb56f3e2b5c1c..0000000000000000000000000000000000000000 --- a/live_exam_os/utils/flash_iso_multi_keys +++ /dev/null @@ -1,58 +0,0 @@ -#!/bin/bash - -# This script copies an ISO image to several USB keys at once. -# Mounted partitions are automatically umounted. - -app=`basename $0` - -if [ $# -lt 2 ]; then - echo "usage: $app ISO a b c ..." - echo "ISO ISO file to copy to multiple devices" - echo "a /dev/sdX device to copy the ISO to" - echo " a means /dev/sda, b means /dev/sdb, etc." - echo "Example:" - echo "Copy live-debian.iso to /dev/sdb, /dev/sdi and /dev/sdh" - echo "$app live-debian.iso b i h" - exit 1 -fi - -src=$1 -shift 1 -dst="" -devices="" -for i in "$@"; do - devices="$devices /dev/sd$i" -done - -echo "Source ISO file: $src" -echo "Destination devices: $devices" - -while true; do - read -p "Proceed? (y/n) " yn - case $yn in - [Yy]*) - for i in "$@"; do - dst="$dst of=/dev/sd$i" - for part in {1..10}; do - umount /dev/sd$i$part 2>/dev/null - done - done - - dcfldd bs=4M if=$src $dst - status=$? - sync - if [ $status = 0 ]; then - echo "Image copies successful." - else - echo "Image copies failed!" - fi - - exit $status - break;; - - [Nn]*) exit 1;; - * ) echo "Please enter \"y\" or \"n\"";; - esac -done - -exit 1 diff --git a/live_exam_os/utils/umount_multi b/live_exam_os/utils/umount_multi deleted file mode 100755 index 078365cc2fb1af7777665e344e0ff87c80bf747d..0000000000000000000000000000000000000000 --- a/live_exam_os/utils/umount_multi +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/bash - -# This script umounts, in bulk, all partitions on the specified devices. - -app=`basename $0` - -if [ $# -lt 1 ]; then - echo "usage: $app a b c ..." - echo "a umounts all partitions from device /dev/sdX" - echo " a means /dev/sda, b means /dev/sdb, etc." - exit 1 -fi - -for i in "$@"; do - umount /dev/sd$i 2>/dev/null - for part in {1..10}; do - umount /dev/sd$i$part 2>/dev/null - done -done diff --git a/server/go.mod b/server/go.mod index 149b412ce4d5fa3298b41d1d9ee171b7403a0c6a..f3a5b67563ccd91a86beb3fad21f51a5dd7163a5 100644 --- a/server/go.mod +++ b/server/go.mod @@ -15,7 +15,6 @@ require ( ) require ( - gitedu.hesge.ch/flg_projects/nexus_vdi/nexus/libclient v0.0.0-20250320135605-9ac7ec3df57a // indirect github.com/gabriel-vasile/mimetype v1.4.8 // indirect github.com/go-playground/locales v0.14.1 // indirect github.com/go-playground/universal-translator v0.18.1 // indirect diff --git a/server/go.sum b/server/go.sum index 0942a43d6255de319ebba0a99390993363666e65..c8b2860bfd6c4a204278a6c037a288af35296fd1 100644 --- a/server/go.sum +++ b/server/go.sum @@ -1,7 +1,5 @@ gitedu.hesge.ch/flg_projects/nexus_vdi/nexus/common v0.0.0-20250320124055-925936117e70 h1:rWNiGUjTS+gVdstqZSjZ7asaHDzsCIS9ZrTfoQl9zp0= gitedu.hesge.ch/flg_projects/nexus_vdi/nexus/common v0.0.0-20250320124055-925936117e70/go.mod h1:J5xopG7TcdP+WODvtHXBko6zK4VNniGEu+YxsRqSMQg= -gitedu.hesge.ch/flg_projects/nexus_vdi/nexus/libclient v0.0.0-20250320135605-9ac7ec3df57a h1:TWNOmzMF7e4hdTgSUan2ns9kOXEZtbeWoubrRBmihmU= -gitedu.hesge.ch/flg_projects/nexus_vdi/nexus/libclient v0.0.0-20250320135605-9ac7ec3df57a/go.mod h1:faQTzubG36dQ0clTxdYAl/aV39Cws30rnxq8K+yjWyI= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=