diff --git a/live_exam_os/.gitignore b/live_exam_os/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..9d78b0ddd134259dfe8bfcefffea2ab03fda7725 --- /dev/null +++ b/live_exam_os/.gitignore @@ -0,0 +1,2 @@ +output/ +*.iso diff --git a/live_exam_os/Dockerfile b/live_exam_os/Dockerfile index ddbb04e39292a07b3f71d14c1c9e1e632b71f7ed..c204f22e918be758a8effa3cd932f3c1dd2b2459 100644 --- a/live_exam_os/Dockerfile +++ b/live_exam_os/Dockerfile @@ -1,113 +1,31 @@ -#-------------------------------------------------------------------------------------------------------------------- -# Builder stage that generates nexus-exam +ARG ALPINE_VERSION + +FROM alpine:${ALPINE_VERSION} + +RUN apk add mtools xorriso squashfs-tools cryptsetup e2fsprogs limine-x86_64 limine-cd + +RUN apk update && apk add --no-cache \ + gcc \ + musl-dev \ + pkgconf \ + git \ + wget \ + make \ + ca-certificates \ + glfw-dev \ + libxcursor-dev \ + libxinerama-dev \ + libxi-dev \ + libxxf86vm-dev \ + libxrandr-dev \ + upx \ + glfw \ + xrandr -FROM ubuntu:22.04 as nexus-exam-builder - -ARG base_dir -ARG server_ip -ARG server_port -ARG cert -ARG exam_user -ARG exam_pwd - -RUN apt-get update && apt-get install -y gcc pkg-config git wget make ca-certificates libglfw3-dev libxcursor-dev libxinerama-dev libxi-dev libxxf86vm-dev upx-ucl - -# Install go 1.22 from the official GO site ENV archive=go1.22.6.linux-amd64.tar.gz ENV PATH=$PATH:/usr/local/go/bin WORKDIR /go -RUN wget https://go.dev/dl/$archive -RUN tar -C /usr/local -xzf $archive - -# Compile nexus-exam -WORKDIR /nexus -COPY ${base_dir} . -RUN make build_nexus-exam SERVER=${server_ip}:${server_port} CERT=${cert} EXAM_USER=${exam_user} EXAM_PWD=${exam_pwd} - -#-------------------------------------------------------------------------------------------------------------------- -# Final builder stage that generates the live nexus-exam ISO image - -FROM debian:12 - -ARG server_ip -ARG server_port -ARG cert -ARG exam_user -ARG exam_pwd - -RUN apt-get update && apt-get install -y live-build live-config && rm -rf /var/lib/apt/lists/* - -WORKDIR /live-default - -# Install grub config (used when booting on UEFI systems) -ADD config/00-bootloader/grub_config.cfg config/includes.binary/boot/grub/config.cfg - -# Install syslinux config (used when booting on BIOS systems) -# See here for customizing it: https://wiki.koozali.org/Isolinux_menu.c32 -ADD config/00-bootloader/isolinux.cfg config/includes.binary/isolinux/isolinux.cfg -ADD config/00-bootloader/isolinux.png config/includes.binary/isolinux/splash.png - -# Add additionnal Debian packages -ADD config/01-build_hooks/packages.list.chroot config/package-lists/ - -## Add swiss-french keyboard config -ADD config/01-build_hooks/keyboard/keyboard config/includes.chroot/etc/default/ - -# Install wifi connection -ADD config/01-build_hooks/wifi/wifi.nmconnection config/includes.chroot/etc/NetworkManager/system-connections/ -RUN chmod 0600 config/includes.chroot/etc/NetworkManager/system-connections/wifi.nmconnection - -## Specify groups for live user (dialout is required to access serial interfaces) -# RUN mkdir -p config/includes.chroot/etc/live/config.conf.d -# RUN echo "LIVE_USER_DEFAULT_GROUPS=\"cdrom floppy sudo audio dip video plugdev users netdev bluetooth scanner dialout\"" > config/includes.chroot/etc/live/config.conf.d/10-user-setup.conf - -# Copy nexus-exam from builder container -COPY --from=nexus-exam-builder /nexus/build/nexus-exam config/includes.chroot/usr/local/bin/ - -## Run nexus-exam as soon as user logs in -ADD config/01-build_hooks/nexus-exam.desktop config/includes.chroot/etc/xdg/autostart/ - -# Add nexus-exam desktop shortcut -ADD config/01-build_hooks/nexus-exam.desktop config/includes.chroot/home/nexus/Bureau/ -RUN chmod +x config/includes.chroot/home/nexus/Bureau/nexus-exam.desktop -# The chown doesn't affect the file because it's created at boot time -#RUN chown 1000:1000 config/includes.chroot/home/nexus/Bureau/nexus-exam.desktop - -## Run various X11 settings as soon as user logs in -ADD config/01-build_hooks/x11/x11_settings.sh config/includes.chroot/usr/local/bin/ -ADD config/01-build_hooks/x11/x11_settings.desktop config/includes.chroot/etc/xdg/autostart/ - -# Systemd service to set various X11 settings (does not work - not sure why) -# ADD config/01-build_hooks/systemd/x11_settings.sh config/includes.chroot/usr/local/bin/ -# RUN chmod +x config/includes.chroot/usr/local/bin/x11_settings.sh -# ADD config/01-build_hooks/systemd/x11_settings.service config/includes.chroot/etc/systemd/system/ - -# Customize xfce4 desktop -ADD config/01-build_hooks/wallpapers/wallpaper.png config/includes.chroot/usr/share/images/desktop-base/default -ADD config/01-build_hooks/xfce/xfce4-desktop.xml config/includes.chroot/etc/xdg/xfce4/xfconf/xfce-perchannel-xml/ -ADD config/01-build_hooks/xfce/xfce4-panel.xml config/includes.chroot/etc/xdg/xfce4/xfconf/xfce-perchannel-xml/ -ADD config/01-build_hooks/xfce/xfce4-settings-manager.xml config/includes.chroot/etc/xdg/xfce4/xfconf/xfce-perchannel-xml/ -ADD config/01-build_hooks/xfce/xfce4-power-manager.xml config/includes.chroot/etc/xdg/xfce4/xfconf/xfce-perchannel-xml/ -ADD config/01-build_hooks/xfce/xfwm4.xml config/includes.chroot/etc/xdg/xfce4/xfconf/xfce-perchannel-xml/ - -## Install themes for xfwm4 -ADD config/01-build_hooks/themes config/includes.chroot/usr/share/themes/ - -# NTP server configuration -ADD config/01-build_hooks/ntp/timesyncd.conf config/includes.chroot/etc/systemd/ - -## Post install hooks -ADD config/02-post_install_hooks/* config/hooks/live/ - -# Boot time hooks -ADD config/03-boot_hooks/* config/includes.chroot/lib/live/config/ - -# Configure firewall hook -RUN echo "firewall ${server_ip} ${server_port}\n" >> config/includes.chroot/lib/live/config/9999-firewall - -# Add config file -ADD config/config auto/ - -RUN lb config -CMD ["lb", "build"] +RUN wget https://go.dev/dl/$archive && \ + tar -C /usr/local -xzf $archive && \ + rm $archive diff --git a/live_exam_os/Makefile b/live_exam_os/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..cb7365cf29ca638d9be6707ac9686e17f0eda457 --- /dev/null +++ b/live_exam_os/Makefile @@ -0,0 +1,38 @@ +image_name := builder_alpine_iso +alpine_version := "3.20.3" +iso_file := image.iso +output := output +squashfs_file := ${output}/squash.rootfs +root_fs := ${output}/rootfs +initrd_fs := ${output}/initrd +iso_path := ${output}/iso +server_ip := "127.0.0.1" +server_port := "1077" +cert := "ca-cert.pem" +exam_user := "user" +exam_pwd := "password" + +all: build + +build: build_container clean + sudo docker run -it --rm -v $(PWD)/..:/data --workdir /data/live_exam_os --privileged -e SQUASHFS=${squashfs_file} -e ROOTFS_DIR=${root_fs} -e INITRD_DIR=${initrd_fs} -e ISO_DIR=${iso_path} -e SERVER="${server_ip}:${server_port}" -e CERT=${cert} -e EXAM_USER=${exam_user} -e EXAM_PWD=${exam_pwd} ${image_name} ./build.sh ${iso_file} "123" --alpine-version ${alpine_version} --user-password "0" + sudo chown ${USER}:${USER} ${iso_file} + +no_luks: build_container clean + sudo docker run -it --rm -v $(PWD)/..:/data --workdir /data/live_exam_os --privileged -e SQUASHFS=${squashfs_file} -e ROOTFS_DIR=${root_fs} -e INITRD_DIR=${initrd_fs} -e ISO_DIR=${iso_path} -e SERVER="${server_ip}:${server_port}" -e CERT=${cert} -e EXAM_USER=${exam_user} -e EXAM_PWD=${exam_pwd} ${image_name} ./build.sh ${iso_file} '' --no-luks --alpine-version ${alpine_version} --user-password "0" + sudo chown ${USER}:${USER} ${iso_file} + +build_container: + sudo docker build -t ${image_name} --build-arg ALPINE_VERSION=${alpine_version} . + +clean: + sudo rm -rf ${iso_file} ${output} + +uefi: + qemu-system-x86_64 -bios /usr/share/OVMF/x64/OVMF.fd -drive file=${iso_file},format=raw -boot d -m 16G -smp 4 -netdev user,id=n1 -device virtio-net-pci,netdev=n1 + +bios: + qemu-system-x86_64 -drive file=${iso_file},format=raw -boot d -m 4G -smp 4 + +bios_cd: + qemu-system-x86_64 -drive file=${iso_file},media=cdrom,if=ide,readonly=on -boot d -m 4G -smp 4 diff --git a/live_exam_os/README.md b/live_exam_os/README.md new file mode 100644 index 0000000000000000000000000000000000000000..2a6989a549164d1f08cba57f684ad338022883e4 --- /dev/null +++ b/live_exam_os/README.md @@ -0,0 +1,103 @@ +# live_exam_os + +This project aims to create a minimal live operating system in the form of an ISO image, specifically designed for use on any computer. The generated ISO boots directly into a lightweight XFCE desktop environment and automatically launches the nexus-client. The focus is on simplicity, speed and portability. + +The ISO is based on Alpine Linux, known for its small footprint and security. LUKS encryption to secure the filesystem is enabled by default and can be disabled. + +## Features + + - Minimal ISO: Starts with a lightweight Alpine Linux base. + - Encryption: Utilizes LUKS encryption for securing the filesystem (optional). + - Desktop Environment: Configured for autologin with a minimal desktop environment. + - Nexus Client: Auto-launches the nexus-client at startup. + - Customizable: Flexible options for user credentials, Alpine version, and additional files. + +## Prerequisites + + - Docker: Used to containerize the build process. + - QEMU: Optional, for testing the generated ISO. + +## Environment Setup + +The build.sh script use several environment variables for flexibility: + +| Variable | Description |Example| +|-|-|-| +| SQUASHFS | Path to SquashFS file | out/squash.rootfs | +| ROOTFS_DIR | Temporary root filesystem directory | out/rootfs | +| INITRD_DIR | Temporary initrd directory | out/initrd | +| ISO_DIR| Temporary ISO directory | out/iso | +| SERVER | Server details | 127.0.0.1:1077 | +| CERT| Path to Certificate file |ca-cert.pem | +| EXAM_USER| Default user for exam client| user | +| EXAM_PWD| Default password for exam client | password | + +## build.sh Script + +The script build.sh generates the live ISO with various options for customization. + +### Syntax + +./build.sh iso_output_path luks_passphrase [options] + +### Required Arguments + + - iso_output_path: Path to save the generated ISO image (e.g., out/iso/alpine.iso). + - luks_passphrase: Passphrase for LUKS encryption. Leave blank when using --no-luks. + +### Options + + - --no-luks: Disable LUKS encryption (makes luks_passphrase optional). + - --alpine-version: Specify Alpine Linux version (default: 3.20.3). + - --root-enabled: Enable root access (default: disabled). + - --root-password: Set the root password (ignored if root is disabled). + - --user-password: Set the default user password. + +### Example Usage + +#### With Encryption: + +```bash +./build.sh out/iso/alpine.iso 'my_luks_pass' --alpine-version 3.16 --root-enabled yes --root-password 'rootpass' --user-password 'userpass' +``` + +#### Without Encryption: +```bash +./build.sh out/iso/alpine.iso '' --no-luks --alpine-version 3.18 +``` + + +## Usage Instructions +### Build the ISO + +The core ISO creation is handled by the script build.sh. For development, a Makefile is included to set up the environment and execute the script inside a Docker container. + +#### Buld the ISO with encryption +Builds an encrypted ISO using LUKS with a default password of "123". +``` +make build +``` + +#### Build the ISO without encryption +``` +make no_luks +``` + +### Testing the ISO + +After building the ISO, you can test it using QEMU: + +#### UEFI Environment: +``` +make uefi +``` + +#### BIOS Environment: +``` +make bios +``` + +#### BIOS as CD-ROM: +``` +make bios_cd +``` diff --git a/live_exam_os/build.sh b/live_exam_os/build.sh new file mode 100755 index 0000000000000000000000000000000000000000..b98f701c864967bbc73a94747a6c0634762f6125 --- /dev/null +++ b/live_exam_os/build.sh @@ -0,0 +1,240 @@ +#!/bin/sh + +ALPINE_VERSION="3.20.3" +ROOT_ENABLED="no" +LUKS_ENABLED="yes" +ROOT_PASSWORD="" +USER_PASSWORD="" +LUKS_IMG="squash.rootfs.luks" +BOOT_FOLDER="$ISO_DIR/boot" + +helper() { + echo "USAGE: $(basename "$0") iso_output_path luks_passphrase [options]" + echo + echo "Required arguments:" + echo " iso_output_path Path where the generated ISO image will be saved (e.g., out/iso/alpine.iso)" + echo " luks_passphrase LUKS encryption passphrase for securing the filesystem" + echo + echo "Options:" + echo " --no-luks Disable LUKS encryption (makes luks_passphrase optional)" + echo " --alpine-version Specify the Alpine Linux version to use (default: 3.20.3)" + echo " --root-enabled Enable root access (default: disabled)" + echo " --root-password Set the root password (ignored if root is disabled)" + echo " --user-password Set the default user password" + echo + echo "Environment Setup Parameters:" + echo " SQUASHFS Path to the SquashFS file (e.g., out/squash.rootfs)" + echo " ROOTFS_DIR Path to the temporary filesystem directory (e.g., out/rootfs)" + echo " INITRD_DIR Temporary directory for initrd (e.g., out/initrd)" + echo " ISO_DIR Path to the temporary ISO directory (e.g., out/iso)" + echo " SERVER IP of the nexus server (e.g., 127.0.0.1:1077)" + echo " CERT Path to the Certificate file (e.g., ca-cert.pem)" + echo " EXAM_USER Default user for exam client (e.g., user)" + echo " EXAM_PWD Default password for exam client (e.g., password)" + echo + echo "Example Usage:" + echo " $(basename "$0") out/iso/alpine.iso 'my_luks_pass' --alpine-version 3.16 --root-enabled yes --root-password 'rootpass' --user-password 'userpass'" + echo " $(basename "$0") out/iso/alpine.iso '' --no-luks --alpine-version 3.18" + exit 1 +} + +check_container_and_alpine_version() { + if [ ! -f "/.dockerenv" ] && [ ! -f "/run/.containerenv" ]; then + echo "Error: This script should be run inside a container environment on Alpine Linux version $ALPINE_VERSION." + helper + fi + + if [ -f "/etc/os-release" ]; then + . /etc/os-release + if [ "$ID" != "alpine" ] || [ "$VERSION_ID" != "$ALPINE_VERSION" ]; then + echo "Error: This script should be run inside a container environment on Alpine Linux version $ALPINE_VERSION." + echo "Actual version: $VERSION_ID" + helper + fi + else + echo "Error: This script should be run inside a container environment on Alpine Linux version $ALPINE_VERSION." + helper + fi +} + +check_environment_var() { + if [ -z $SQUASHFS ] || [ -z $ROOTFS_DIR ] || [ -z $INITRD_DIR ] || [ -z $ISO_DIR ]; then + echo "Error: Environment variables aren't set" + helper + fi +} + +run() { + chroot "$ROOTFS_DIR" $@ +} + +if [ "$#" -lt 2 ]; then + helper +fi + +ISO_OUTPUT_PATH="$1" +LUKS_PASSPHRASE="$2" +shift 2 + +while [ "$#" -gt 0 ]; do + case "$1" in + --no-luks) + LUKS_ENABLED="no" + shift + ;; + --alpine-version) + if [ -n "$2" ]; then + ALPINE_VERSION="$2" + shift 2 + else + echo "Error: --alpine-version requires an argument" >&2 + helper + fi + ;; + --root-enabled) + if [ "$2" = "yes" ] || [ "$2" = "no" ]; then + ROOT_ENABLED="$2" + shift 2 + else + echo "Error: --root-enabled must be 'yes' or 'no'" >&2 + helper + fi + ;; + --root-password) + if [ -n "$2" ]; then + ROOT_PASSWORD="$2" + shift 2 + else + echo "Error: --root-password requires an argument" >&2 + helper + fi + ;; + --user-password) + if [ -n "$2" ]; then + USER_PASSWORD="$2" + shift 2 + else + echo "Error: --user-password requires an argument" >&2 + helper + fi + ;; + *) + echo "Unknown option: $1" >&2 + helper + ;; + esac +done + +if [ "$LUKS_ENABLED" = "yes" ] && [ -z "$LUKS_PASSPHRASE" ]; then + echo "Error: LUKS encryption is enabled, but no passphrase was provided." >&2 + helper +fi + +check_container_and_alpine_version +check_environment_var + +echo "[Compiling nexus-exam...]" +cd .. +make build_nexus-exam +mkdir -p live_exam_os/$ROOTFS_DIR/usr/local/bin +cp build/nexus-exam live_exam_os/$ROOTFS_DIR/usr/local/bin/nexus-exam +make clean_client +cd - + +echo "[Create initramfs...]" +rm -rf $INITRD_DIR +mkdir -p "$INITRD_DIR" + +apk update +if [ $LUKS_ENABLED = "yes" ]; then + cp config/01-initramfs/init $INITRD_DIR/init + packages="busybox musl cryptsetup cryptsetup-libs popt libuuid libblkid + device-mapper-libs libcrypto3 argon2-libs json-c libeconf + udev kmod-libs zlib xz-libs zstd-libs" +else + cp config/01-initramfs/init_no_luks $INITRD_DIR/init + packages="busybox musl libblkid libeconf libcrypto3 + udev kmod-libs zlib xz-libs zstd-libs" +fi +chmod +x $INITRD_DIR/init +for package in $packages; do + apk fetch -s "$package" > "$INITRD_DIR/$package.apk" + tar -xzf "$INITRD_DIR/$package.apk" -C $INITRD_DIR + rm "$INITRD_DIR/$package.apk" +done + +echo "[Create filesystem...]" +mkdir -p "$ROOTFS_DIR" +apk add --initdb --root "$ROOTFS_DIR" +cp /etc/apk/repositories "$ROOTFS_DIR/etc/apk/repositories" + +echo "[Installing packages...]" +apk update --root "$ROOTFS_DIR" --allow-untrusted +apk add --root "$ROOTFS_DIR" --allow-untrusted $(cat config/02-packages_install/packages) &>/dev/null +mkdir -p $INITRD_DIR/lib +cp -r $ROOTFS_DIR/lib/modules $INITRD_DIR/lib/ + +echo "[Uploading configuration file...]" +cd config/03-customisation +cp -R --parents * ../../$ROOTFS_DIR +cd ../.. + +echo "[Post-install...]" +for script in config/04-post_install/*.sh; do + ./$script +done + +echo "[Moving kernel from rootfs to iso/boot...]" +mkdir -p $BOOT_FOLDER +cp $ROOTFS_DIR/boot/vmlinuz-* $BOOT_FOLDER +rm -rf $ROOTFS_DIR/boot + +echo "[Create initrd...]" +mkdir -p "$INITRD_DIR/usr/bin" +chroot "$INITRD_DIR" /bin/busybox --install +TMP_PWD=$(pwd) +cd $INITRD_DIR +find . | cpio -R root:root -H newc -o | gzip > $TMP_PWD/$BOOT_FOLDER/initrd +cd $TMP_PWD + +echo "[Create squash.rootfs..]" +mksquashfs "$ROOTFS_DIR" "$SQUASHFS" &>/dev/null + +if [ $LUKS_ENABLED = "yes" ]; 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 + TOTAL_SIZE=$(( (TOTAL_SIZE + SECTOR_SIZE - 1) / SECTOR_SIZE * SECTOR_SIZE )) + + fallocate -l $TOTAL_SIZE "$ISO_DIR/$LUKS_IMG" + + echo -n "$LUKS_PASSPHRASE" | cryptsetup luksFormat "$ISO_DIR/$LUKS_IMG" --batch-mode + echo -n "$LUKS_PASSPHRASE" | cryptsetup luksOpen "$ISO_DIR/$LUKS_IMG" container + dd if="$SQUASHFS" of=/dev/mapper/container bs=4M + + cryptsetup luksClose container +else + cp "$SQUASHFS" "$ISO_DIR/squash.rootfs" +fi + +echo "[Create iso...]" + +mkdir -p "$ISO_DIR/EFI/BOOT" +chown -R root:root $ISO_DIR + +cp /usr/share/limine/BOOTX64.EFI "$ISO_DIR/EFI/BOOT/" +cp /usr/share/limine/*.bin "$ISO_DIR/" +cp /usr/share/limine/*.sys "$ISO_DIR/" + +cp config/00-bootloader/limine.cfg "$ISO_DIR/limine.cfg" + +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 "limine-uefi-cd.bin" \ + -efi-boot-part --efi-boot-image --protective-msdos-label \ + -volid "NEXUSCLIENTISO" \ + "$ISO_DIR" -o image.iso + +limine bios-install image.iso diff --git a/live_exam_os/build_live_exam_iso b/live_exam_os/build_live_exam_iso deleted file mode 100755 index f95148f793a848ba716d0f65b432bb26ecfda1cc..0000000000000000000000000000000000000000 --- a/live_exam_os/build_live_exam_iso +++ /dev/null @@ -1,113 +0,0 @@ -#!/bin/bash - -LIVEBUILD_ISO_NAME=live-image-amd64.hybrid.iso -#LIVEBUILD_ISO_NAME=live-image-amd64.iso - -TMP_CONTAINER_NAME=`echo $RANDOM | md5sum | head -c 20; echo;` -IMG_SUFFIX=`echo $RANDOM | md5sum | head -c 8; echo;` -DOCKER_IMG="nexus-live-exam-os_"$IMG_SUFFIX - -abort () { - echo "ABORT." - exit 1 -} - -usage () { - app=`basename $0` - echo "USAGE: $app -s IP -p PORT -c CERT -u USER -w PWD -o ISO" >&2 - echo "Build an ISO image of a nexus live exam OS." >&2 - echo " -s ip address of the nexus-server" >&2 - echo " -p port on which nexus-server listens" >&2 - echo " -c path to public CA certificate file (ca-cert.pem)" >&2 - echo " -u user nexus-exam uses to connect to nexus server" >&2 - echo " -w password (in clear) for user above" >&2 - echo " -o name of ISO image to create" >&2 - exit 1 -} - -build_docker_image () { - # Create temp directory where nexus-exam will be compiled - dir=tmp.dir.$$ - mkdir $dir || abort - # Copy pub certificate - cp $CERT $dir || abort - # Copy Makefile, sources files and git files (as we insert the git commit hash into nexus-exam) - cp ../Makefile $dir || abort - cp -r ../src $dir || abort - cp -r ../.git $dir || abort - cert_file=`basename $CERT` - - # build context is ".." since we need access to the ../src directory in order to build nexus-exam - docker buildx build . -f Dockerfile -t "$DOCKER_IMG" --build-arg base_dir=$dir --build-arg server_ip=$SERVER_IP --build-arg server_port=$SERVER_PORT --build-arg cert=$cert_file --build-arg exam_user=$EXAM_USER --build-arg exam_pwd=$EXAM_PWD - build_status=$? - - rm -rf $dir - - if [ $build_status -ne 0 ] ; then - echo "FAILED building docker image!" - abort - fi - - echo "Docker image \"$DOCKER_IMG\" sucessfully built" -} - -remove_image_and_tmp_container () { - # Remove temporary container - if docker rm "$TMP_CONTAINER_NAME" ; then - echo "Successfully removed $TMP_CONTAINER_NAME container" - else - echo "FAILED removing $TMP_CONTAINER_NAME container!" - fi - - # Remove image - docker rmi $DOCKER_IMG -} - -if [ $# -ne 12 ] ; then usage ; fi - -while getopts 's:p:c:u:w:o:' OPTION; do - case "$OPTION" in - s) SERVER_IP="$OPTARG" ;; - p) SERVER_PORT="$OPTARG" ;; - c) CERT="$OPTARG" ;; - u) EXAM_USER="$OPTARG" ;; - w) EXAM_PWD="$OPTARG" ;; - o) ISO="$OPTARG" ;; - *) usage - esac -done - -error=0 - -echo "Building nexus live exam OS image \"$ISO\" ..." -echo "Using nexus-server @ $SERVER_IP:$SERVER_PORT" - -build_docker_image - -# Run temporary live-build container -if docker run --privileged --cgroupns private --name $TMP_CONTAINER_NAME $DOCKER_IMG ; then - echo "ISO image $ISO successfully built" -else - echo "FAILED building ISO image $ISO!" - remove_image_and_tmp_container - abort -fi - -# Retrieve live-image from temporary container -if docker cp $TMP_CONTAINER_NAME:/live-default/$LIVEBUILD_ISO_NAME $ISO ; then - echo "Successfully extracted $ISO from $TMP_CONTAINER_NAME container" -else - error=1 - echo "FAILED extracting $ISO from $TMP_CONTAINER_NAME container!" -fi - -remove_image_and_tmp_container - -if [[ -e $ISO ]] ; then - echo -e "\nSUCCESSFULLY created $ISO" -else - echo -e "\nFAILED creating $ISO!" - exit 1 -fi - -exit 0 diff --git a/live_exam_os/config/00-bootloader/grub_config.cfg b/live_exam_os/config/00-bootloader/grub_config.cfg deleted file mode 100644 index 2ceffbdc314210a5487730718e81675c533c4542..0000000000000000000000000000000000000000 --- a/live_exam_os/config/00-bootloader/grub_config.cfg +++ /dev/null @@ -1,2 +0,0 @@ -set default=0 -set timeout=0 diff --git a/live_exam_os/config/00-bootloader/limine.cfg b/live_exam_os/config/00-bootloader/limine.cfg new file mode 100644 index 0000000000000000000000000000000000000000..d52659cf1b0559c70a1b04ad32c007efbac3383e --- /dev/null +++ b/live_exam_os/config/00-bootloader/limine.cfg @@ -0,0 +1,7 @@ +TIMEOUT=0 + +:AlpineLinux + PROTOCOL=linux + KERNEL_PATH=boot:///boot/vmlinuz-lts + KERNEL_CMDLINE=quiet + MODULE_PATH=boot:///boot/initrd diff --git a/live_exam_os/config/01-build_hooks/ntp/timesyncd.conf b/live_exam_os/config/01-build_hooks/ntp/timesyncd.conf deleted file mode 100644 index d0551a9eea7a37dc9019e36654e3bf0c5aad4836..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/ntp/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/01-build_hooks/packages.list.chroot b/live_exam_os/config/01-build_hooks/packages.list.chroot deleted file mode 100644 index ac2514052572b936fd84acb0df1b166eb491f973..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/packages.list.chroot +++ /dev/null @@ -1,13 +0,0 @@ -task-laptop -xfce4 -xfce4-terminal -xfce4-power-manager -xfce4-battery-plugin -ufw -virt-viewer -firmware-iwlwifi -network-manager -network-manager-gnome -systemd-timesyncd -light -numlockx diff --git a/live_exam_os/config/01-build_hooks/systemd/screen_settings.service b/live_exam_os/config/01-build_hooks/systemd/screen_settings.service deleted file mode 100644 index 9ee3773a738d3ae8f1cc696674c5fab5dc3a9318..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/systemd/screen_settings.service +++ /dev/null @@ -1,11 +0,0 @@ -[Unit] -Description=Screen settings -After=display-manager.service -Requires=display-manager.service - -[Service] -Type=oneshot -ExecStart=/usr/local/bin/screen_settings.sh - -[Install] -WantedBy=default.target diff --git a/live_exam_os/config/01-build_hooks/systemd/screen_settings.sh b/live_exam_os/config/01-build_hooks/systemd/screen_settings.sh deleted file mode 100644 index 670b38a0798901b3e2deafb6bd404148b5594922..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/systemd/screen_settings.sh +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/bash - -# Set brightness at 100% -screen=`xrandr -q|grep ' connected'|head -n1|cut -d ' ' -f1` -xrandr --output $screen --brightness 1 - -# Disable screen blanking -xset s off diff --git a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/README b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/README deleted file mode 100644 index 0ba551620417658ecf5de6739267df429a693098..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/Daloa/xfwm4/bottom-active.png b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/bottom-active.png deleted file mode 100644 index 8ada929102d6f5cc2dbe3fea04eb880130bfd08e..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/bottom-active.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/bottom-active.xpm b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/bottom-active.xpm deleted file mode 100644 index 9f0dc6ea604792f4dc9e4daad444dd12bc5d8ee3..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/Daloa/xfwm4/bottom-inactive.png b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/bottom-inactive.png deleted file mode 100644 index 8ada929102d6f5cc2dbe3fea04eb880130bfd08e..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/bottom-inactive.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/bottom-inactive.xpm b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/bottom-inactive.xpm deleted file mode 100644 index 845fae7082eb5acff60b53a6ee0255a60067fcf9..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/Daloa/xfwm4/bottom-left-active.png b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/bottom-left-active.png deleted file mode 100644 index 3b9e9f81250acd32eb52d467c24ff6ae0760bd3a..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/bottom-left-active.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/bottom-left-active.xpm b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/bottom-left-active.xpm deleted file mode 100644 index 33db4f0daa7e5c99e66daabe42361ddf2f313658..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/Daloa/xfwm4/bottom-left-inactive.png b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/bottom-left-inactive.png deleted file mode 100644 index 3b9e9f81250acd32eb52d467c24ff6ae0760bd3a..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/bottom-left-inactive.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/bottom-left-inactive.xpm b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/bottom-left-inactive.xpm deleted file mode 100644 index 97465e3916a9493b77437623c39e44bf3728924e..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/Daloa/xfwm4/bottom-right-active.png b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/bottom-right-active.png deleted file mode 100644 index a4a8290408b73aa804b839d9605906cafd0928e5..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/bottom-right-active.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/bottom-right-active.xpm b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/bottom-right-active.xpm deleted file mode 100644 index 1a16e8c5d8c007032601326a8ad9770e23ed98e8..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/Daloa/xfwm4/bottom-right-inactive.png b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/bottom-right-inactive.png deleted file mode 100644 index a4a8290408b73aa804b839d9605906cafd0928e5..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/bottom-right-inactive.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/bottom-right-inactive.xpm b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/bottom-right-inactive.xpm deleted file mode 100644 index 9047eb6dc0b59d1a040836a5d447b25e09c7ae6f..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/Daloa/xfwm4/close-active.png b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/close-active.png deleted file mode 100644 index 9476859cf75dcdd2430e8e0f74d29b67b2b7df9f..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/close-active.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/close-active.xpm b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/close-active.xpm deleted file mode 100644 index cad39f277fa404ca6c85f3119ca083d019358fef..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/Daloa/xfwm4/close-inactive.png b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/close-inactive.png deleted file mode 100644 index 7ebe832cae4c504ae5a863f1340bc4fab9176245..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/close-inactive.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/close-inactive.xpm b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/close-inactive.xpm deleted file mode 100644 index 4dbc94f6802617bb03a1afce3dcdd100bf9b2f93..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/Daloa/xfwm4/close-prelight.png b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/close-prelight.png deleted file mode 100644 index e708929654301380684653764dea47f6bb7c2d2f..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/close-prelight.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/close-prelight.xpm b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/close-prelight.xpm deleted file mode 100644 index b2bedbba552903f2ff8e286cb5a785d26a8f6843..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/Daloa/xfwm4/close-pressed.png b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/close-pressed.png deleted file mode 100644 index bb0dd68ee5dfecc7bea926f805c4ce2c00ddf443..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/close-pressed.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/close-pressed.xpm b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/close-pressed.xpm deleted file mode 100644 index b2bedbba552903f2ff8e286cb5a785d26a8f6843..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/Daloa/xfwm4/hide-active.png b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/hide-active.png deleted file mode 100644 index f1fb15384acd538881c018e8824fe4c4c0e445d3..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/hide-active.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/hide-active.xpm b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/hide-active.xpm deleted file mode 100644 index 1cf3332866141768e966096ca1cab1e3e0120bd2..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/Daloa/xfwm4/hide-inactive.png b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/hide-inactive.png deleted file mode 100644 index 2853f52a7acb27cbee7e60c77ef8f5309214a8e3..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/hide-inactive.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/hide-inactive.xpm b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/hide-inactive.xpm deleted file mode 100644 index c7ba106d20af916c5bec88ea96cfda39824b4c06..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/Daloa/xfwm4/hide-prelight.png b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/hide-prelight.png deleted file mode 100644 index 28d6f5cbf0996ae979f264a8d598966830729b1c..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/hide-prelight.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/hide-prelight.xpm b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/hide-prelight.xpm deleted file mode 100644 index f8c34cf0b96668dd03a34536003ff46588800506..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/Daloa/xfwm4/hide-pressed.png b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/hide-pressed.png deleted file mode 100644 index c6afcdd72088d589564d082b904c3f34314fa900..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/hide-pressed.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/hide-pressed.xpm b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/hide-pressed.xpm deleted file mode 100644 index f8c34cf0b96668dd03a34536003ff46588800506..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/Daloa/xfwm4/left-active.png b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/left-active.png deleted file mode 100644 index 4040e57358789c8cb06764aec4395cbfc2e824cc..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/left-active.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/left-active.xpm b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/left-active.xpm deleted file mode 100644 index 8af6328b7aee269af88dfaea649abab687988042..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/Daloa/xfwm4/left-inactive.png b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/left-inactive.png deleted file mode 100644 index 4040e57358789c8cb06764aec4395cbfc2e824cc..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/left-inactive.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/left-inactive.xpm b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/left-inactive.xpm deleted file mode 100644 index 18997b2f47ea61ab8949ddbcc18fba596fe48648..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/Daloa/xfwm4/maximize-active.png b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/maximize-active.png deleted file mode 100644 index ace39e6e8e3d2344586438f2372eb5dfad351de9..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/maximize-active.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/maximize-active.xpm b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/maximize-active.xpm deleted file mode 100644 index 89bfb3508895ac11668893d90f6902a85d201e8d..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/Daloa/xfwm4/maximize-inactive.png b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/maximize-inactive.png deleted file mode 100644 index 8c5a62417aa2217f5bc2e3bc2d43578f2b2ba7cf..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/maximize-inactive.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/maximize-inactive.xpm b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/maximize-inactive.xpm deleted file mode 100644 index 3e53a64bc367c00eacbb8bc4d29a011aba539a10..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/Daloa/xfwm4/maximize-prelight.png b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/maximize-prelight.png deleted file mode 100644 index 21ab6b74b0540e4a53887bcbe350fd67408339a5..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/maximize-prelight.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/maximize-prelight.xpm b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/maximize-prelight.xpm deleted file mode 100644 index 921aab71c625c1ee53e4c3b3178482119c8664fe..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/Daloa/xfwm4/maximize-pressed.png b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/maximize-pressed.png deleted file mode 100644 index 6ac3c103f46a57c947c80af6f43bda5667882fc6..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/maximize-pressed.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/maximize-pressed.xpm b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/maximize-pressed.xpm deleted file mode 100644 index 921aab71c625c1ee53e4c3b3178482119c8664fe..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/Daloa/xfwm4/maximize-toggled-active.png b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/maximize-toggled-active.png deleted file mode 100644 index 5164bfee14ceaab77079f90fc034c016b3de13a0..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/maximize-toggled-active.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/maximize-toggled-active.xpm b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/maximize-toggled-active.xpm deleted file mode 100644 index 716034b2cbdb87fe54cfe5211e9800078bc6af19..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/Daloa/xfwm4/maximize-toggled-inactive.png b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/maximize-toggled-inactive.png deleted file mode 100644 index 443a96bd20296db84b698c484945bc0c2a3f5e29..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/maximize-toggled-inactive.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/maximize-toggled-inactive.xpm b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/maximize-toggled-inactive.xpm deleted file mode 100644 index ec0a9bc4cb56b6bce49e3f61ddc3c54b15bcedc6..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/Daloa/xfwm4/maximize-toggled-prelight.png b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/maximize-toggled-prelight.png deleted file mode 100644 index 7c3d60a2e1d44cdcbd3d8f3c3ac5cd0b489b4848..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/maximize-toggled-prelight.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/maximize-toggled-prelight.xpm b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/maximize-toggled-prelight.xpm deleted file mode 100644 index 35b929d77c30e8b1eac58b3e563924c6a74b744f..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/Daloa/xfwm4/maximize-toggled-pressed.png b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/maximize-toggled-pressed.png deleted file mode 100644 index 11f7e86efffaa4a21ee385d72a2ff4e5ddb87eaa..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/maximize-toggled-pressed.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/maximize-toggled-pressed.xpm b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/maximize-toggled-pressed.xpm deleted file mode 100644 index 35b929d77c30e8b1eac58b3e563924c6a74b744f..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/Daloa/xfwm4/menu-active.png b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/menu-active.png deleted file mode 100644 index c25ab44c8368bd699d4c9a215bd941cf40ff265f..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/menu-active.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/menu-active.xpm b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/menu-active.xpm deleted file mode 100644 index 1a243a4c15105f7c480b674fc6d6dcabf0d7b382..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/Daloa/xfwm4/menu-inactive.png b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/menu-inactive.png deleted file mode 100644 index c25ab44c8368bd699d4c9a215bd941cf40ff265f..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/menu-inactive.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/menu-inactive.xpm b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/menu-inactive.xpm deleted file mode 100644 index a09d91c97fbf3af301fadb22732908b2b6502935..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/Daloa/xfwm4/menu-prelight.png b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/menu-prelight.png deleted file mode 100644 index cd9e0e0652d3820ee282935135064970d9cda128..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/menu-prelight.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/menu-prelight.xpm b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/menu-prelight.xpm deleted file mode 100644 index 84a25aeede8ab23054e35f8d7a530f15eb0d873f..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/Daloa/xfwm4/menu-pressed.png b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/menu-pressed.png deleted file mode 100644 index 0a6bae6eb1f1d8a6fb5186bbdde8363372e1fb2d..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/menu-pressed.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/menu-pressed.xpm b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/menu-pressed.xpm deleted file mode 100644 index 84a25aeede8ab23054e35f8d7a530f15eb0d873f..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/Daloa/xfwm4/right-active.png b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/right-active.png deleted file mode 100644 index 91e31c901423fce24dc9681b73350312276eb06e..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/right-active.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/right-active.xpm b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/right-active.xpm deleted file mode 100644 index 7b9f6b926b1c4afb23f6454981d1535e0fd9863e..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/Daloa/xfwm4/right-inactive.png b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/right-inactive.png deleted file mode 100644 index 91e31c901423fce24dc9681b73350312276eb06e..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/right-inactive.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/right-inactive.xpm b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/right-inactive.xpm deleted file mode 100644 index 38e76c2ff040a53aa1a6268d942a0b1e7cf4597f..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/Daloa/xfwm4/shade-active.png b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/shade-active.png deleted file mode 100644 index 73b1476cfeea9d2b950b14878b0f8beed2d68c96..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/shade-active.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/shade-active.xpm b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/shade-active.xpm deleted file mode 100644 index ff55801730378ce682ec30e8b4c5f7a70dbc9c4c..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/Daloa/xfwm4/shade-inactive.png b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/shade-inactive.png deleted file mode 100644 index 4bc5956e38b3fd2897dc80f8a2c8dc877664cd5f..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/shade-inactive.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/shade-inactive.xpm b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/shade-inactive.xpm deleted file mode 100644 index 596f0fa459b2aa4e82e68fee2cde3cc2ecaa10e4..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/Daloa/xfwm4/shade-prelight.png b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/shade-prelight.png deleted file mode 100644 index 5403d132c38083ca2d6cafd6a948aedb8f8a020d..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/shade-prelight.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/shade-prelight.xpm b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/shade-prelight.xpm deleted file mode 100644 index 3f018c92be4c2a87d661af20cc34aeb82b93769b..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/Daloa/xfwm4/shade-pressed.png b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/shade-pressed.png deleted file mode 100644 index 753127a44a833028f44b010ff8ed4c781fe66a2f..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/shade-pressed.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/shade-pressed.xpm b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/shade-pressed.xpm deleted file mode 100644 index 3f018c92be4c2a87d661af20cc34aeb82b93769b..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/Daloa/xfwm4/shade-toggled-active.png b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/shade-toggled-active.png deleted file mode 100644 index 09dbdd9e41fd9f718b775392c32ba55385807abb..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/shade-toggled-active.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/shade-toggled-active.xpm b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/shade-toggled-active.xpm deleted file mode 100644 index af734f9c15b016ccfbb417e5b5be4a436340732d..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/Daloa/xfwm4/shade-toggled-inactive.png b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/shade-toggled-inactive.png deleted file mode 100644 index 8ecaeebc009f996cefc61066d665b255b31272ec..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/shade-toggled-inactive.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/shade-toggled-inactive.xpm b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/shade-toggled-inactive.xpm deleted file mode 100644 index 0ef117155a9edb68dee23d191600c4201bd68791..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/Daloa/xfwm4/shade-toggled-prelight.png b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/shade-toggled-prelight.png deleted file mode 100644 index b3292c8dd0dea37443740f98874c254e31bbe83f..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/shade-toggled-prelight.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/shade-toggled-prelight.xpm b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/shade-toggled-prelight.xpm deleted file mode 100644 index 2670b1e9b63a9f0cff281aa33f3707ca67a0fec2..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/Daloa/xfwm4/shade-toggled-pressed.png b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/shade-toggled-pressed.png deleted file mode 100644 index f454097b35fab5224774bfbf9e7285e4181c2147..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/shade-toggled-pressed.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/shade-toggled-pressed.xpm b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/shade-toggled-pressed.xpm deleted file mode 100644 index 2670b1e9b63a9f0cff281aa33f3707ca67a0fec2..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/Daloa/xfwm4/stick-active.png b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/stick-active.png deleted file mode 100644 index 52c982129145faf6b5585510d337a6ebb96cd491..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/stick-active.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/stick-active.xpm b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/stick-active.xpm deleted file mode 100644 index e86acd6614dc1b9605fde1118ca89888aab4ba55..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/Daloa/xfwm4/stick-inactive.png b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/stick-inactive.png deleted file mode 100644 index 9f58ec6b63e5c38cbd5bfec44d01f721b6dad491..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/stick-inactive.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/stick-inactive.xpm b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/stick-inactive.xpm deleted file mode 100644 index b1b4f769bd64a593100e2a267ee5c1a8cd441dd9..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/Daloa/xfwm4/stick-prelight.png b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/stick-prelight.png deleted file mode 100644 index d47a15c264e9f6d9b1b7e3f08d13c6afa767f3c3..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/stick-prelight.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/stick-prelight.xpm b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/stick-prelight.xpm deleted file mode 100644 index b4b0c3dedd804b37458bd1f4e19618102572e740..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/Daloa/xfwm4/stick-pressed.png b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/stick-pressed.png deleted file mode 100644 index c521f2110dee78671594decdc09a252479c50cb5..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/stick-pressed.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/stick-pressed.xpm b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/stick-pressed.xpm deleted file mode 100644 index b4b0c3dedd804b37458bd1f4e19618102572e740..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/Daloa/xfwm4/stick-toggled-active.png b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/stick-toggled-active.png deleted file mode 100644 index 9a35d900055f8bea343bc1e25287d89439167def..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/stick-toggled-active.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/stick-toggled-active.xpm b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/stick-toggled-active.xpm deleted file mode 100644 index 00ba83ae2ab969242a9ce90134e48c7978c8a048..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/Daloa/xfwm4/stick-toggled-inactive.png b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/stick-toggled-inactive.png deleted file mode 100644 index f1c4a7866ce0acfee44ef7ad978abd858744ae3a..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/stick-toggled-inactive.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/stick-toggled-inactive.xpm b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/stick-toggled-inactive.xpm deleted file mode 100644 index 3c17d9ebf9c1a2099c4022b747a5bda11ba21e5b..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/Daloa/xfwm4/stick-toggled-prelight.png b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/stick-toggled-prelight.png deleted file mode 100644 index 66f50f89c26b97271d6fe737405a3cfc565a0169..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/stick-toggled-prelight.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/stick-toggled-prelight.xpm b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/stick-toggled-prelight.xpm deleted file mode 100644 index d51375c2e0484d14e6c98328cf26786c6a5eda0c..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/Daloa/xfwm4/stick-toggled-pressed.png b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/stick-toggled-pressed.png deleted file mode 100644 index 6aed33629c8dc960167d9596edd96a776efd4a11..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/stick-toggled-pressed.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/stick-toggled-pressed.xpm b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/stick-toggled-pressed.xpm deleted file mode 100644 index d51375c2e0484d14e6c98328cf26786c6a5eda0c..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/Daloa/xfwm4/themerc b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/themerc deleted file mode 100644 index eef70cbf2389b7a70617f125c3d4018c7576abf2..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/Daloa/xfwm4/title-1-active.png b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/title-1-active.png deleted file mode 100644 index 5b761b2c028620e3fba2ef0d5ca9d601d91f444d..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/title-1-active.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/title-1-active.xpm b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/title-1-active.xpm deleted file mode 100644 index 77a3733b8537881c4f3a5383582bb16e5bd58d7d..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/Daloa/xfwm4/title-1-inactive.png b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/title-1-inactive.png deleted file mode 100644 index 5b761b2c028620e3fba2ef0d5ca9d601d91f444d..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/title-1-inactive.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/title-1-inactive.xpm b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/title-1-inactive.xpm deleted file mode 100644 index 04d5003fb545976279bead59e0cdde7c82df4edb..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/Daloa/xfwm4/title-2-active.png b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/title-2-active.png deleted file mode 100644 index 5b761b2c028620e3fba2ef0d5ca9d601d91f444d..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/title-2-active.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/title-2-active.xpm b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/title-2-active.xpm deleted file mode 100644 index 7562c6689c2a361bd0d4d8c6d00cf564daa412f0..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/Daloa/xfwm4/title-2-inactive.png b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/title-2-inactive.png deleted file mode 100644 index 5b761b2c028620e3fba2ef0d5ca9d601d91f444d..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/title-2-inactive.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/title-2-inactive.xpm b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/title-2-inactive.xpm deleted file mode 100644 index 409487ba1c9e25771c5ef9abef056880f04f42ec..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/Daloa/xfwm4/title-3-active.png b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/title-3-active.png deleted file mode 100644 index 5b761b2c028620e3fba2ef0d5ca9d601d91f444d..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/title-3-active.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/title-3-active.xpm b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/title-3-active.xpm deleted file mode 100644 index 9b9c0e26f20b4969586992c4abdd097f32da3097..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/Daloa/xfwm4/title-3-inactive.png b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/title-3-inactive.png deleted file mode 100644 index 5b761b2c028620e3fba2ef0d5ca9d601d91f444d..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/title-3-inactive.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/title-3-inactive.xpm b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/title-3-inactive.xpm deleted file mode 100644 index cdbea483062c356d91383273497175bfadaef4bd..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/Daloa/xfwm4/title-4-active.png b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/title-4-active.png deleted file mode 100644 index 5b761b2c028620e3fba2ef0d5ca9d601d91f444d..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/title-4-active.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/title-4-active.xpm b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/title-4-active.xpm deleted file mode 100644 index 421a34aba89e0bfbb14f9aa10277e9eef1421ad5..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/Daloa/xfwm4/title-4-inactive.png b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/title-4-inactive.png deleted file mode 100644 index 5b761b2c028620e3fba2ef0d5ca9d601d91f444d..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/title-4-inactive.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/title-4-inactive.xpm b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/title-4-inactive.xpm deleted file mode 100644 index a7be209a8fa3f658c19c4e49661e1bec6e58b195..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/Daloa/xfwm4/title-5-active.png b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/title-5-active.png deleted file mode 100644 index 5b761b2c028620e3fba2ef0d5ca9d601d91f444d..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/title-5-active.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/title-5-active.xpm b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/title-5-active.xpm deleted file mode 100644 index 4208fdc89c39ce613f615fe615949c2d45206c95..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/Daloa/xfwm4/title-5-inactive.png b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/title-5-inactive.png deleted file mode 100644 index 5b761b2c028620e3fba2ef0d5ca9d601d91f444d..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/title-5-inactive.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/title-5-inactive.xpm b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/title-5-inactive.xpm deleted file mode 100644 index 683eca5c3f9e346bc4429cc3f44d9c91c51b8669..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/Daloa/xfwm4/top-left-active.png b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/top-left-active.png deleted file mode 100644 index fbca735496f4c20e0a7d62a198e2a2812fbd450d..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/top-left-active.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/top-left-active.xpm b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/top-left-active.xpm deleted file mode 100644 index bac9aa49ab3494b1ffc5fd91a90060636569e1ed..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/Daloa/xfwm4/top-left-inactive.png b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/top-left-inactive.png deleted file mode 100644 index fbca735496f4c20e0a7d62a198e2a2812fbd450d..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/top-left-inactive.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/top-left-inactive.xpm b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/top-left-inactive.xpm deleted file mode 100644 index a5e3dc7f0a26f4441e2d2a028db905fff48295cd..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/Daloa/xfwm4/top-right-active.png b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/top-right-active.png deleted file mode 100644 index 65533a03207ad29cd524f4f131827fff4c75acfa..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/top-right-active.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/top-right-active.xpm b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/top-right-active.xpm deleted file mode 100644 index c3f5c60acc933c60748e25d2f859576f4b273c51..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/Daloa/xfwm4/top-right-inactive.png b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/top-right-inactive.png deleted file mode 100644 index 65533a03207ad29cd524f4f131827fff4c75acfa..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/top-right-inactive.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/top-right-inactive.xpm b/live_exam_os/config/01-build_hooks/themes/Daloa/xfwm4/top-right-inactive.xpm deleted file mode 100644 index 1dc245035ec6fcc98c6ab6b11d1d09f978618da3..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/i3/xfwm4/bottom-active.png b/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/bottom-active.png deleted file mode 100755 index 37ecf0f3bb501cc94e27a89ac6dc838c2839ed70..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/bottom-active.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/bottom-active.xpm b/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/bottom-active.xpm deleted file mode 100755 index bb61572cf61494a7d457e1d440d7b5ce9a676d81..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/i3/xfwm4/bottom-inactive.png b/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/bottom-inactive.png deleted file mode 100755 index 272988e084fea0341c9459d9f5f83ab4fdb29646..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/bottom-inactive.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/bottom-inactive.xpm b/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/bottom-inactive.xpm deleted file mode 100755 index 1e18f5fc0a06146cf9f4824d37419385229a9804..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/i3/xfwm4/bottom-left-active.png b/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/bottom-left-active.png deleted file mode 100755 index 581c2f74c589c541bb8ac42537d5392e75af494c..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/bottom-left-active.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/bottom-left-active.xpm b/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/bottom-left-active.xpm deleted file mode 100755 index d86961d55e5f998bcce11302b796f7fbeb649526..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/i3/xfwm4/bottom-left-inactive.png b/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/bottom-left-inactive.png deleted file mode 100755 index c7b853ed246f03f1a34c65d8189e5f126b657799..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/bottom-left-inactive.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/bottom-left-inactive.xpm b/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/bottom-left-inactive.xpm deleted file mode 100755 index 8b77d9fc1677710e5c9dcc7e8afb663608532a0f..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/i3/xfwm4/bottom-right-active.png b/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/bottom-right-active.png deleted file mode 100755 index 3cc6a875e7a16cd4e48796f4b1b9b0120bf7f6e1..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/bottom-right-active.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/bottom-right-active.xpm b/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/bottom-right-active.xpm deleted file mode 100755 index 43e3125427df0ec1c2cf0d98f83629cb36364ded..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/i3/xfwm4/bottom-right-inactive.png b/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/bottom-right-inactive.png deleted file mode 100755 index 5ac5fbbe2d377781571444a7e7a2ec5a0e9867cd..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/bottom-right-inactive.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/bottom-right-inactive.xpm b/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/bottom-right-inactive.xpm deleted file mode 100755 index a4363a13eb58cfc082b8c1ce56005b0cb121bf11..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/i3/xfwm4/left-active.png b/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/left-active.png deleted file mode 100755 index b1b186ebcad7d28858224186c1c738dfcd4ba430..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/left-active.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/left-active.xpm b/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/left-active.xpm deleted file mode 100755 index 363c18d40d2bda6daf59a50f10961fa389ac0222..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/i3/xfwm4/left-inactive.png b/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/left-inactive.png deleted file mode 100755 index 53f2f2a5074dbfa791069282c23b6143a3abb99c..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/left-inactive.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/left-inactive.xpm b/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/left-inactive.xpm deleted file mode 100755 index ecb117574c05d0dc3e9715816a8b0d7f090db646..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/i3/xfwm4/right-active.png b/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/right-active.png deleted file mode 100755 index 12283c3c7218c696dabbcf100021efca8e594af2..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/right-active.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/right-active.xpm b/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/right-active.xpm deleted file mode 100755 index d6311f6b74a3d0f4f33df028c835b9d85fb9a5d6..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/i3/xfwm4/right-inactive.png b/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/right-inactive.png deleted file mode 100755 index a3996213490e6c6cebd76e5d06cc3c3f412cb3a1..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/right-inactive.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/right-inactive.xpm b/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/right-inactive.xpm deleted file mode 100755 index c88d2ff8dd81a37ba32d38b27551043dff0e812a..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/i3/xfwm4/themerc b/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/themerc deleted file mode 100755 index d5b76bf8d4c7a39baa254c4d42de33ad49cdcb9c..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/i3/xfwm4/title-1-active.png b/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/title-1-active.png deleted file mode 100755 index 1038f8f21d05da79cf3e07144cdd82dd93e004fa..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/title-1-active.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/title-1-active.xpm b/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/title-1-active.xpm deleted file mode 100755 index f988f5ab15f9daef8e2e5ea696b167dd2276e1b6..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/i3/xfwm4/title-1-inactive.png b/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/title-1-inactive.png deleted file mode 100755 index 64857dd30c838f07174b9d4e323d2c9d6f802cd0..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/title-1-inactive.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/title-1-inactive.xpm b/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/title-1-inactive.xpm deleted file mode 100755 index 8cafccb397a754822f62fbb3042636b4f74aeeef..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/i3/xfwm4/title-2-active.png b/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/title-2-active.png deleted file mode 100755 index 1038f8f21d05da79cf3e07144cdd82dd93e004fa..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/title-2-active.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/title-2-active.xpm b/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/title-2-active.xpm deleted file mode 100755 index f988f5ab15f9daef8e2e5ea696b167dd2276e1b6..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/i3/xfwm4/title-2-inactive.png b/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/title-2-inactive.png deleted file mode 100755 index 64857dd30c838f07174b9d4e323d2c9d6f802cd0..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/title-2-inactive.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/title-2-inactive.xpm b/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/title-2-inactive.xpm deleted file mode 100755 index 8cafccb397a754822f62fbb3042636b4f74aeeef..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/i3/xfwm4/title-3-active.png b/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/title-3-active.png deleted file mode 100755 index 1038f8f21d05da79cf3e07144cdd82dd93e004fa..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/title-3-active.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/title-3-active.xpm b/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/title-3-active.xpm deleted file mode 100755 index f988f5ab15f9daef8e2e5ea696b167dd2276e1b6..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/i3/xfwm4/title-3-inactive.png b/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/title-3-inactive.png deleted file mode 100755 index 64857dd30c838f07174b9d4e323d2c9d6f802cd0..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/title-3-inactive.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/title-3-inactive.xpm b/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/title-3-inactive.xpm deleted file mode 100755 index 8cafccb397a754822f62fbb3042636b4f74aeeef..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/i3/xfwm4/title-4-active.png b/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/title-4-active.png deleted file mode 100755 index 1038f8f21d05da79cf3e07144cdd82dd93e004fa..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/title-4-active.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/title-4-active.xpm b/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/title-4-active.xpm deleted file mode 100755 index f988f5ab15f9daef8e2e5ea696b167dd2276e1b6..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/i3/xfwm4/title-4-inactive.png b/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/title-4-inactive.png deleted file mode 100755 index 64857dd30c838f07174b9d4e323d2c9d6f802cd0..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/title-4-inactive.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/title-4-inactive.xpm b/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/title-4-inactive.xpm deleted file mode 100755 index 8cafccb397a754822f62fbb3042636b4f74aeeef..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/i3/xfwm4/title-5-active.png b/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/title-5-active.png deleted file mode 100755 index 1038f8f21d05da79cf3e07144cdd82dd93e004fa..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/title-5-active.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/title-5-active.xpm b/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/title-5-active.xpm deleted file mode 100755 index f988f5ab15f9daef8e2e5ea696b167dd2276e1b6..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/i3/xfwm4/title-5-inactive.png b/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/title-5-inactive.png deleted file mode 100755 index 64857dd30c838f07174b9d4e323d2c9d6f802cd0..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/title-5-inactive.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/title-5-inactive.xpm b/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/title-5-inactive.xpm deleted file mode 100755 index 8cafccb397a754822f62fbb3042636b4f74aeeef..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/i3/xfwm4/top-left-active.png b/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/top-left-active.png deleted file mode 100755 index f80355e7558680c31bd7f71ed4c1e53c72d12bbc..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/top-left-active.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/top-left-active.xpm b/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/top-left-active.xpm deleted file mode 100755 index 35573a36c349f9f9c26ef82a38cc3dc13a549537..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/i3/xfwm4/top-left-inactive.png b/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/top-left-inactive.png deleted file mode 100755 index 5f0a3b1868232906c1d5122265b806121fa43931..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/top-left-inactive.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/top-left-inactive.xpm b/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/top-left-inactive.xpm deleted file mode 100755 index 57fcfda4caff729c13f78165f230ce795b4ca2af..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/i3/xfwm4/top-right-active.png b/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/top-right-active.png deleted file mode 100755 index cfe89800b6a234d42d9e8dfba394011ff246b07b..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/top-right-active.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/top-right-active.xpm b/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/top-right-active.xpm deleted file mode 100755 index c27740f68da0ced9ebc6d9df992650142ef30a0e..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/themes/i3/xfwm4/top-right-inactive.png b/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/top-right-inactive.png deleted file mode 100755 index 99fa676ce2a755cc9bdce9afb6288cd24097f7d9..0000000000000000000000000000000000000000 Binary files a/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/top-right-inactive.png and /dev/null differ diff --git a/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/top-right-inactive.xpm b/live_exam_os/config/01-build_hooks/themes/i3/xfwm4/top-right-inactive.xpm deleted file mode 100755 index cc06d6ad1947517b70fa68b1c43cb881a1b5b692..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/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/01-build_hooks/x11/x11_settings.desktop b/live_exam_os/config/01-build_hooks/x11/x11_settings.desktop deleted file mode 100644 index 82d8785cd1ebb47390a6519518633592cab9b0c8..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/x11/x11_settings.desktop +++ /dev/null @@ -1,12 +0,0 @@ -[Desktop Entry] -Encoding=UTF-8 -Version=0.9.4 -Type=Application -Name=screen settings -Comment= -Exec=bash /usr/local/bin/x11_settings.sh -OnlyShowIn=XFCE; -RunHook=0 -StartupNotify=false -Terminal=true -Hidden=false diff --git a/live_exam_os/config/01-build_hooks/x11/x11_settings.sh b/live_exam_os/config/01-build_hooks/x11/x11_settings.sh deleted file mode 100644 index 5c0127cf739d3eabf7e00c4ca9916f4212f7ac08..0000000000000000000000000000000000000000 --- a/live_exam_os/config/01-build_hooks/x11/x11_settings.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/bash - -# Disable screen blanking (by default blanks the screen after 10min) -xset s off - -# Set brightness to 100% -light -S 100 - -# Enable numlock -numlockx on diff --git a/live_exam_os/config/01-initramfs/init b/live_exam_os/config/01-initramfs/init new file mode 100644 index 0000000000000000000000000000000000000000..a6d1d8cea177fe1ae1f285b773ab20aff5ae16c2 --- /dev/null +++ b/live_exam_os/config/01-initramfs/init @@ -0,0 +1,53 @@ +#!/bin/sh +echo "Starting Nexus client..." +dmesg -n 1 + +mkdir -p /dev /proc /sys /tmp +mount -t devtmpfs none /dev +mount -t proc none /proc +mount -t sysfs none /sys +mount -t tmpfs none /tmp +mkdir -p /dev/pts +mount -t devpts none /dev/pts + +modprobe simpledrm +modprobe usbcore +modprobe usb_storage +modprobe usb_common +modprobe uas +modprobe scsi_mod +modprobe sr_mod +modprobe sd_mod +modprobe xhci_pci +modprobe xhci_hcd +modprobe ata_piix +modprobe cdrom +modprobe loop + +udevadm trigger + +echo "Mounting cdrom..." +while [ -z $(blkid | grep "NEXUSCLIENTISO" | cut -d ':' -f1) ]; do + echo -n "" +done + +DISK=$(blkid | grep "NEXUSCLIENTISO" | cut -d ':' -f1) +mkdir -p /cdrom +mount -t iso9660 $DISK /cdrom + +cryptsetup open /cdrom/squash.rootfs.luks data + +echo "Mounting overlay..." +mkdir -p /squash /upper/lib /work /newroot +mount -t squashfs /dev/mapper/data /squash +cp -r /lib/modules /upper/lib + +mount -t overlay -o lowerdir=/squash,upperdir=/upper,workdir=/work overlayfs /newroot + +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 diff --git a/live_exam_os/config/01-initramfs/init_no_luks b/live_exam_os/config/01-initramfs/init_no_luks new file mode 100644 index 0000000000000000000000000000000000000000..32d7ecbd3072cfb9266c2afc6484901b4570b4ca --- /dev/null +++ b/live_exam_os/config/01-initramfs/init_no_luks @@ -0,0 +1,53 @@ +#!/bin/sh +echo "Starting Nexus client..." +dmesg -n 1 + +mkdir -p /dev /proc /sys /tmp +mount -t devtmpfs none /dev +mount -t proc none /proc +mount -t sysfs none /sys +mount -t tmpfs none /tmp +mkdir -p /dev/pts +mount -t devpts none /dev/pts + +modprobe simpledrm +modprobe usbcore +modprobe usb_storage +modprobe usb_common +modprobe uas +modprobe scsi_mod +modprobe sr_mod +modprobe sd_mod +modprobe xhci_pci +modprobe xhci_hcd +modprobe ata_piix +modprobe cdrom +modprobe loop + +udevadm trigger + +echo "Mounting cdrom..." +while [ -z $(blkid | grep "NEXUSCLIENTISO" | cut -d ':' -f1) ]; do + echo -n "" +done + +DISK=$(blkid | grep "NEXUSCLIENTISO" | cut -d ':' -f1) +mkdir -p /cdrom +mount -t iso9660 $DISK /cdrom + +/bin/sh + +echo "Mounting overlay..." +mkdir -p /squash /upper/lib /work /newroot +mount -t squashfs /cdrom/squash.rootfs /squash +cp -r /lib/modules /upper/lib + +mount -t overlay -o lowerdir=/squash,upperdir=/upper,workdir=/work overlayfs /newroot + +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 diff --git a/live_exam_os/config/02-packages_install/packages b/live_exam_os/config/02-packages_install/packages new file mode 100644 index 0000000000000000000000000000000000000000..55880c4966bb4748a984bc4ebc18219594e76bd0 --- /dev/null +++ b/live_exam_os/config/02-packages_install/packages @@ -0,0 +1,24 @@ +linux-lts +linux-firmware +linux-firmware-other +alpine-base +eudev +networkmanager +networkmanager-tui +xorg-server +xf86-input-libinput +xinit +xfce4 +xfce4-terminal +elogind +polkit-elogind +adwaita-icon-theme +agetty +dbus +dbus-x11 +virt-viewer +mesa-dri-gallium +ip6tables +ufw +sudo +vim diff --git a/live_exam_os/config/02-post_install_hooks/9999-packages_removal_and_cleanup.hook.chroot b/live_exam_os/config/02-post_install_hooks/9999-packages_removal_and_cleanup.hook.chroot deleted file mode 100644 index 64645d059394a0f0e05966f8939b66128f3ffddd..0000000000000000000000000000000000000000 --- a/live_exam_os/config/02-post_install_hooks/9999-packages_removal_and_cleanup.hook.chroot +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/sh - -apt-get remove -y light-locker nano bluetooth bluez bluez-firmware dosfstools raspi-firmware fdisk dnsmasq-base gdisk fuse3 eject avahi-daemon colord cron apparmor acl dns-root-data fxload gcr gnome-icon-theme gnome-keyring gnome-keyring-pkcs11 gnome-themes-extra gnome-themes-extra-data gnupg gnupg-utils gnupg-l10n gpg gpg-agent gpg-wks-client gpg-wks-server gpgconf gpgsm ifupdown indi-dsi iputils-ping ixo-usb-jtag less mobile-broadband-provider-info modemmanager ntfs-3g parted pinentry-curses pinentry-gnome3 pkexec policykit-1 poppler-data ppp publicsuffix rsync rtkit sane-airscan sane-utils pavucontrol sound-theme-freedesktop uuid-runtime vim-common vim-tiny whiptail xbitmaps xcvt xiccd iw - -apt-get clean -y -apt-get autopurge -y - -# Remove all packages marked as "rc", i.e. all packages deleted -# from the system but for which configuration files are still present -for i in `dpkg -l|grep ^rc|awk {'print $2'}`;do dpkg --force-all -P $i;done - -rm -rf /var/lib/apt/lists/* diff --git a/live_exam_os/config/03-boot_hooks/1000-remove_user_pwd b/live_exam_os/config/03-boot_hooks/1000-remove_user_pwd deleted file mode 100755 index 6ee1bef541f9251d57dbeddbd42cab0c05e331ba..0000000000000000000000000000000000000000 --- a/live_exam_os/config/03-boot_hooks/1000-remove_user_pwd +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/sh - -. /lib/live/config.sh - -passwd -d nexus diff --git a/live_exam_os/config/03-boot_hooks/1000-set_user_pwd b/live_exam_os/config/03-boot_hooks/1000-set_user_pwd deleted file mode 100755 index 018bd639952902d8bce126f95709ef7ebed13b9a..0000000000000000000000000000000000000000 --- a/live_exam_os/config/03-boot_hooks/1000-set_user_pwd +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/sh - -. /lib/live/config.sh - -# script hook to set password for nexus user (pwd is "pipo") -# pwd is the crypt's perl function's first argument. Second arg is salt. -#RUN echo -n "#!/bin/sh\nusermod -p '" >> config/includes.chroot/lib/live/config/0500-user-password.hook.chroot && \ -# perl -e 'print crypt("pipo","\$6\$a9CJ6HTSDXmf\$")' >> config/includes.chroot/lib/live/config/0500-user-password.hook.chroot && \ -# echo "' nexus\n" >> config/includes.chroot/lib/live/config/0500-user-password.hook.chroot && \ -# chmod 0750 config/includes.chroot/lib/live/config/0500-user-password.hook.chroot diff --git a/live_exam_os/config/03-boot_hooks/2000-chown_user_desktop_files b/live_exam_os/config/03-boot_hooks/2000-chown_user_desktop_files deleted file mode 100755 index 11f7ae0433a744f25bf582d588fc6f3ad0639a13..0000000000000000000000000000000000000000 --- a/live_exam_os/config/03-boot_hooks/2000-chown_user_desktop_files +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/sh - -. /lib/live/config.sh - -chown nexus:nexus /home/nexus/Bureau/* - diff --git a/live_exam_os/config/03-boot_hooks/3000-certificates b/live_exam_os/config/03-boot_hooks/3000-certificates deleted file mode 100755 index d75bf970e8912bfcf6251c0e8a54650092ef1184..0000000000000000000000000000000000000000 --- a/live_exam_os/config/03-boot_hooks/3000-certificates +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh - -. /lib/live/config.sh - -## live-config(7) - System Configuration Components -## Copyright (C) 2016-2020 The Debian Live team -## Copyright (C) 2006-2015 Daniel Baumann <mail@daniel-baumann.ch> -## -## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING. -## This is free software, and you are welcome to redistribute it -## under certain conditions; see COPYING for details. - -# Unused for now -add_nexus_certs () -{ - if [ ! -e /etc/ssl/certs/nexus-server.pem ] && [ -e /usr/share/ca-certificates/nexus-server/nexus-server.crt ] - then - echo "nexus-server/nexus-server.crt" >> /etc/ca-certificates.conf - update-ca-certificates - fi -} - -add_nexus_certs \ No newline at end of file diff --git a/live_exam_os/config/03-boot_hooks/9999-firewall b/live_exam_os/config/03-boot_hooks/9999-firewall deleted file mode 100755 index 2ffea231e29c7a4549bb9952aa6ed7958b7acb61..0000000000000000000000000000000000000000 --- a/live_exam_os/config/03-boot_hooks/9999-firewall +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/sh - -. /lib/live/config.sh - -firewall () -{ - # Block all incoming and outgoing traffic - ufw default deny incoming - ufw default deny outgoing - # Allow outgoing traffic to nexus-server API - ufw allow out from any to $1 port $2 proto tcp - # Allow outgoing ntp and dns traffic - ufw allow out from any to any port 123 proto udp - ufw allow out from any to any port 53 proto udp - # Allow outgoing traffic to nexus VMs (Spice) - ufw allow out from any to $1 port 1025:65535 proto tcp - - ufw enable -} - diff --git a/live_exam_os/config/01-build_hooks/wifi/wifi.nmconnection.example1 b/live_exam_os/config/03-customisation/etc/NetworkManager/system-connections/wifi.nmconnection similarity index 100% rename from live_exam_os/config/01-build_hooks/wifi/wifi.nmconnection.example1 rename to live_exam_os/config/03-customisation/etc/NetworkManager/system-connections/wifi.nmconnection diff --git a/live_exam_os/config/03-customisation/etc/NetworkManager/system-connections/wifi.nmconnection.example1 b/live_exam_os/config/03-customisation/etc/NetworkManager/system-connections/wifi.nmconnection.example1 new file mode 100644 index 0000000000000000000000000000000000000000..2cfd7e741114f2a72ee2eea18af54b8139f61435 --- /dev/null +++ b/live_exam_os/config/03-customisation/etc/NetworkManager/system-connections/wifi.nmconnection.example1 @@ -0,0 +1,32 @@ +# On a Debian/Ubuntu system, NetworkManager's WIFI connection files are located in /etc/NetworkManager/system-connections + +[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 + +[proxy] diff --git a/live_exam_os/config/01-build_hooks/wifi/wifi.nmconnection.example2 b/live_exam_os/config/03-customisation/etc/NetworkManager/system-connections/wifi.nmconnection.example2 similarity index 100% rename from live_exam_os/config/01-build_hooks/wifi/wifi.nmconnection.example2 rename to live_exam_os/config/03-customisation/etc/NetworkManager/system-connections/wifi.nmconnection.example2 diff --git a/live_exam_os/config/01-build_hooks/keyboard/keyboard b/live_exam_os/config/03-customisation/etc/default/keyboard similarity index 100% rename from live_exam_os/config/01-build_hooks/keyboard/keyboard rename to live_exam_os/config/03-customisation/etc/default/keyboard diff --git a/live_exam_os/config/03-customisation/etc/inittab b/live_exam_os/config/03-customisation/etc/inittab new file mode 100644 index 0000000000000000000000000000000000000000..37a0b9054acc94364a81427d755a49b7f0c4a6aa --- /dev/null +++ b/live_exam_os/config/03-customisation/etc/inittab @@ -0,0 +1,17 @@ +# /etc/inittab + +::sysinit:/sbin/openrc sysinit +::sysinit:/sbin/openrc boot +::wait:/sbin/openrc default + +# Set up a couple of getty's +tty1::respawn:/sbin/agetty --autologin user tty1 linux + +# Put a getty on the serial port +#ttyS0::respawn:/sbin/getty -L 115200 ttyS0 vt100 + +# Stuff to do for the 3-finger salute +::ctrlaltdel:/sbin/reboot + +# Stuff to do before rebooting +::shutdown:/sbin/openrc shutdown diff --git a/live_exam_os/config/01-build_hooks/nexus-exam.desktop b/live_exam_os/config/03-customisation/etc/xdg/autostart/nexus-exam.desktop similarity index 57% rename from live_exam_os/config/01-build_hooks/nexus-exam.desktop rename to live_exam_os/config/03-customisation/etc/xdg/autostart/nexus-exam.desktop index 9f044d8659e5e6f19cbec23a92bd5f401ffd68de..da384edfed11e965c02c98271aed67d1aaafcb5a 100644 --- a/live_exam_os/config/01-build_hooks/nexus-exam.desktop +++ b/live_exam_os/config/03-customisation/etc/xdg/autostart/nexus-exam.desktop @@ -2,8 +2,4 @@ Type=Application Name=nexus-exam Exec=/usr/local/bin/nexus-exam -Icon=virt-viewer -Terminal=false -Path= -StartupNotify=false - +OnlyShowIn=XFCE; diff --git a/live_exam_os/config/01-build_hooks/xfce/xfce4-desktop.xml b/live_exam_os/config/03-customisation/etc/xdg/xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml similarity index 100% rename from live_exam_os/config/01-build_hooks/xfce/xfce4-desktop.xml rename to live_exam_os/config/03-customisation/etc/xdg/xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml diff --git a/live_exam_os/config/01-build_hooks/xfce/xfce4-panel.xml b/live_exam_os/config/03-customisation/etc/xdg/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml similarity index 100% rename from live_exam_os/config/01-build_hooks/xfce/xfce4-panel.xml rename to live_exam_os/config/03-customisation/etc/xdg/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml diff --git a/live_exam_os/config/01-build_hooks/xfce/xfce4-power-manager.xml b/live_exam_os/config/03-customisation/etc/xdg/xfce4/xfconf/xfce-perchannel-xml/xfce4-power-manager.xml similarity index 100% rename from live_exam_os/config/01-build_hooks/xfce/xfce4-power-manager.xml rename to live_exam_os/config/03-customisation/etc/xdg/xfce4/xfconf/xfce-perchannel-xml/xfce4-power-manager.xml diff --git a/live_exam_os/config/01-build_hooks/xfce/xfce4-settings-manager.xml b/live_exam_os/config/03-customisation/etc/xdg/xfce4/xfconf/xfce-perchannel-xml/xfce4-settings-manager.xml similarity index 100% rename from live_exam_os/config/01-build_hooks/xfce/xfce4-settings-manager.xml rename to live_exam_os/config/03-customisation/etc/xdg/xfce4/xfconf/xfce-perchannel-xml/xfce4-settings-manager.xml diff --git a/live_exam_os/config/01-build_hooks/xfce/xfwm4.xml b/live_exam_os/config/03-customisation/etc/xdg/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml similarity index 98% rename from live_exam_os/config/01-build_hooks/xfce/xfwm4.xml rename to live_exam_os/config/03-customisation/etc/xdg/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml index 93bedf19a5744a1a15179581e14693ba87be5c11..2f7bcdfbe7edf0a0ccc9b719dca56896b70e820f 100644 --- a/live_exam_os/config/01-build_hooks/xfce/xfwm4.xml +++ b/live_exam_os/config/03-customisation/etc/xdg/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml @@ -38,7 +38,7 @@ <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="theme" type="string" value="i3"/> <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"/> diff --git a/live_exam_os/config/03-customisation/home/user/.profile b/live_exam_os/config/03-customisation/home/user/.profile new file mode 100644 index 0000000000000000000000000000000000000000..a3393c04e81b5b3a39034df7769be2c17dfec317 --- /dev/null +++ b/live_exam_os/config/03-customisation/home/user/.profile @@ -0,0 +1 @@ +startx diff --git a/live_exam_os/config/03-customisation/home/user/.xinitrc b/live_exam_os/config/03-customisation/home/user/.xinitrc new file mode 100644 index 0000000000000000000000000000000000000000..ff8a1e5c3505c3bcec8f9d3f54f3524244319cfc --- /dev/null +++ b/live_exam_os/config/03-customisation/home/user/.xinitrc @@ -0,0 +1 @@ +exec startxfce4 diff --git a/live_exam_os/config/03-customisation/usr/local/bin/nexus-exam.desktop b/live_exam_os/config/03-customisation/usr/local/bin/nexus-exam.desktop new file mode 100644 index 0000000000000000000000000000000000000000..da384edfed11e965c02c98271aed67d1aaafcb5a --- /dev/null +++ b/live_exam_os/config/03-customisation/usr/local/bin/nexus-exam.desktop @@ -0,0 +1,5 @@ +[Desktop Entry] +Type=Application +Name=nexus-exam +Exec=/usr/local/bin/nexus-exam +OnlyShowIn=XFCE; diff --git a/live_exam_os/config/04-post_install/1000-create-user.sh b/live_exam_os/config/04-post_install/1000-create-user.sh new file mode 100755 index 0000000000000000000000000000000000000000..8fa722d64396af6256d63d675e705888516fbfd4 --- /dev/null +++ b/live_exam_os/config/04-post_install/1000-create-user.sh @@ -0,0 +1,16 @@ +#/bin/sh + +run() { + chroot "$ROOTFS_DIR" $@ +} + +echo "[User managing...]" +run useradd -m user +run usermod -aG video user +run usermod -aG input user +run usermod -aG plugdev user +run usermod -aG wheel user +chown -R 1000:1000 $ROOTFS_DIR/home/user/ +USER_PASSWORD="0" +echo "user:$USER_PASSWORD" | chroot "$ROOTFS_DIR" /usr/sbin/chpasswd +echo "%wheel ALL=(ALL:ALL) ALL" >> "$ROOTFS_DIR/etc/sudoers.d/wheel" diff --git a/live_exam_os/config/04-post_install/1000-disable_root.sh b/live_exam_os/config/04-post_install/1000-disable_root.sh new file mode 100755 index 0000000000000000000000000000000000000000..24518d1239a1639c7288284513371801af25e3ea --- /dev/null +++ b/live_exam_os/config/04-post_install/1000-disable_root.sh @@ -0,0 +1,8 @@ +#/bin/sh + +run() { + chroot "$ROOTFS_DIR" $@ +} + +echo "[Disable root user...]" +run passwd -l root diff --git a/live_exam_os/config/04-post_install/2000-enable_services.sh b/live_exam_os/config/04-post_install/2000-enable_services.sh new file mode 100755 index 0000000000000000000000000000000000000000..7c05faaffc0d27ee5c3d98c47e3b4c29761d79ec --- /dev/null +++ b/live_exam_os/config/04-post_install/2000-enable_services.sh @@ -0,0 +1,13 @@ +#/bin/sh + +run() { + chroot "$ROOTFS_DIR" $@ +} + +echo "[Enabling services...]" +run rc-update add dbus +run setup-devd udev +run rc-update add polkit +run rc-update add elogind +run rc-update add networkmanager +run rc-update add ufw diff --git a/live_exam_os/config/04-post_install/9999-firewall.sh b/live_exam_os/config/04-post_install/9999-firewall.sh new file mode 100755 index 0000000000000000000000000000000000000000..ead64fa0b0879fdbe505d8105473f59a8841f912 --- /dev/null +++ b/live_exam_os/config/04-post_install/9999-firewall.sh @@ -0,0 +1,18 @@ +#!/bin/sh + +IP_SERVER=$(echo $SERVER | cut -d ':' -f1) +PORT_SERVER=$(echo $SERVER | cut -d ':' -f2) + +run() { + chroot "$ROOTFS_DIR" $@ +} + +echo "[Firewall configuration...]" + +run ufw default deny incoming +run ufw default deny outgoing +run ufw allow out from any to $IP_SERVER port $PORT_SERVER proto tcp +run ufw allow out from any to any port 123 proto udp +run ufw allow out from any to any port 53 proto udp +run ufw allow out from any to $IP_SERVER port 1025:65535 proto tcp +run ufw enable diff --git a/live_exam_os/config/config b/live_exam_os/config/config deleted file mode 100755 index bb9c0995182eed4c2564e4e773c24b0e425f0ffb..0000000000000000000000000000000000000000 --- a/live_exam_os/config/config +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/sh -# https://live-team.pages.debian.net/live-manual/ -lb config noauto \ - --system live \ - --architectures amd64 \ - --mode debian \ - --parent-distribution bookworm \ - --distribution bookworm \ - --binary-images iso-hybrid \ - --color \ - --iso-application "HEPIA-ISC" \ - --iso-volume "nexus-live-exam" \ - --iso-publisher "HEPIA-ISC" \ - --security true \ - --updates false \ - --archive-areas "main contrib non-free non-free-firmware" \ - --bootappend-live "boot=live components noeject noroot nottyautologin toram username=nexus hostname=nexus-live-exam locales=fr_CH.UTF-8 keyboard-layouts=ch timezone=Europe/Zurich" \ - "${@}" diff --git a/live_exam_os/tools/devices_umounter b/live_exam_os/tools/devices_umounter deleted file mode 100755 index 062c645e68f958b4282b683f5fdd66f44ace07ca..0000000000000000000000000000000000000000 --- a/live_exam_os/tools/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/tools/devices_watcher b/live_exam_os/tools/devices_watcher deleted file mode 100755 index 2fac1c2b30ee90ba3840b6869e1f5adcafea5659..0000000000000000000000000000000000000000 --- a/live_exam_os/tools/devices_watcher +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/bash - -watch -n 1 "lsblk|grep sd" diff --git a/live_exam_os/tools/flash_iso_multi_keys b/live_exam_os/tools/flash_iso_multi_keys deleted file mode 100755 index 4fad322965c0f72cf44aef73a5bcb56f3e2b5c1c..0000000000000000000000000000000000000000 --- a/live_exam_os/tools/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/tools/umount_multi b/live_exam_os/tools/umount_multi deleted file mode 100755 index 078365cc2fb1af7777665e344e0ff87c80bf747d..0000000000000000000000000000000000000000 --- a/live_exam_os/tools/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