diff --git a/README.md b/README.md index 51beda4..99f3ccf 100644 --- a/README.md +++ b/README.md @@ -3,37 +3,51 @@ ## Utiliser 1. installer VirtualBox https://www.virtualbox.org/wiki/Downloads -2. télécharger la vm au format .ova +2. télécharger la vm au format .ova ici : https://git.barnulf.net/epita/epitls_vm/releases/download/latest/epitls.ova 3. importer la vm dans virtualbox (double cliquer le fichier) ## Contribuer +Vous pouvez améliorer cette machine virtuelle en contribuant à ce dépot. + +- Pour ajouter des logiciels, les rajouter dans la liste `packages` dans `src/iso_root/user_configuration.json`. +- Pour ajouter des fichiers à l'installation par défaut : + - Les intégrer dans `src/iso_root/content`. + - Modifier `src/iso_root/post_install.sh` pour installer les fichiers au bon endroit. + +Pour publier vos changements, ouvrez une PR. +Si je ne réagis pas, me contacter par discord (@majorbarnulf) ou mail (matthieu@imagevo.fr). + ### Dépendances +Les logiciels suivants sont nécessaires pour générer la VM à partir de ce dépot. + - pacman - wget - net-tools - archiso - virtualbox +Archlinux est recommandé comme OS host pour générer la VM. + ### Fabrication La fabrication de la machine virtuelle est assez farfelue mais ça marche assez bien. Les étapes de la fabrication sont les suivantes : - création d'un ISO d'installation archlinux - - généré à partir du profil dans `./profile` - - contient un script d'installation automatisé qui est exécuté au boot `./profile/airootfs/root/.zlogin` + - généré à partir du profil dans `./src/profile` + - contient un script d'installation automatisé qui est exécuté au boot `./src/profile/airootfs/root/.zlogin` - création d'une VM vide avec VirtualBox - - bloc de commandes dans `./build.sh` + - bloc de commandes dans `./src/build.sh` - Boot de la VM sur l'ISO - - aussi dans `./build.sh` + - aussi dans `./src/build.sh` - l'ISO installe la distribution - - installe arch `archinstall` avec la configuration `./profile/airootfs/root/user_*.json` - - quelques ajustements avec `./profile/airootfs/root/post_install.sh` + - installe arch `archinstall` avec la configuration `./src/profile/airootfs/root/user_*.json` + - quelques ajustements avec `./src/profile/airootfs/root/post_install.sh` - stop une fois la machine virtuelle configurée - exporte la VM au format OVA dans `./output/epitls.ova` diff --git a/build.sh b/build.sh deleted file mode 100755 index 12b80b9..0000000 --- a/build.sh +++ /dev/null @@ -1,73 +0,0 @@ -#!/bin/sh -set -e -cd "$(dirname "$(realpath "$0")")" - -alias log='echo [build.sh]' - - -VBOX_VERSION=$(VBoxManage --version | cut -d 'r' -f 1) -ETH_DEV=$(route | grep '^default' | grep -o '[^ ]*$') -VM_NAME="epitls_build" - - -log "updating environment" - sudo rm -fr tmp - mkdir -p tmp output - if ! [ -f output/guest_add.iso ] - then wget -O output/guest_add.iso "https://download.virtualbox.org/virtualbox/$VBOX_VERSION/VBoxGuestAdditions_$VBOX_VERSION.iso" - fi - - -AURS="zerofree" - - -log "creating package db" - rm -fr /tmp/custom-db - mkdir /tmp/custom-db - for aur in $AURS - do - git clone "https://aur.archlinux.org/$aur.git" "/tmp/custom-db/$aur" - ( cd "/tmp/custom-db/$aur" && makepkg; ) - mv /tmp/custom-db/$aur/$aur-* /tmp/custom-db/ - repo-add /tmp/custom-db/custom.db.tar.gz /tmp/custom-db/$aur-*.pkg.tar.zst - done - - -log "creating iso" - sudo mkarchiso -v -w $PWD/tmp/wdir -r -o $PWD/output $PWD/profile - rm -f output/install.iso - mv output/archlinux-*.iso output/install.iso - - -if VBoxManage showvminfo $VM_NAME 2> /dev/null -then log "disposing old VM" - VBoxManage unregistervm $VM_NAME --delete-all -fi - - -log "creating VM" - VBoxManage createvm --name=$VM_NAME --ostype=ArchLinux_64 --register - VBoxManage modifyvm $VM_NAME --cpus=4 --memory=4096 --vram=12 --firmware=efi - VBoxManage modifyvm $VM_NAME --nic1=bridged --bridgeadapter1=$ETH_DEV - VBoxManage createhd --filename=$PWD/tmp/drive.vdi --size=$((1024 * 20)) --variant=Standard - VBoxManage storagectl $VM_NAME --name=SATA --add sata --bootable on - VBoxManage storageattach $VM_NAME --storagectl=SATA --port=0 --device=0 --type=hdd --medium=$PWD/tmp/drive.vdi - VBoxManage storagectl $VM_NAME --name=IDE --add ide - VBoxManage storageattach $VM_NAME --storagectl=IDE --port=0 --device=0 --type=dvddrive --medium=$PWD/output/install.iso - VBoxManage storageattach $VM_NAME --storagectl=IDE --port=1 --device=1 --type=dvddrive --medium=$PWD/output/guest_add.iso - - -log "running VM with iso" - virtualboxvm --startvm $VM_NAME --dvd $PWD/output/install.iso - - -log "exporting VM" - VBoxManage storageattach $VM_NAME --storagectl=IDE --port=0 --device=0 --medium=none # removes iso after run - VBoxManage storageattach $VM_NAME --storagectl=IDE --port=1 --device=1 --medium=none # removes iso after run - VBoxManage modifyhd $PWD/tmp/drive.vdi -compact - rm -f $PWD/output/epitls.ova - VBoxManage export $VM_NAME --output=$PWD/output/epitls.ova --vsys=0 --vmname=epitls --description="VM pour le développement à EPITA Toulouse." - - -log "disposing VM" - VBoxManage unregistervm $VM_NAME --delete-all diff --git a/src/build.sh b/src/build.sh new file mode 100755 index 0000000..853dd5f --- /dev/null +++ b/src/build.sh @@ -0,0 +1,75 @@ +#!/bin/sh +set -e +cd "$(dirname "$(realpath "$0")")" + +alias log='echo [build.sh]' + + +TMP_DIR="${TMP_DIR:-"$PWD/../tmp"}" +OUT_DIR="${OUT_DIR:-"$PWD/../output"}" +VBOX_VERSION=$(VBoxManage --version | cut -d 'r' -f 1) +VM_NAME="epitls_build" + + +log "updating environment" + sudo rm -fr "$TMP_DIR" + mkdir -p "$TMP_DIR" "$OUT_DIR" + if ! [ -f "$OUT_DIR/guest_add.iso" ] + then wget -O "$OUT_DIR/guest_add.iso" "https://download.virtualbox.org/virtualbox/$VBOX_VERSION/VBoxGuestAdditions_$VBOX_VERSION.iso" + fi + + +AURS="zerofree" + + +log "creating package db" + rm -fr "$TMP_DIR/custom-db" + mkdir "$TMP_DIR/custom-db" + for aur in $AURS + do + git clone "https://aur.archlinux.org/$aur.git" "$TMP_DIR/custom-db/$aur" + ( cd "$TMP_DIR/custom-db/$aur" && makepkg; ) + mv "$TMP_DIR"/custom-db/$aur/$aur-* "$TMP_DIR/custom-db/" + repo-add "$TMP_DIR/custom-db/custom.db.tar.gz" "$TMP_DIR/custom-db"/$aur-*.pkg.tar.zst + done + + +log "creating iso" + sudo mkarchiso -v -w "$TMP_DIR/wdir" -r -o "$OUT_DIR" "$PWD/profile" + rm -f "$OUT_DIR/install.iso" + mv "$OUT_DIR"/archlinux-*.iso "$OUT_DIR/install.iso" + + +if VBoxManage showvminfo $VM_NAME 2> /dev/null +then log "disposing old VM" + VBoxManage unregistervm $VM_NAME --delete-all +fi + + +log "creating VM" + VBoxManage createvm --name=$VM_NAME --ostype=ArchLinux_64 --register + VBoxManage modifyvm $VM_NAME --cpus=16 --memory=8192 --vram=32 --firmware=efi + VBoxManage modifyvm $VM_NAME --nic1=nat + VBoxManage createhd --filename="$TMP_DIR/drive.vdi" --size=$((50 * 1024)) --variant=Standard + VBoxManage storagectl $VM_NAME --name=SATA --add sata --bootable on + VBoxManage storageattach $VM_NAME --storagectl=SATA --port=0 --device=0 --type=hdd --medium="$TMP_DIR/drive.vdi" + VBoxManage storagectl $VM_NAME --name=IDE --add ide + VBoxManage storageattach $VM_NAME --storagectl=IDE --port=0 --device=0 --type=dvddrive --medium="$OUT_DIR/install.iso" + VBoxManage storageattach $VM_NAME --storagectl=IDE --port=1 --device=1 --type=dvddrive --medium="$OUT_DIR/guest_add.iso" + + +log "running VM with iso" + virtualboxvm --startvm $VM_NAME --dvd "$OUT_DIR/install.iso" + + +log "exporting VM" + VBoxManage modifyvm $VM_NAME --cpus=4 --memory=4096 --vram=24 + VBoxManage storageattach $VM_NAME --storagectl=IDE --port=0 --device=0 --medium=none # removes iso after run + VBoxManage storageattach $VM_NAME --storagectl=IDE --port=1 --device=1 --medium=none # removes iso after run + VBoxManage modifyhd "$TMP_DIR/drive.vdi" -compact + rm -f "$OUT_DIR/epitls.ova" + VBoxManage export $VM_NAME --output="$OUT_DIR/epitls.ova" --vsys=0 --vmname=epitls --description="VM pour le développement à EPITA Toulouse." + + +log "disposing VM" + VBoxManage unregistervm $VM_NAME --delete-all diff --git a/src/install_home b/src/install_home index 61de003..281c3da 120000 --- a/src/install_home +++ b/src/install_home @@ -1 +1 @@ -../profile/airootfs/root/content/home \ No newline at end of file +profile/airootfs/root/content/home \ No newline at end of file diff --git a/src/iso_root b/src/iso_root index 02b80cf..a8dca5d 120000 --- a/src/iso_root +++ b/src/iso_root @@ -1 +1 @@ -../profile/airootfs/root \ No newline at end of file +profile/airootfs/root \ No newline at end of file diff --git a/profile/airootfs/etc/hostname b/src/profile/airootfs/etc/hostname similarity index 100% rename from profile/airootfs/etc/hostname rename to src/profile/airootfs/etc/hostname diff --git a/profile/airootfs/etc/locale.conf b/src/profile/airootfs/etc/locale.conf similarity index 100% rename from profile/airootfs/etc/locale.conf rename to src/profile/airootfs/etc/locale.conf diff --git a/profile/airootfs/etc/localtime b/src/profile/airootfs/etc/localtime similarity index 100% rename from profile/airootfs/etc/localtime rename to src/profile/airootfs/etc/localtime diff --git a/profile/airootfs/etc/mkinitcpio.conf.d/archiso.conf b/src/profile/airootfs/etc/mkinitcpio.conf.d/archiso.conf similarity index 100% rename from profile/airootfs/etc/mkinitcpio.conf.d/archiso.conf rename to src/profile/airootfs/etc/mkinitcpio.conf.d/archiso.conf diff --git a/profile/airootfs/etc/mkinitcpio.d/linux.preset b/src/profile/airootfs/etc/mkinitcpio.d/linux.preset similarity index 100% rename from profile/airootfs/etc/mkinitcpio.d/linux.preset rename to src/profile/airootfs/etc/mkinitcpio.d/linux.preset diff --git a/profile/airootfs/etc/modprobe.d/broadcom-wl.conf b/src/profile/airootfs/etc/modprobe.d/broadcom-wl.conf similarity index 100% rename from profile/airootfs/etc/modprobe.d/broadcom-wl.conf rename to src/profile/airootfs/etc/modprobe.d/broadcom-wl.conf diff --git a/profile/airootfs/etc/motd b/src/profile/airootfs/etc/motd similarity index 100% rename from profile/airootfs/etc/motd rename to src/profile/airootfs/etc/motd diff --git a/profile/airootfs/etc/pacman.conf b/src/profile/airootfs/etc/pacman.conf similarity index 100% rename from profile/airootfs/etc/pacman.conf rename to src/profile/airootfs/etc/pacman.conf diff --git a/profile/airootfs/etc/pacman.d/hooks/uncomment-mirrors.hook b/src/profile/airootfs/etc/pacman.d/hooks/uncomment-mirrors.hook similarity index 100% rename from profile/airootfs/etc/pacman.d/hooks/uncomment-mirrors.hook rename to src/profile/airootfs/etc/pacman.d/hooks/uncomment-mirrors.hook diff --git a/profile/airootfs/etc/pacman.d/hooks/zzzz99-remove-custom-hooks-from-airootfs.hook b/src/profile/airootfs/etc/pacman.d/hooks/zzzz99-remove-custom-hooks-from-airootfs.hook similarity index 100% rename from profile/airootfs/etc/pacman.d/hooks/zzzz99-remove-custom-hooks-from-airootfs.hook rename to src/profile/airootfs/etc/pacman.d/hooks/zzzz99-remove-custom-hooks-from-airootfs.hook diff --git a/profile/airootfs/etc/pacman.d/mirrorlist b/src/profile/airootfs/etc/pacman.d/mirrorlist similarity index 100% rename from profile/airootfs/etc/pacman.d/mirrorlist rename to src/profile/airootfs/etc/pacman.d/mirrorlist diff --git a/profile/airootfs/etc/passwd b/src/profile/airootfs/etc/passwd similarity index 100% rename from profile/airootfs/etc/passwd rename to src/profile/airootfs/etc/passwd diff --git a/profile/airootfs/etc/resolv.conf b/src/profile/airootfs/etc/resolv.conf similarity index 100% rename from profile/airootfs/etc/resolv.conf rename to src/profile/airootfs/etc/resolv.conf diff --git a/profile/airootfs/etc/shadow b/src/profile/airootfs/etc/shadow similarity index 100% rename from profile/airootfs/etc/shadow rename to src/profile/airootfs/etc/shadow diff --git a/profile/airootfs/etc/ssh/sshd_config.d/10-archiso.conf b/src/profile/airootfs/etc/ssh/sshd_config.d/10-archiso.conf similarity index 100% rename from profile/airootfs/etc/ssh/sshd_config.d/10-archiso.conf rename to src/profile/airootfs/etc/ssh/sshd_config.d/10-archiso.conf diff --git a/profile/airootfs/etc/systemd/journald.conf.d/volatile-storage.conf b/src/profile/airootfs/etc/systemd/journald.conf.d/volatile-storage.conf similarity index 100% rename from profile/airootfs/etc/systemd/journald.conf.d/volatile-storage.conf rename to src/profile/airootfs/etc/systemd/journald.conf.d/volatile-storage.conf diff --git a/profile/airootfs/etc/systemd/logind.conf.d/do-not-suspend.conf b/src/profile/airootfs/etc/systemd/logind.conf.d/do-not-suspend.conf similarity index 100% rename from profile/airootfs/etc/systemd/logind.conf.d/do-not-suspend.conf rename to src/profile/airootfs/etc/systemd/logind.conf.d/do-not-suspend.conf diff --git a/profile/airootfs/etc/systemd/network.conf.d/ipv6-privacy-extensions.conf b/src/profile/airootfs/etc/systemd/network.conf.d/ipv6-privacy-extensions.conf similarity index 100% rename from profile/airootfs/etc/systemd/network.conf.d/ipv6-privacy-extensions.conf rename to src/profile/airootfs/etc/systemd/network.conf.d/ipv6-privacy-extensions.conf diff --git a/profile/airootfs/etc/systemd/network/20-ethernet.network b/src/profile/airootfs/etc/systemd/network/20-ethernet.network similarity index 100% rename from profile/airootfs/etc/systemd/network/20-ethernet.network rename to src/profile/airootfs/etc/systemd/network/20-ethernet.network diff --git a/profile/airootfs/etc/systemd/network/20-wlan.network b/src/profile/airootfs/etc/systemd/network/20-wlan.network similarity index 100% rename from profile/airootfs/etc/systemd/network/20-wlan.network rename to src/profile/airootfs/etc/systemd/network/20-wlan.network diff --git a/profile/airootfs/etc/systemd/network/20-wwan.network b/src/profile/airootfs/etc/systemd/network/20-wwan.network similarity index 100% rename from profile/airootfs/etc/systemd/network/20-wwan.network rename to src/profile/airootfs/etc/systemd/network/20-wwan.network diff --git a/profile/airootfs/etc/systemd/resolved.conf.d/archiso.conf b/src/profile/airootfs/etc/systemd/resolved.conf.d/archiso.conf similarity index 100% rename from profile/airootfs/etc/systemd/resolved.conf.d/archiso.conf rename to src/profile/airootfs/etc/systemd/resolved.conf.d/archiso.conf diff --git a/profile/airootfs/etc/systemd/system-generators/systemd-gpt-auto-generator b/src/profile/airootfs/etc/systemd/system-generators/systemd-gpt-auto-generator similarity index 100% rename from profile/airootfs/etc/systemd/system-generators/systemd-gpt-auto-generator rename to src/profile/airootfs/etc/systemd/system-generators/systemd-gpt-auto-generator diff --git a/profile/airootfs/etc/systemd/system/choose-mirror.service b/src/profile/airootfs/etc/systemd/system/choose-mirror.service similarity index 100% rename from profile/airootfs/etc/systemd/system/choose-mirror.service rename to src/profile/airootfs/etc/systemd/system/choose-mirror.service diff --git a/profile/airootfs/etc/systemd/system/cloud-init.target.wants/cloud-config.service b/src/profile/airootfs/etc/systemd/system/cloud-init.target.wants/cloud-config.service similarity index 100% rename from profile/airootfs/etc/systemd/system/cloud-init.target.wants/cloud-config.service rename to src/profile/airootfs/etc/systemd/system/cloud-init.target.wants/cloud-config.service diff --git a/profile/airootfs/etc/systemd/system/cloud-init.target.wants/cloud-final.service b/src/profile/airootfs/etc/systemd/system/cloud-init.target.wants/cloud-final.service similarity index 100% rename from profile/airootfs/etc/systemd/system/cloud-init.target.wants/cloud-final.service rename to src/profile/airootfs/etc/systemd/system/cloud-init.target.wants/cloud-final.service diff --git a/profile/airootfs/etc/systemd/system/cloud-init.target.wants/cloud-init-local.service b/src/profile/airootfs/etc/systemd/system/cloud-init.target.wants/cloud-init-local.service similarity index 100% rename from profile/airootfs/etc/systemd/system/cloud-init.target.wants/cloud-init-local.service rename to src/profile/airootfs/etc/systemd/system/cloud-init.target.wants/cloud-init-local.service diff --git a/profile/airootfs/etc/systemd/system/cloud-init.target.wants/cloud-init.service b/src/profile/airootfs/etc/systemd/system/cloud-init.target.wants/cloud-init.service similarity index 100% rename from profile/airootfs/etc/systemd/system/cloud-init.target.wants/cloud-init.service rename to src/profile/airootfs/etc/systemd/system/cloud-init.target.wants/cloud-init.service diff --git a/profile/airootfs/etc/systemd/system/dbus-org.freedesktop.ModemManager1.service b/src/profile/airootfs/etc/systemd/system/dbus-org.freedesktop.ModemManager1.service similarity index 100% rename from profile/airootfs/etc/systemd/system/dbus-org.freedesktop.ModemManager1.service rename to src/profile/airootfs/etc/systemd/system/dbus-org.freedesktop.ModemManager1.service diff --git a/profile/airootfs/etc/systemd/system/dbus-org.freedesktop.network1.service b/src/profile/airootfs/etc/systemd/system/dbus-org.freedesktop.network1.service similarity index 100% rename from profile/airootfs/etc/systemd/system/dbus-org.freedesktop.network1.service rename to src/profile/airootfs/etc/systemd/system/dbus-org.freedesktop.network1.service diff --git a/profile/airootfs/etc/systemd/system/dbus-org.freedesktop.resolve1.service b/src/profile/airootfs/etc/systemd/system/dbus-org.freedesktop.resolve1.service similarity index 100% rename from profile/airootfs/etc/systemd/system/dbus-org.freedesktop.resolve1.service rename to src/profile/airootfs/etc/systemd/system/dbus-org.freedesktop.resolve1.service diff --git a/profile/airootfs/etc/systemd/system/dbus-org.freedesktop.timesync1.service b/src/profile/airootfs/etc/systemd/system/dbus-org.freedesktop.timesync1.service similarity index 100% rename from profile/airootfs/etc/systemd/system/dbus-org.freedesktop.timesync1.service rename to src/profile/airootfs/etc/systemd/system/dbus-org.freedesktop.timesync1.service diff --git a/profile/airootfs/etc/systemd/system/etc-pacman.d-gnupg.mount b/src/profile/airootfs/etc/systemd/system/etc-pacman.d-gnupg.mount similarity index 100% rename from profile/airootfs/etc/systemd/system/etc-pacman.d-gnupg.mount rename to src/profile/airootfs/etc/systemd/system/etc-pacman.d-gnupg.mount diff --git a/profile/airootfs/etc/systemd/system/getty@tty1.service.d/autologin.conf b/src/profile/airootfs/etc/systemd/system/getty@tty1.service.d/autologin.conf similarity index 100% rename from profile/airootfs/etc/systemd/system/getty@tty1.service.d/autologin.conf rename to src/profile/airootfs/etc/systemd/system/getty@tty1.service.d/autologin.conf diff --git a/profile/airootfs/etc/systemd/system/livecd-alsa-unmuter.service b/src/profile/airootfs/etc/systemd/system/livecd-alsa-unmuter.service similarity index 100% rename from profile/airootfs/etc/systemd/system/livecd-alsa-unmuter.service rename to src/profile/airootfs/etc/systemd/system/livecd-alsa-unmuter.service diff --git a/profile/airootfs/etc/systemd/system/livecd-talk.service b/src/profile/airootfs/etc/systemd/system/livecd-talk.service similarity index 100% rename from profile/airootfs/etc/systemd/system/livecd-talk.service rename to src/profile/airootfs/etc/systemd/system/livecd-talk.service diff --git a/profile/airootfs/etc/systemd/system/multi-user.target.wants/ModemManager.service b/src/profile/airootfs/etc/systemd/system/multi-user.target.wants/ModemManager.service similarity index 100% rename from profile/airootfs/etc/systemd/system/multi-user.target.wants/ModemManager.service rename to src/profile/airootfs/etc/systemd/system/multi-user.target.wants/ModemManager.service diff --git a/profile/airootfs/etc/systemd/system/multi-user.target.wants/choose-mirror.service b/src/profile/airootfs/etc/systemd/system/multi-user.target.wants/choose-mirror.service similarity index 100% rename from profile/airootfs/etc/systemd/system/multi-user.target.wants/choose-mirror.service rename to src/profile/airootfs/etc/systemd/system/multi-user.target.wants/choose-mirror.service diff --git a/profile/airootfs/etc/systemd/system/multi-user.target.wants/hv_fcopy_daemon.service b/src/profile/airootfs/etc/systemd/system/multi-user.target.wants/hv_fcopy_daemon.service similarity index 100% rename from profile/airootfs/etc/systemd/system/multi-user.target.wants/hv_fcopy_daemon.service rename to src/profile/airootfs/etc/systemd/system/multi-user.target.wants/hv_fcopy_daemon.service diff --git a/profile/airootfs/etc/systemd/system/multi-user.target.wants/hv_kvp_daemon.service b/src/profile/airootfs/etc/systemd/system/multi-user.target.wants/hv_kvp_daemon.service similarity index 100% rename from profile/airootfs/etc/systemd/system/multi-user.target.wants/hv_kvp_daemon.service rename to src/profile/airootfs/etc/systemd/system/multi-user.target.wants/hv_kvp_daemon.service diff --git a/profile/airootfs/etc/systemd/system/multi-user.target.wants/hv_vss_daemon.service b/src/profile/airootfs/etc/systemd/system/multi-user.target.wants/hv_vss_daemon.service similarity index 100% rename from profile/airootfs/etc/systemd/system/multi-user.target.wants/hv_vss_daemon.service rename to src/profile/airootfs/etc/systemd/system/multi-user.target.wants/hv_vss_daemon.service diff --git a/profile/airootfs/etc/systemd/system/multi-user.target.wants/iwd.service b/src/profile/airootfs/etc/systemd/system/multi-user.target.wants/iwd.service similarity index 100% rename from profile/airootfs/etc/systemd/system/multi-user.target.wants/iwd.service rename to src/profile/airootfs/etc/systemd/system/multi-user.target.wants/iwd.service diff --git a/profile/airootfs/etc/systemd/system/multi-user.target.wants/livecd-talk.service b/src/profile/airootfs/etc/systemd/system/multi-user.target.wants/livecd-talk.service similarity index 100% rename from profile/airootfs/etc/systemd/system/multi-user.target.wants/livecd-talk.service rename to src/profile/airootfs/etc/systemd/system/multi-user.target.wants/livecd-talk.service diff --git a/profile/airootfs/etc/systemd/system/multi-user.target.wants/pacman-init.service b/src/profile/airootfs/etc/systemd/system/multi-user.target.wants/pacman-init.service similarity index 100% rename from profile/airootfs/etc/systemd/system/multi-user.target.wants/pacman-init.service rename to src/profile/airootfs/etc/systemd/system/multi-user.target.wants/pacman-init.service diff --git a/profile/airootfs/etc/systemd/system/multi-user.target.wants/reflector.service b/src/profile/airootfs/etc/systemd/system/multi-user.target.wants/reflector.service similarity index 100% rename from profile/airootfs/etc/systemd/system/multi-user.target.wants/reflector.service rename to src/profile/airootfs/etc/systemd/system/multi-user.target.wants/reflector.service diff --git a/profile/airootfs/etc/systemd/system/multi-user.target.wants/sshd.service b/src/profile/airootfs/etc/systemd/system/multi-user.target.wants/sshd.service similarity index 100% rename from profile/airootfs/etc/systemd/system/multi-user.target.wants/sshd.service rename to src/profile/airootfs/etc/systemd/system/multi-user.target.wants/sshd.service diff --git a/profile/airootfs/etc/systemd/system/multi-user.target.wants/systemd-networkd.service b/src/profile/airootfs/etc/systemd/system/multi-user.target.wants/systemd-networkd.service similarity index 100% rename from profile/airootfs/etc/systemd/system/multi-user.target.wants/systemd-networkd.service rename to src/profile/airootfs/etc/systemd/system/multi-user.target.wants/systemd-networkd.service diff --git a/profile/airootfs/etc/systemd/system/multi-user.target.wants/systemd-resolved.service b/src/profile/airootfs/etc/systemd/system/multi-user.target.wants/systemd-resolved.service similarity index 100% rename from profile/airootfs/etc/systemd/system/multi-user.target.wants/systemd-resolved.service rename to src/profile/airootfs/etc/systemd/system/multi-user.target.wants/systemd-resolved.service diff --git a/profile/airootfs/etc/systemd/system/multi-user.target.wants/vboxservice.service b/src/profile/airootfs/etc/systemd/system/multi-user.target.wants/vboxservice.service similarity index 100% rename from profile/airootfs/etc/systemd/system/multi-user.target.wants/vboxservice.service rename to src/profile/airootfs/etc/systemd/system/multi-user.target.wants/vboxservice.service diff --git a/profile/airootfs/etc/systemd/system/multi-user.target.wants/vmtoolsd.service b/src/profile/airootfs/etc/systemd/system/multi-user.target.wants/vmtoolsd.service similarity index 100% rename from profile/airootfs/etc/systemd/system/multi-user.target.wants/vmtoolsd.service rename to src/profile/airootfs/etc/systemd/system/multi-user.target.wants/vmtoolsd.service diff --git a/profile/airootfs/etc/systemd/system/multi-user.target.wants/vmware-vmblock-fuse.service b/src/profile/airootfs/etc/systemd/system/multi-user.target.wants/vmware-vmblock-fuse.service similarity index 100% rename from profile/airootfs/etc/systemd/system/multi-user.target.wants/vmware-vmblock-fuse.service rename to src/profile/airootfs/etc/systemd/system/multi-user.target.wants/vmware-vmblock-fuse.service diff --git a/profile/airootfs/etc/systemd/system/network-online.target.wants/systemd-networkd-wait-online.service b/src/profile/airootfs/etc/systemd/system/network-online.target.wants/systemd-networkd-wait-online.service similarity index 100% rename from profile/airootfs/etc/systemd/system/network-online.target.wants/systemd-networkd-wait-online.service rename to src/profile/airootfs/etc/systemd/system/network-online.target.wants/systemd-networkd-wait-online.service diff --git a/profile/airootfs/etc/systemd/system/pacman-init.service b/src/profile/airootfs/etc/systemd/system/pacman-init.service similarity index 100% rename from profile/airootfs/etc/systemd/system/pacman-init.service rename to src/profile/airootfs/etc/systemd/system/pacman-init.service diff --git a/profile/airootfs/etc/systemd/system/reflector.service.d/archiso.conf b/src/profile/airootfs/etc/systemd/system/reflector.service.d/archiso.conf similarity index 100% rename from profile/airootfs/etc/systemd/system/reflector.service.d/archiso.conf rename to src/profile/airootfs/etc/systemd/system/reflector.service.d/archiso.conf diff --git a/profile/airootfs/etc/systemd/system/sockets.target.wants/pcscd.socket b/src/profile/airootfs/etc/systemd/system/sockets.target.wants/pcscd.socket similarity index 100% rename from profile/airootfs/etc/systemd/system/sockets.target.wants/pcscd.socket rename to src/profile/airootfs/etc/systemd/system/sockets.target.wants/pcscd.socket diff --git a/profile/airootfs/etc/systemd/system/sockets.target.wants/systemd-networkd.socket b/src/profile/airootfs/etc/systemd/system/sockets.target.wants/systemd-networkd.socket similarity index 100% rename from profile/airootfs/etc/systemd/system/sockets.target.wants/systemd-networkd.socket rename to src/profile/airootfs/etc/systemd/system/sockets.target.wants/systemd-networkd.socket diff --git a/profile/airootfs/etc/systemd/system/sound.target.wants/livecd-alsa-unmuter.service b/src/profile/airootfs/etc/systemd/system/sound.target.wants/livecd-alsa-unmuter.service similarity index 100% rename from profile/airootfs/etc/systemd/system/sound.target.wants/livecd-alsa-unmuter.service rename to src/profile/airootfs/etc/systemd/system/sound.target.wants/livecd-alsa-unmuter.service diff --git a/profile/airootfs/etc/systemd/system/sysinit.target.wants/systemd-time-wait-sync.service b/src/profile/airootfs/etc/systemd/system/sysinit.target.wants/systemd-time-wait-sync.service similarity index 100% rename from profile/airootfs/etc/systemd/system/sysinit.target.wants/systemd-time-wait-sync.service rename to src/profile/airootfs/etc/systemd/system/sysinit.target.wants/systemd-time-wait-sync.service diff --git a/profile/airootfs/etc/systemd/system/sysinit.target.wants/systemd-timesyncd.service b/src/profile/airootfs/etc/systemd/system/sysinit.target.wants/systemd-timesyncd.service similarity index 100% rename from profile/airootfs/etc/systemd/system/sysinit.target.wants/systemd-timesyncd.service rename to src/profile/airootfs/etc/systemd/system/sysinit.target.wants/systemd-timesyncd.service diff --git a/profile/airootfs/etc/systemd/system/systemd-networkd-wait-online.service.d/wait-for-only-one-interface.conf b/src/profile/airootfs/etc/systemd/system/systemd-networkd-wait-online.service.d/wait-for-only-one-interface.conf similarity index 100% rename from profile/airootfs/etc/systemd/system/systemd-networkd-wait-online.service.d/wait-for-only-one-interface.conf rename to src/profile/airootfs/etc/systemd/system/systemd-networkd-wait-online.service.d/wait-for-only-one-interface.conf diff --git a/profile/airootfs/etc/xdg/reflector/reflector.conf b/src/profile/airootfs/etc/xdg/reflector/reflector.conf similarity index 100% rename from profile/airootfs/etc/xdg/reflector/reflector.conf rename to src/profile/airootfs/etc/xdg/reflector/reflector.conf diff --git a/profile/airootfs/root/.gnupg/scdaemon.conf b/src/profile/airootfs/root/.gnupg/scdaemon.conf similarity index 100% rename from profile/airootfs/root/.gnupg/scdaemon.conf rename to src/profile/airootfs/root/.gnupg/scdaemon.conf diff --git a/profile/airootfs/root/.zlogin b/src/profile/airootfs/root/.zlogin similarity index 100% rename from profile/airootfs/root/.zlogin rename to src/profile/airootfs/root/.zlogin diff --git a/profile/airootfs/root/content/home/.cinnamon/backgrounds/user-folders.lst b/src/profile/airootfs/root/content/home/.cinnamon/backgrounds/user-folders.lst similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/backgrounds/user-folders.lst rename to src/profile/airootfs/root/content/home/.cinnamon/backgrounds/user-folders.lst diff --git a/profile/airootfs/root/content/home/.cinnamon/configs/calendar@cinnamon.org/13.json b/src/profile/airootfs/root/content/home/.cinnamon/configs/calendar@cinnamon.org/13.json similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/configs/calendar@cinnamon.org/13.json rename to src/profile/airootfs/root/content/home/.cinnamon/configs/calendar@cinnamon.org/13.json diff --git a/profile/airootfs/root/content/home/.cinnamon/configs/favorites@cinnamon.org/9.json b/src/profile/airootfs/root/content/home/.cinnamon/configs/favorites@cinnamon.org/9.json similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/configs/favorites@cinnamon.org/9.json rename to src/profile/airootfs/root/content/home/.cinnamon/configs/favorites@cinnamon.org/9.json diff --git a/profile/airootfs/root/content/home/.cinnamon/configs/grouped-window-list@cinnamon.org/2.json b/src/profile/airootfs/root/content/home/.cinnamon/configs/grouped-window-list@cinnamon.org/2.json similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/configs/grouped-window-list@cinnamon.org/2.json rename to src/profile/airootfs/root/content/home/.cinnamon/configs/grouped-window-list@cinnamon.org/2.json diff --git a/profile/airootfs/root/content/home/.cinnamon/configs/menu@cinnamon.org/0.json b/src/profile/airootfs/root/content/home/.cinnamon/configs/menu@cinnamon.org/0.json similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/configs/menu@cinnamon.org/0.json rename to src/profile/airootfs/root/content/home/.cinnamon/configs/menu@cinnamon.org/0.json diff --git a/profile/airootfs/root/content/home/.cinnamon/configs/network@cinnamon.org/network@cinnamon.org.json b/src/profile/airootfs/root/content/home/.cinnamon/configs/network@cinnamon.org/network@cinnamon.org.json similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/configs/network@cinnamon.org/network@cinnamon.org.json rename to src/profile/airootfs/root/content/home/.cinnamon/configs/network@cinnamon.org/network@cinnamon.org.json diff --git a/profile/airootfs/root/content/home/.cinnamon/configs/notifications@cinnamon.org/notifications@cinnamon.org.json b/src/profile/airootfs/root/content/home/.cinnamon/configs/notifications@cinnamon.org/notifications@cinnamon.org.json similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/configs/notifications@cinnamon.org/notifications@cinnamon.org.json rename to src/profile/airootfs/root/content/home/.cinnamon/configs/notifications@cinnamon.org/notifications@cinnamon.org.json diff --git a/profile/airootfs/root/content/home/.cinnamon/configs/power@cinnamon.org/power@cinnamon.org.json b/src/profile/airootfs/root/content/home/.cinnamon/configs/power@cinnamon.org/power@cinnamon.org.json similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/configs/power@cinnamon.org/power@cinnamon.org.json rename to src/profile/airootfs/root/content/home/.cinnamon/configs/power@cinnamon.org/power@cinnamon.org.json diff --git a/profile/airootfs/root/content/home/.cinnamon/configs/printers@cinnamon.org/6.json b/src/profile/airootfs/root/content/home/.cinnamon/configs/printers@cinnamon.org/6.json similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/configs/printers@cinnamon.org/6.json rename to src/profile/airootfs/root/content/home/.cinnamon/configs/printers@cinnamon.org/6.json diff --git a/profile/airootfs/root/content/home/.cinnamon/configs/sound@cinnamon.org/sound@cinnamon.org.json b/src/profile/airootfs/root/content/home/.cinnamon/configs/sound@cinnamon.org/sound@cinnamon.org.json similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/configs/sound@cinnamon.org/sound@cinnamon.org.json rename to src/profile/airootfs/root/content/home/.cinnamon/configs/sound@cinnamon.org/sound@cinnamon.org.json diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/DesktopCube@yare.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/DesktopCube@yare.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/DesktopCube@yare.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/DesktopCube@yare.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/Flipper@connerdev.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/Flipper@connerdev.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/Flipper@connerdev.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/Flipper@connerdev.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/SanitizeXsessionErrors@claudiux.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/SanitizeXsessionErrors@claudiux.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/SanitizeXsessionErrors@claudiux.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/SanitizeXsessionErrors@claudiux.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/ShadowParameters@mikhail-ekzi.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/ShadowParameters@mikhail-ekzi.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/ShadowParameters@mikhail-ekzi.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/ShadowParameters@mikhail-ekzi.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/back-to-monitor@nathan818fr.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/back-to-monitor@nathan818fr.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/back-to-monitor@nathan818fr.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/back-to-monitor@nathan818fr.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/blur-overview@nailfarmer.nailfarmer.com.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/blur-overview@nailfarmer.nailfarmer.com.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/blur-overview@nailfarmer.nailfarmer.com.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/blur-overview@nailfarmer.nailfarmer.com.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/cinnamon-maximus@fmete.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/cinnamon-maximus@fmete.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/cinnamon-maximus@fmete.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/cinnamon-maximus@fmete.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/desktop-icons-per-workspace@cardsurf.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/desktop-icons-per-workspace@cardsurf.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/desktop-icons-per-workspace@cardsurf.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/desktop-icons-per-workspace@cardsurf.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/desktop-scroller@ccadeptic23.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/desktop-scroller@ccadeptic23.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/desktop-scroller@ccadeptic23.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/desktop-scroller@ccadeptic23.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/extra-panel-settings@gr3q.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/extra-panel-settings@gr3q.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/extra-panel-settings@gr3q.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/extra-panel-settings@gr3q.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/gTile@shuairan.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/gTile@shuairan.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/gTile@shuairan.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/gTile@shuairan.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/index.json b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/index.json similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/index.json rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/index.json diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/mnemonic-5-4-window-menu@mtwebster.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/mnemonic-5-4-window-menu@mtwebster.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/mnemonic-5-4-window-menu@mtwebster.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/mnemonic-5-4-window-menu@mtwebster.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/opacify@anish.org.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/opacify@anish.org.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/opacify@anish.org.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/opacify@anish.org.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/rnbdsh@negateWindow.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/rnbdsh@negateWindow.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/rnbdsh@negateWindow.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/rnbdsh@negateWindow.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/slider@mohammad-sn.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/slider@mohammad-sn.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/slider@mohammad-sn.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/slider@mohammad-sn.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/smart-panel@mohammad-sn.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/smart-panel@mohammad-sn.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/smart-panel@mohammad-sn.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/smart-panel@mohammad-sn.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/transparent-panels@germanfr.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/transparent-panels@germanfr.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/transparent-panels@germanfr.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/transparent-panels@germanfr.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/user-shadows@nathan818fr.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/user-shadows@nathan818fr.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/user-shadows@nathan818fr.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/user-shadows@nathan818fr.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/watermark@germanfr.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/watermark@germanfr.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/watermark@germanfr.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/watermark@germanfr.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/wobbly-windows@mecheye.net.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/wobbly-windows@mecheye.net.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/wobbly-windows@mecheye.net.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/wobbly-windows@mecheye.net.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/workspace-scroller@ori.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/workspace-scroller@ori.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/workspace-scroller@ori.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/extension/workspace-scroller@ori.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Adapta-Nokto.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Adapta-Nokto.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Adapta-Nokto.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Adapta-Nokto.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Adapta.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Adapta.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Adapta.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Adapta.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Adara-Dark.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Adara-Dark.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Adara-Dark.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Adara-Dark.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Adara.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Adara.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Adara.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Adara.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Ambiance-Crunchy.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Ambiance-Crunchy.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Ambiance-Crunchy.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Ambiance-Crunchy.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Ambiance-Minty.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Ambiance-Minty.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Ambiance-Minty.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Ambiance-Minty.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Baldr.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Baldr.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Baldr.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Baldr.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/BelaLugosi.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/BelaLugosi.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/BelaLugosi.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/BelaLugosi.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Blue-mint.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Blue-mint.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Blue-mint.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Blue-mint.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/CBlack-Remix.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/CBlack-Remix.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/CBlack-Remix.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/CBlack-Remix.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/CBlack.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/CBlack.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/CBlack.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/CBlack.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/CBlue.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/CBlue.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/CBlue.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/CBlue.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/CGreen.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/CGreen.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/CGreen.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/CGreen.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Carta.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Carta.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Carta.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Carta.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Chinvat.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Chinvat.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Chinvat.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Chinvat.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/ChromeOS.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/ChromeOS.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/ChromeOS.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/ChromeOS.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Cinnamox-Aubergine.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Cinnamox-Aubergine.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Cinnamox-Aubergine.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Cinnamox-Aubergine.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Cinnamox-Gold-Spice.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Cinnamox-Gold-Spice.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Cinnamox-Gold-Spice.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Cinnamox-Gold-Spice.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Cinnamox-Heather.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Cinnamox-Heather.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Cinnamox-Heather.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Cinnamox-Heather.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Cinnamox-Kashmir-Blue.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Cinnamox-Kashmir-Blue.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Cinnamox-Kashmir-Blue.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Cinnamox-Kashmir-Blue.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Cinnamox-Rhino.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Cinnamox-Rhino.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Cinnamox-Rhino.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Cinnamox-Rhino.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Cinnamox-Rosso-Cursa.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Cinnamox-Rosso-Cursa.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Cinnamox-Rosso-Cursa.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Cinnamox-Rosso-Cursa.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Cinnamox-Willow-Grove.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Cinnamox-Willow-Grove.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Cinnamox-Willow-Grove.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Cinnamox-Willow-Grove.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Discreet-Flat.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Discreet-Flat.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Discreet-Flat.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Discreet-Flat.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Divo.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Divo.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Divo.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Divo.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Eleganse-dark.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Eleganse-dark.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Eleganse-dark.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Eleganse-dark.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Eleganse.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Eleganse.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Eleganse.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Eleganse.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Facebook.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Facebook.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Facebook.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Facebook.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Faded-Dream.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Faded-Dream.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Faded-Dream.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Faded-Dream.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Faience.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Faience.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Faience.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Faience.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Fresh-Cinnamon.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Fresh-Cinnamon.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Fresh-Cinnamon.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Fresh-Cinnamon.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Glass-Mint-Classic.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Glass-Mint-Classic.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Glass-Mint-Classic.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Glass-Mint-Classic.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Graphite-One.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Graphite-One.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Graphite-One.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Graphite-One.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Graphite-Zero.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Graphite-Zero.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Graphite-Zero.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Graphite-Zero.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Jade-1-Blue.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Jade-1-Blue.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Jade-1-Blue.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Jade-1-Blue.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Jade-1.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Jade-1.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Jade-1.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Jade-1.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Jet-Gray.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Jet-Gray.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Jet-Gray.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Jet-Gray.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Kiss-Kool-Viper.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Kiss-Kool-Viper.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Kiss-Kool-Viper.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Kiss-Kool-Viper.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/LM-Light-Panel.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/LM-Light-Panel.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/LM-Light-Panel.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/LM-Light-Panel.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Loki.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Loki.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Loki.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Loki.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/MGSE-Unity.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/MGSE-Unity.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/MGSE-Unity.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/MGSE-Unity.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Metallic_Cyan.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Metallic_Cyan.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Metallic_Cyan.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Metallic_Cyan.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Mint-X-Dark.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Mint-X-Dark.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Mint-X-Dark.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Mint-X-Dark.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Mint-XP.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Mint-XP.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Mint-XP.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Mint-XP.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Minty.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Minty.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Minty.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Minty.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Monternos.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Monternos.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Monternos.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Monternos.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Moonstone.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Moonstone.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Moonstone.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Moonstone.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/New-Minty.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/New-Minty.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/New-Minty.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/New-Minty.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Numix-Cinnamon-Semi-Transparent.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Numix-Cinnamon-Semi-Transparent.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Numix-Cinnamon-Semi-Transparent.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Numix-Cinnamon-Semi-Transparent.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Numix-Cinnamon-Transparent.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Numix-Cinnamon-Transparent.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Numix-Cinnamon-Transparent.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Numix-Cinnamon-Transparent.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Obsidian.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Obsidian.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Obsidian.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Obsidian.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Orchidea.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Orchidea.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Orchidea.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Orchidea.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Photocopy.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Photocopy.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Photocopy.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Photocopy.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Pragmatic-Darker-Blue.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Pragmatic-Darker-Blue.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Pragmatic-Darker-Blue.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Pragmatic-Darker-Blue.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Railway.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Railway.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Railway.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Railway.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Serena.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Serena.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Serena.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Serena.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Silk.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Silk.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Silk.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Silk.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/SimpleDock.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/SimpleDock.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/SimpleDock.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/SimpleDock.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Spearmint-Leaf.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Spearmint-Leaf.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Spearmint-Leaf.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Spearmint-Leaf.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Spider-Void.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Spider-Void.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Spider-Void.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Spider-Void.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Thunderbolt.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Thunderbolt.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Thunderbolt.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Thunderbolt.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Tomcat.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Tomcat.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Tomcat.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Tomcat.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Tyr-himinn.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Tyr-himinn.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Tyr-himinn.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Tyr-himinn.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Tyr-jord.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Tyr-jord.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Tyr-jord.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Tyr-jord.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Ubuntu-touch.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Ubuntu-touch.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Ubuntu-touch.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Ubuntu-touch.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Vivaldi-ZorinOS.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Vivaldi-ZorinOS.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Vivaldi-ZorinOS.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Vivaldi-ZorinOS.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Vivaldi.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Vivaldi.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Vivaldi.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Vivaldi.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Windows-10-Basic.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Windows-10-Basic.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Windows-10-Basic.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Windows-10-Basic.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Windows-10.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Windows-10.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Windows-10.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/Windows-10.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/iOS-X.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/iOS-X.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/iOS-X.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/iOS-X.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/index.json b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/index.json similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/index.json rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/index.json diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/qob.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/qob.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/qob.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/qob.png diff --git a/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/waterbody.png b/src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/waterbody.png similarity index 100% rename from profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/waterbody.png rename to src/profile/airootfs/root/content/home/.cinnamon/spices.cache/theme/waterbody.png diff --git a/profile/airootfs/root/content/home/.config/Code/User/settings.json b/src/profile/airootfs/root/content/home/.config/Code/User/settings.json similarity index 100% rename from profile/airootfs/root/content/home/.config/Code/User/settings.json rename to src/profile/airootfs/root/content/home/.config/Code/User/settings.json diff --git a/profile/airootfs/root/content/home/.config/btop/btop.conf b/src/profile/airootfs/root/content/home/.config/btop/btop.conf similarity index 100% rename from profile/airootfs/root/content/home/.config/btop/btop.conf rename to src/profile/airootfs/root/content/home/.config/btop/btop.conf diff --git a/profile/airootfs/root/content/home/.config/dconf/user b/src/profile/airootfs/root/content/home/.config/dconf/user similarity index 100% rename from profile/airootfs/root/content/home/.config/dconf/user rename to src/profile/airootfs/root/content/home/.config/dconf/user diff --git a/profile/airootfs/root/content/home/.config/neofetch/config.conf b/src/profile/airootfs/root/content/home/.config/neofetch/config.conf similarity index 100% rename from profile/airootfs/root/content/home/.config/neofetch/config.conf rename to src/profile/airootfs/root/content/home/.config/neofetch/config.conf diff --git a/profile/airootfs/root/content/home/.config/tealdeer/config.toml b/src/profile/airootfs/root/content/home/.config/tealdeer/config.toml similarity index 100% rename from profile/airootfs/root/content/home/.config/tealdeer/config.toml rename to src/profile/airootfs/root/content/home/.config/tealdeer/config.toml diff --git a/profile/airootfs/root/content/home/.gtkrc-2.0 b/src/profile/airootfs/root/content/home/.gtkrc-2.0 similarity index 100% rename from profile/airootfs/root/content/home/.gtkrc-2.0 rename to src/profile/airootfs/root/content/home/.gtkrc-2.0 diff --git a/profile/airootfs/root/content/home/.local/bin/tag b/src/profile/airootfs/root/content/home/.local/bin/tag similarity index 100% rename from profile/airootfs/root/content/home/.local/bin/tag rename to src/profile/airootfs/root/content/home/.local/bin/tag diff --git a/profile/airootfs/root/content/home/.nanorc b/src/profile/airootfs/root/content/home/.nanorc similarity index 100% rename from profile/airootfs/root/content/home/.nanorc rename to src/profile/airootfs/root/content/home/.nanorc diff --git a/profile/airootfs/root/content/home/.profile b/src/profile/airootfs/root/content/home/.profile similarity index 100% rename from profile/airootfs/root/content/home/.profile rename to src/profile/airootfs/root/content/home/.profile diff --git a/profile/airootfs/root/content/home/.themes/CBlack/cinnamon/cinnamon.css b/src/profile/airootfs/root/content/home/.themes/CBlack/cinnamon/cinnamon.css similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/cinnamon/cinnamon.css rename to src/profile/airootfs/root/content/home/.themes/CBlack/cinnamon/cinnamon.css diff --git a/profile/airootfs/root/content/home/.themes/CBlack/cinnamon/common-assets/misc/add-workspace.svg b/src/profile/airootfs/root/content/home/.themes/CBlack/cinnamon/common-assets/misc/add-workspace.svg similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/cinnamon/common-assets/misc/add-workspace.svg rename to src/profile/airootfs/root/content/home/.themes/CBlack/cinnamon/common-assets/misc/add-workspace.svg diff --git a/profile/airootfs/root/content/home/.themes/CBlack/cinnamon/common-assets/misc/calendar-arrow-left-hover.svg b/src/profile/airootfs/root/content/home/.themes/CBlack/cinnamon/common-assets/misc/calendar-arrow-left-hover.svg similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/cinnamon/common-assets/misc/calendar-arrow-left-hover.svg rename to src/profile/airootfs/root/content/home/.themes/CBlack/cinnamon/common-assets/misc/calendar-arrow-left-hover.svg diff --git a/profile/airootfs/root/content/home/.themes/CBlack/cinnamon/common-assets/misc/calendar-arrow-left.svg b/src/profile/airootfs/root/content/home/.themes/CBlack/cinnamon/common-assets/misc/calendar-arrow-left.svg similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/cinnamon/common-assets/misc/calendar-arrow-left.svg rename to src/profile/airootfs/root/content/home/.themes/CBlack/cinnamon/common-assets/misc/calendar-arrow-left.svg diff --git a/profile/airootfs/root/content/home/.themes/CBlack/cinnamon/common-assets/misc/calendar-arrow-right-hover.svg b/src/profile/airootfs/root/content/home/.themes/CBlack/cinnamon/common-assets/misc/calendar-arrow-right-hover.svg similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/cinnamon/common-assets/misc/calendar-arrow-right-hover.svg rename to src/profile/airootfs/root/content/home/.themes/CBlack/cinnamon/common-assets/misc/calendar-arrow-right-hover.svg diff --git a/profile/airootfs/root/content/home/.themes/CBlack/cinnamon/common-assets/misc/calendar-arrow-right.svg b/src/profile/airootfs/root/content/home/.themes/CBlack/cinnamon/common-assets/misc/calendar-arrow-right.svg similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/cinnamon/common-assets/misc/calendar-arrow-right.svg rename to src/profile/airootfs/root/content/home/.themes/CBlack/cinnamon/common-assets/misc/calendar-arrow-right.svg diff --git a/profile/airootfs/root/content/home/.themes/CBlack/cinnamon/common-assets/misc/close-active.svg b/src/profile/airootfs/root/content/home/.themes/CBlack/cinnamon/common-assets/misc/close-active.svg similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/cinnamon/common-assets/misc/close-active.svg rename to src/profile/airootfs/root/content/home/.themes/CBlack/cinnamon/common-assets/misc/close-active.svg diff --git a/profile/airootfs/root/content/home/.themes/CBlack/cinnamon/common-assets/misc/close-hover.svg b/src/profile/airootfs/root/content/home/.themes/CBlack/cinnamon/common-assets/misc/close-hover.svg similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/cinnamon/common-assets/misc/close-hover.svg rename to src/profile/airootfs/root/content/home/.themes/CBlack/cinnamon/common-assets/misc/close-hover.svg diff --git a/profile/airootfs/root/content/home/.themes/CBlack/cinnamon/common-assets/misc/close.svg b/src/profile/airootfs/root/content/home/.themes/CBlack/cinnamon/common-assets/misc/close.svg similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/cinnamon/common-assets/misc/close.svg rename to src/profile/airootfs/root/content/home/.themes/CBlack/cinnamon/common-assets/misc/close.svg diff --git a/profile/airootfs/root/content/home/.themes/CBlack/cinnamon/common-assets/misc/corner-ripple.svg b/src/profile/airootfs/root/content/home/.themes/CBlack/cinnamon/common-assets/misc/corner-ripple.svg similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/cinnamon/common-assets/misc/corner-ripple.svg rename to src/profile/airootfs/root/content/home/.themes/CBlack/cinnamon/common-assets/misc/corner-ripple.svg diff --git a/profile/airootfs/root/content/home/.themes/CBlack/cinnamon/common-assets/misc/message.svg b/src/profile/airootfs/root/content/home/.themes/CBlack/cinnamon/common-assets/misc/message.svg similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/cinnamon/common-assets/misc/message.svg rename to src/profile/airootfs/root/content/home/.themes/CBlack/cinnamon/common-assets/misc/message.svg diff --git a/profile/airootfs/root/content/home/.themes/CBlack/cinnamon/common-assets/misc/overview-hover.png b/src/profile/airootfs/root/content/home/.themes/CBlack/cinnamon/common-assets/misc/overview-hover.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/cinnamon/common-assets/misc/overview-hover.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/cinnamon/common-assets/misc/overview-hover.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/cinnamon/common-assets/misc/overview.png b/src/profile/airootfs/root/content/home/.themes/CBlack/cinnamon/common-assets/misc/overview.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/cinnamon/common-assets/misc/overview.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/cinnamon/common-assets/misc/overview.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/cinnamon/common-assets/misc/trash-icon.png b/src/profile/airootfs/root/content/home/.themes/CBlack/cinnamon/common-assets/misc/trash-icon.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/cinnamon/common-assets/misc/trash-icon.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/cinnamon/common-assets/misc/trash-icon.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/cinnamon/common-assets/switch/switch-off.svg b/src/profile/airootfs/root/content/home/.themes/CBlack/cinnamon/common-assets/switch/switch-off.svg similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/cinnamon/common-assets/switch/switch-off.svg rename to src/profile/airootfs/root/content/home/.themes/CBlack/cinnamon/common-assets/switch/switch-off.svg diff --git a/profile/airootfs/root/content/home/.themes/CBlack/cinnamon/common-assets/switch/switch-on.svg b/src/profile/airootfs/root/content/home/.themes/CBlack/cinnamon/common-assets/switch/switch-on.svg similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/cinnamon/common-assets/switch/switch-on.svg rename to src/profile/airootfs/root/content/home/.themes/CBlack/cinnamon/common-assets/switch/switch-on.svg diff --git a/profile/airootfs/root/content/home/.themes/CBlack/cinnamon/menu-symbolic.svg b/src/profile/airootfs/root/content/home/.themes/CBlack/cinnamon/menu-symbolic.svg similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/cinnamon/menu-symbolic.svg rename to src/profile/airootfs/root/content/home/.themes/CBlack/cinnamon/menu-symbolic.svg diff --git a/profile/airootfs/root/content/home/.themes/CBlack/cinnamon/metadata.json b/src/profile/airootfs/root/content/home/.themes/CBlack/cinnamon/metadata.json similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/cinnamon/metadata.json rename to src/profile/airootfs/root/content/home/.themes/CBlack/cinnamon/metadata.json diff --git a/profile/airootfs/root/content/home/.themes/CBlack/cinnamon/thumbnail.png b/src/profile/airootfs/root/content/home/.themes/CBlack/cinnamon/thumbnail.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/cinnamon/thumbnail.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/cinnamon/thumbnail.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/apps.rc b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/apps.rc similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/apps.rc rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/apps.rc diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-down-insens.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-down-insens.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-down-insens.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-down-insens.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-down-prelight.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-down-prelight.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-down-prelight.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-down-prelight.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-down-small-insens.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-down-small-insens.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-down-small-insens.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-down-small-insens.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-down-small-prelight.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-down-small-prelight.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-down-small-prelight.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-down-small-prelight.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-down-small.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-down-small.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-down-small.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-down-small.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-down.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-down.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-down.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-down.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-left-insens.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-left-insens.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-left-insens.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-left-insens.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-left-prelight.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-left-prelight.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-left-prelight.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-left-prelight.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-left.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-left.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-left.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-left.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-right-insens.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-right-insens.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-right-insens.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-right-insens.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-right-prelight.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-right-prelight.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-right-prelight.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-right-prelight.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-right.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-right.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-right.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-right.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-up-insens.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-up-insens.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-up-insens.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-up-insens.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-up-prelight.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-up-prelight.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-up-prelight.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-up-prelight.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-up-small-insens.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-up-small-insens.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-up-small-insens.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-up-small-insens.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-up-small-prelight.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-up-small-prelight.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-up-small-prelight.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-up-small-prelight.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-up-small.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-up-small.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-up-small.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-up-small.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-up.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-up.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-up.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/arrow-up.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/button-active.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/button-active.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/button-active.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/button-active.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/button-hover.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/button-hover.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/button-hover.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/button-hover.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/button-insensitive.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/button-insensitive.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/button-insensitive.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/button-insensitive.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/button.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/button.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/button.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/button.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/checkbox-checked-insensitive.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/checkbox-checked-insensitive.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/checkbox-checked-insensitive.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/checkbox-checked-insensitive.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/checkbox-checked.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/checkbox-checked.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/checkbox-checked.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/checkbox-checked.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/checkbox-unchecked-insensitive.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/checkbox-unchecked-insensitive.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/checkbox-unchecked-insensitive.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/checkbox-unchecked-insensitive.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/checkbox-unchecked.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/checkbox-unchecked.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/checkbox-unchecked.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/checkbox-unchecked.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-button-active-rtl.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-button-active-rtl.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-button-active-rtl.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-button-active-rtl.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-button-active.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-button-active.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-button-active.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-button-active.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-button-insensitive-rtl.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-button-insensitive-rtl.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-button-insensitive-rtl.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-button-insensitive-rtl.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-button-insensitive.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-button-insensitive.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-button-insensitive.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-button-insensitive.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-button-rtl.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-button-rtl.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-button-rtl.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-button-rtl.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-button.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-button.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-button.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-button.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-focus-notebook.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-focus-notebook.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-focus-notebook.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-focus-notebook.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-focus-rtl.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-focus-rtl.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-focus-rtl.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-focus-rtl.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-focus.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-focus.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-focus.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-focus.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-insensitive-notebook-rtl.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-insensitive-notebook-rtl.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-insensitive-notebook-rtl.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-insensitive-notebook-rtl.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-insensitive-notebook.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-insensitive-notebook.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-insensitive-notebook.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-insensitive-notebook.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-insensitive-rtl.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-insensitive-rtl.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-insensitive-rtl.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-insensitive-rtl.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-insensitive.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-insensitive.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-insensitive.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-insensitive.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-notebook-rtl.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-notebook-rtl.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-notebook-rtl.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-notebook-rtl.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-notebook.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-notebook.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-notebook.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-notebook.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-rtl.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-rtl.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-rtl.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry-rtl.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/combo-entry.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/down-background-disable-rtl.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/down-background-disable-rtl.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/down-background-disable-rtl.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/down-background-disable-rtl.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/down-background-disable.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/down-background-disable.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/down-background-disable.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/down-background-disable.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/down-background-rtl.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/down-background-rtl.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/down-background-rtl.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/down-background-rtl.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/down-background.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/down-background.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/down-background.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/down-background.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/entry-border-active-bg-solid.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/entry-border-active-bg-solid.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/entry-border-active-bg-solid.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/entry-border-active-bg-solid.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/entry-border-active-bg.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/entry-border-active-bg.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/entry-border-active-bg.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/entry-border-active-bg.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/entry-border-bg-solid.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/entry-border-bg-solid.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/entry-border-bg-solid.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/entry-border-bg-solid.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/entry-border-bg.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/entry-border-bg.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/entry-border-bg.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/entry-border-bg.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/entry-border-disabled-bg.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/entry-border-disabled-bg.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/entry-border-disabled-bg.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/entry-border-disabled-bg.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/entry-border-fill.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/entry-border-fill.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/entry-border-fill.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/entry-border-fill.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/focus-line.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/focus-line.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/focus-line.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/focus-line.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/frame-gap-end.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/frame-gap-end.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/frame-gap-end.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/frame-gap-end.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/frame-gap-start.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/frame-gap-start.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/frame-gap-start.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/frame-gap-start.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/frame.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/frame.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/frame.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/frame.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/handle-h.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/handle-h.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/handle-h.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/handle-h.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/handle-v.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/handle-v.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/handle-v.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/handle-v.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/inline-toolbar.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/inline-toolbar.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/inline-toolbar.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/inline-toolbar.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/line-h.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/line-h.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/line-h.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/line-h.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/line-v.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/line-v.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/line-v.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/line-v.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/menu-arrow-prelight.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/menu-arrow-prelight.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/menu-arrow-prelight.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/menu-arrow-prelight.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/menu-arrow.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/menu-arrow.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/menu-arrow.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/menu-arrow.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/menu-checkbox-checked-insensitive.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/menu-checkbox-checked-insensitive.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/menu-checkbox-checked-insensitive.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/menu-checkbox-checked-insensitive.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/menu-checkbox-checked.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/menu-checkbox-checked.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/menu-checkbox-checked.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/menu-checkbox-checked.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/menu-checkbox-unchecked.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/menu-checkbox-unchecked.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/menu-checkbox-unchecked.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/menu-checkbox-unchecked.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/menu-radio-checked-insensitive.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/menu-radio-checked-insensitive.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/menu-radio-checked-insensitive.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/menu-radio-checked-insensitive.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/menu-radio-checked.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/menu-radio-checked.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/menu-radio-checked.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/menu-radio-checked.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/menu-radio-unchecked-insensitive.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/menu-radio-unchecked-insensitive.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/menu-radio-unchecked-insensitive.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/menu-radio-unchecked-insensitive.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/menu-radio-unchecked.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/menu-radio-unchecked.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/menu-radio-unchecked.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/menu-radio-unchecked.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/menubar.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/menubar.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/menubar.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/menubar.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/menubar_button.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/menubar_button.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/menubar_button.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/menubar_button.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/menuitem.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/menuitem.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/menuitem.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/menuitem.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/minus.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/minus.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/minus.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/minus.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/notebook-entry-border-active-bg.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/notebook-entry-border-active-bg.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/notebook-entry-border-active-bg.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/notebook-entry-border-active-bg.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/notebook-entry-border-bg.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/notebook-entry-border-bg.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/notebook-entry-border-bg.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/notebook-entry-border-bg.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/notebook-entry-border-disabled-bg.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/notebook-entry-border-disabled-bg.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/notebook-entry-border-disabled-bg.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/notebook-entry-border-disabled-bg.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/notebook-gap-horiz.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/notebook-gap-horiz.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/notebook-gap-horiz.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/notebook-gap-horiz.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/notebook-gap-vert.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/notebook-gap-vert.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/notebook-gap-vert.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/notebook-gap-vert.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/notebook.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/notebook.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/notebook.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/notebook.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/null.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/null.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/null.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/null.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/plus.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/plus.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/plus.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/plus.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/progressbar.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/progressbar.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/progressbar.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/progressbar.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/progressbar_v.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/progressbar_v.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/progressbar_v.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/progressbar_v.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/radio-checked-insensitive.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/radio-checked-insensitive.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/radio-checked-insensitive.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/radio-checked-insensitive.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/radio-checked.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/radio-checked.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/radio-checked.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/radio-checked.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/radio-unchecked-insensitive.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/radio-unchecked-insensitive.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/radio-unchecked-insensitive.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/radio-unchecked-insensitive.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/radio-unchecked.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/radio-unchecked.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/radio-unchecked.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/radio-unchecked.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/slider-horiz-active.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/slider-horiz-active.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/slider-horiz-active.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/slider-horiz-active.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/slider-horiz-insens.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/slider-horiz-insens.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/slider-horiz-insens.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/slider-horiz-insens.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/slider-horiz-prelight.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/slider-horiz-prelight.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/slider-horiz-prelight.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/slider-horiz-prelight.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/slider-horiz.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/slider-horiz.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/slider-horiz.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/slider-horiz.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/slider-insensitive.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/slider-insensitive.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/slider-insensitive.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/slider-insensitive.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/slider-prelight.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/slider-prelight.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/slider-prelight.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/slider-prelight.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/slider-vert-active.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/slider-vert-active.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/slider-vert-active.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/slider-vert-active.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/slider-vert-insens.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/slider-vert-insens.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/slider-vert-insens.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/slider-vert-insens.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/slider-vert-prelight.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/slider-vert-prelight.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/slider-vert-prelight.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/slider-vert-prelight.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/slider-vert.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/slider-vert.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/slider-vert.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/slider-vert.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/slider.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/slider.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/slider.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/slider.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/tab-bottom-active.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/tab-bottom-active.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/tab-bottom-active.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/tab-bottom-active.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/tab-left-active.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/tab-left-active.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/tab-left-active.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/tab-left-active.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/tab-right-active.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/tab-right-active.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/tab-right-active.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/tab-right-active.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/tab-top-active.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/tab-top-active.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/tab-top-active.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/tab-top-active.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/toolbar-entry-border-active-bg.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/toolbar-entry-border-active-bg.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/toolbar-entry-border-active-bg.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/toolbar-entry-border-active-bg.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/toolbar-entry-border-bg.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/toolbar-entry-border-bg.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/toolbar-entry-border-bg.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/toolbar-entry-border-bg.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/toolbar-entry-border-disabled-bg.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/toolbar-entry-border-disabled-bg.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/toolbar-entry-border-disabled-bg.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/toolbar-entry-border-disabled-bg.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/toolbar.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/toolbar.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/toolbar.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/toolbar.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/tree_header.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/tree_header.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/tree_header.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/tree_header.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/trough-horizontal-active.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/trough-horizontal-active.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/trough-horizontal-active.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/trough-horizontal-active.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/trough-horizontal.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/trough-horizontal.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/trough-horizontal.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/trough-horizontal.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/trough-progressbar.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/trough-progressbar.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/trough-progressbar.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/trough-progressbar.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/trough-progressbar_v.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/trough-progressbar_v.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/trough-progressbar_v.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/trough-progressbar_v.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/trough-scrollbar-horiz.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/trough-scrollbar-horiz.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/trough-scrollbar-horiz.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/trough-scrollbar-horiz.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/trough-scrollbar-vert.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/trough-scrollbar-vert.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/trough-scrollbar-vert.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/trough-scrollbar-vert.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/trough-vertical-active.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/trough-vertical-active.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/trough-vertical-active.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/trough-vertical-active.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/trough-vertical.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/trough-vertical.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/trough-vertical.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/trough-vertical.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/up-background-disable-rtl.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/up-background-disable-rtl.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/up-background-disable-rtl.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/up-background-disable-rtl.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/up-background-disable.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/up-background-disable.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/up-background-disable.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/up-background-disable.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/up-background-rtl.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/up-background-rtl.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/up-background-rtl.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/up-background-rtl.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/up-background.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/up-background.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/up-background.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/assets/up-background.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/gtkrc b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/gtkrc similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/gtkrc rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/gtkrc diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/main.rc b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/main.rc similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/main.rc rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/main.rc diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/button-active.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/button-active.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/button-active.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/button-active.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/button-hover.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/button-hover.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/button-hover.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/button-hover.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/button-insensitive.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/button-insensitive.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/button-insensitive.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/button-insensitive.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/button.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/button.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/button.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/button.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/menubar-dark.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/menubar-dark.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/menubar-dark.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/menubar-dark.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/menubar-toolbar.rc b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/menubar-toolbar.rc similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/menubar-toolbar.rc rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/menubar-toolbar.rc diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/menubar.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/menubar.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/menubar.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/menubar.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/menubar_button-dark.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/menubar_button-dark.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/menubar_button-dark.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/menubar_button-dark.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/menubar_button.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/menubar_button.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/menubar_button.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/menubar_button.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg-dark.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg-dark.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg-dark.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg-dark.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/toolbar-entry-border-active-bg.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg-dark.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg-dark.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg-dark.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg-dark.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/toolbar-entry-border-bg.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg-dark.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/menubar-toolbar/toolbar-entry-border-disabled-bg.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/panel.rc b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/panel.rc similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/panel.rc rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-2.0/panel.rc diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked-dark.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked-dark.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked-dark.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked-dark.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked-dark@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked-dark@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked-dark@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked-dark@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked-insensitive-dark.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked-insensitive-dark.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked-insensitive-dark.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked-insensitive-dark.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked-insensitive-dark@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked-insensitive-dark@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked-insensitive-dark@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked-insensitive-dark@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked-insensitive-selected.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked-insensitive-selected.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked-insensitive-selected.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked-insensitive-selected.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked-insensitive-selected@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked-insensitive-selected@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked-insensitive-selected@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked-insensitive-selected@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked-insensitive.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked-insensitive.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked-insensitive.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked-insensitive.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked-insensitive@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked-insensitive@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked-insensitive@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked-insensitive@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked-selected.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked-selected.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked-selected.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked-selected.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked-selected@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked-selected@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked-selected@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked-selected@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked-selectionmode-dark.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked-selectionmode-dark.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked-selectionmode-dark.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked-selectionmode-dark.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked-selectionmode-dark@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked-selectionmode-dark@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked-selectionmode-dark@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked-selectionmode-dark@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked-selectionmode.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked-selectionmode.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked-selectionmode.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked-selectionmode.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked-selectionmode@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked-selectionmode@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked-selectionmode@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked-selectionmode@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-checked@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-mixed-dark.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-mixed-dark.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-mixed-dark.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-mixed-dark.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-mixed-dark@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-mixed-dark@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-mixed-dark@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-mixed-dark@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-mixed-insensitive-dark.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-mixed-insensitive-dark.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-mixed-insensitive-dark.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-mixed-insensitive-dark.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-mixed-insensitive-dark@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-mixed-insensitive-dark@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-mixed-insensitive-dark@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-mixed-insensitive-dark@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-mixed-insensitive-selected.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-mixed-insensitive-selected.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-mixed-insensitive-selected.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-mixed-insensitive-selected.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-mixed-insensitive-selected@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-mixed-insensitive-selected@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-mixed-insensitive-selected@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-mixed-insensitive-selected@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-mixed-insensitive.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-mixed-insensitive.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-mixed-insensitive.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-mixed-insensitive.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-mixed-insensitive@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-mixed-insensitive@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-mixed-insensitive@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-mixed-insensitive@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-mixed-selected.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-mixed-selected.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-mixed-selected.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-mixed-selected.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-mixed-selected@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-mixed-selected@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-mixed-selected@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-mixed-selected@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-mixed.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-mixed.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-mixed.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-mixed.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-mixed@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-mixed@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-mixed@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-mixed@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-selectionmode-dark.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-selectionmode-dark.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-selectionmode-dark.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-selectionmode-dark.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-selectionmode-dark@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-selectionmode-dark@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-selectionmode-dark@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-selectionmode-dark@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-selectionmode.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-selectionmode.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-selectionmode.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-selectionmode.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-selectionmode@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-selectionmode@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-selectionmode@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-selectionmode@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-unchecked-dark.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-unchecked-dark.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-unchecked-dark.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-unchecked-dark.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-unchecked-dark@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-unchecked-dark@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-unchecked-dark@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-unchecked-dark@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-unchecked-insensitive-dark.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-unchecked-insensitive-dark.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-unchecked-insensitive-dark.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-unchecked-insensitive-dark.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-unchecked-insensitive-dark@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-unchecked-insensitive-dark@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-unchecked-insensitive-dark@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-unchecked-insensitive-dark@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-unchecked-insensitive-selected.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-unchecked-insensitive-selected.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-unchecked-insensitive-selected.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-unchecked-insensitive-selected.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-unchecked-insensitive-selected@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-unchecked-insensitive-selected@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-unchecked-insensitive-selected@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-unchecked-insensitive-selected@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-unchecked-insensitive.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-unchecked-insensitive.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-unchecked-insensitive.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-unchecked-insensitive.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-unchecked-insensitive@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-unchecked-insensitive@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-unchecked-insensitive@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-unchecked-insensitive@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-unchecked-selected.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-unchecked-selected.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-unchecked-selected.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-unchecked-selected.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-unchecked-selected@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-unchecked-selected@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-unchecked-selected@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-unchecked-selected@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-unchecked.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-unchecked.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-unchecked.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-unchecked.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-unchecked@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-unchecked@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-unchecked@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/checkbox-unchecked@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/pane-separator-vertical.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/pane-separator-vertical.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/pane-separator-vertical.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/pane-separator-vertical.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/pane-separator-vertical@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/pane-separator-vertical@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/pane-separator-vertical@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/pane-separator-vertical@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/pane-separator.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/pane-separator.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/pane-separator.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/pane-separator.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/pane-separator@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/pane-separator@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/pane-separator@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/pane-separator@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-checked-dark.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-checked-dark.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-checked-dark.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-checked-dark.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-checked-dark@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-checked-dark@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-checked-dark@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-checked-dark@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-checked-insensitive-dark.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-checked-insensitive-dark.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-checked-insensitive-dark.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-checked-insensitive-dark.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-checked-insensitive-dark@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-checked-insensitive-dark@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-checked-insensitive-dark@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-checked-insensitive-dark@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-checked-insensitive-selected.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-checked-insensitive-selected.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-checked-insensitive-selected.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-checked-insensitive-selected.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-checked-insensitive-selected@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-checked-insensitive-selected@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-checked-insensitive-selected@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-checked-insensitive-selected@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-checked-insensitive.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-checked-insensitive.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-checked-insensitive.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-checked-insensitive.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-checked-insensitive@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-checked-insensitive@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-checked-insensitive@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-checked-insensitive@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-checked-selected.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-checked-selected.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-checked-selected.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-checked-selected.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-checked-selected@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-checked-selected@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-checked-selected@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-checked-selected@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-checked.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-checked.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-checked.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-checked.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-checked@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-checked@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-checked@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-checked@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-mixed-dark.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-mixed-dark.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-mixed-dark.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-mixed-dark.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-mixed-dark@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-mixed-dark@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-mixed-dark@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-mixed-dark@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-mixed-insensitive-dark.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-mixed-insensitive-dark.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-mixed-insensitive-dark.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-mixed-insensitive-dark.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-mixed-insensitive-dark@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-mixed-insensitive-dark@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-mixed-insensitive-dark@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-mixed-insensitive-dark@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-mixed-insensitive-selected.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-mixed-insensitive-selected.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-mixed-insensitive-selected.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-mixed-insensitive-selected.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-mixed-insensitive-selected@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-mixed-insensitive-selected@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-mixed-insensitive-selected@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-mixed-insensitive-selected@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-mixed-insensitive.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-mixed-insensitive.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-mixed-insensitive.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-mixed-insensitive.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-mixed-insensitive@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-mixed-insensitive@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-mixed-insensitive@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-mixed-insensitive@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-mixed-selected.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-mixed-selected.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-mixed-selected.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-mixed-selected.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-mixed-selected@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-mixed-selected@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-mixed-selected@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-mixed-selected@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-mixed.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-mixed.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-mixed.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-mixed.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-mixed@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-mixed@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-mixed@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-mixed@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-unchecked-dark.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-unchecked-dark.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-unchecked-dark.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-unchecked-dark.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-unchecked-dark@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-unchecked-dark@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-unchecked-dark@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-unchecked-dark@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-unchecked-insensitive-dark.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-unchecked-insensitive-dark.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-unchecked-insensitive-dark.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-unchecked-insensitive-dark.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-unchecked-insensitive-dark@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-unchecked-insensitive-dark@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-unchecked-insensitive-dark@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-unchecked-insensitive-dark@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-unchecked-insensitive-selected.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-unchecked-insensitive-selected.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-unchecked-insensitive-selected.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-unchecked-insensitive-selected.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-unchecked-insensitive-selected@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-unchecked-insensitive-selected@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-unchecked-insensitive-selected@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-unchecked-insensitive-selected@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-unchecked-insensitive.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-unchecked-insensitive.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-unchecked-insensitive.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-unchecked-insensitive.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-unchecked-insensitive@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-unchecked-insensitive@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-unchecked-insensitive@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-unchecked-insensitive@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-unchecked-selected.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-unchecked-selected.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-unchecked-selected.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-unchecked-selected.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-unchecked-selected@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-unchecked-selected@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-unchecked-selected@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-unchecked-selected@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-unchecked.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-unchecked.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-unchecked.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-unchecked.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-unchecked@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-unchecked@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-unchecked@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/radio-unchecked@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-dark.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-dark.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-dark.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-dark.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-dark@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-dark@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-dark@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-dark@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-header-dark.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-header-dark.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-header-dark.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-header-dark.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-header-dark@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-header-dark@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-header-dark@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-header-dark@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-header.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-header.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-header.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-header.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-header@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-header@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-header@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-header@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-insensitive-dark.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-insensitive-dark.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-insensitive-dark.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-insensitive-dark.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-insensitive-dark@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-insensitive-dark@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-insensitive-dark@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-insensitive-dark@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-insensitive-header-dark.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-insensitive-header-dark.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-insensitive-header-dark.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-insensitive-header-dark.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-insensitive-header-dark@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-insensitive-header-dark@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-insensitive-header-dark@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-insensitive-header-dark@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-insensitive-header.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-insensitive-header.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-insensitive-header.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-insensitive-header.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-insensitive-header@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-insensitive-header@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-insensitive-header@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-insensitive-header@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-insensitive-selected.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-insensitive-selected.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-insensitive-selected.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-insensitive-selected.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-insensitive-selected@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-insensitive-selected@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-insensitive-selected@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-insensitive-selected@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-insensitive.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-insensitive.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-insensitive.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-insensitive.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-insensitive@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-insensitive@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-insensitive@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-insensitive@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-selected.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-selected.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-selected.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-selected.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-selected@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-selected@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-selected@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active-selected@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-active@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-dark.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-dark.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-dark.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-dark.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-dark@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-dark@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-dark@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-dark@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-header-dark.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-header-dark.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-header-dark.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-header-dark.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-header-dark@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-header-dark@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-header-dark@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-header-dark@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-header.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-header.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-header.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-header.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-header@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-header@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-header@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-header@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-insensitive-dark.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-insensitive-dark.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-insensitive-dark.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-insensitive-dark.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-insensitive-dark@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-insensitive-dark@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-insensitive-dark@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-insensitive-dark@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-insensitive-header-dark.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-insensitive-header-dark.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-insensitive-header-dark.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-insensitive-header-dark.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-insensitive-header-dark@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-insensitive-header-dark@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-insensitive-header-dark@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-insensitive-header-dark@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-insensitive-header.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-insensitive-header.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-insensitive-header.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-insensitive-header.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-insensitive-header@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-insensitive-header@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-insensitive-header@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-insensitive-header@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-insensitive-selected.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-insensitive-selected.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-insensitive-selected.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-insensitive-selected.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-insensitive-selected@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-insensitive-selected@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-insensitive-selected@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-insensitive-selected@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-insensitive.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-insensitive.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-insensitive.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-insensitive.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-insensitive@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-insensitive@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-insensitive@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-insensitive@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-selected.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-selected.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-selected.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-selected.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-selected@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-selected@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-selected@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch-selected@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/switch@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close-active-dark.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close-active-dark.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close-active-dark.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close-active-dark.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close-active-dark@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close-active-dark@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close-active-dark@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close-active-dark@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close-active.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close-active.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close-active.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close-active.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close-active@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close-active@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close-active@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close-active@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close-backdrop-dark.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close-backdrop-dark.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close-backdrop-dark.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close-backdrop-dark.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close-backdrop-dark@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close-backdrop-dark@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close-backdrop-dark@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close-backdrop-dark@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close-backdrop.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close-backdrop.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close-backdrop.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close-backdrop.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close-backdrop@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close-backdrop@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close-backdrop@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close-backdrop@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close-dark.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close-dark.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close-dark.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close-dark.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close-dark@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close-dark@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close-dark@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close-dark@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close-hover-dark.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close-hover-dark.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close-hover-dark.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close-hover-dark.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close-hover-dark@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close-hover-dark@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close-hover-dark@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close-hover-dark@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close-hover.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close-hover.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close-hover.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close-hover.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close-hover@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close-hover@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close-hover@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close-hover@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-close@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max-active-dark.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max-active-dark.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max-active-dark.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max-active-dark.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max-active-dark@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max-active-dark@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max-active-dark@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max-active-dark@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max-active.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max-active.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max-active.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max-active.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max-active@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max-active@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max-active@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max-active@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max-backdrop-dark.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max-backdrop-dark.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max-backdrop-dark.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max-backdrop-dark.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max-backdrop-dark@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max-backdrop-dark@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max-backdrop-dark@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max-backdrop-dark@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max-backdrop.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max-backdrop.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max-backdrop.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max-backdrop.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max-backdrop@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max-backdrop@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max-backdrop@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max-backdrop@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max-dark.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max-dark.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max-dark.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max-dark.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max-dark@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max-dark@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max-dark@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max-dark@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max-hover-dark.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max-hover-dark.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max-hover-dark.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max-hover-dark.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max-hover-dark@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max-hover-dark@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max-hover-dark@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max-hover-dark@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max-hover.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max-hover.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max-hover.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max-hover.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max-hover@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max-hover@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max-hover@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max-hover@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-max@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min-active-dark.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min-active-dark.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min-active-dark.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min-active-dark.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min-active-dark@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min-active-dark@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min-active-dark@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min-active-dark@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min-active.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min-active.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min-active.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min-active.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min-active@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min-active@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min-active@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min-active@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min-backdrop-dark.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min-backdrop-dark.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min-backdrop-dark.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min-backdrop-dark.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min-backdrop-dark@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min-backdrop-dark@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min-backdrop-dark@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min-backdrop-dark@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min-backdrop.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min-backdrop.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min-backdrop.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min-backdrop.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min-backdrop@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min-backdrop@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min-backdrop@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min-backdrop@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min-dark.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min-dark.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min-dark.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min-dark.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min-dark@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min-dark@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min-dark@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min-dark@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min-hover-dark.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min-hover-dark.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min-hover-dark.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min-hover-dark.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min-hover-dark@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min-hover-dark@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min-hover-dark@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min-hover-dark@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min-hover.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min-hover.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min-hover.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min-hover.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min-hover@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min-hover@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min-hover@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min-hover@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min@2.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min@2.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min@2.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/assets/titlebutton-min@2.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/gtk.css b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/gtk.css similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/gtk.css rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/gtk.css diff --git a/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/thumbnail.png b/src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/thumbnail.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/thumbnail.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/gtk-3.0/thumbnail.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/index.theme b/src/profile/airootfs/root/content/home/.themes/CBlack/index.theme similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/index.theme rename to src/profile/airootfs/root/content/home/.themes/CBlack/index.theme diff --git a/profile/airootfs/root/content/home/.themes/CBlack/metacity-1/button-bg.svg b/src/profile/airootfs/root/content/home/.themes/CBlack/metacity-1/button-bg.svg similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/metacity-1/button-bg.svg rename to src/profile/airootfs/root/content/home/.themes/CBlack/metacity-1/button-bg.svg diff --git a/profile/airootfs/root/content/home/.themes/CBlack/metacity-1/button-border.svg b/src/profile/airootfs/root/content/home/.themes/CBlack/metacity-1/button-border.svg similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/metacity-1/button-border.svg rename to src/profile/airootfs/root/content/home/.themes/CBlack/metacity-1/button-border.svg diff --git a/profile/airootfs/root/content/home/.themes/CBlack/metacity-1/close-icon.svg b/src/profile/airootfs/root/content/home/.themes/CBlack/metacity-1/close-icon.svg similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/metacity-1/close-icon.svg rename to src/profile/airootfs/root/content/home/.themes/CBlack/metacity-1/close-icon.svg diff --git a/profile/airootfs/root/content/home/.themes/CBlack/metacity-1/max-icon.svg b/src/profile/airootfs/root/content/home/.themes/CBlack/metacity-1/max-icon.svg similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/metacity-1/max-icon.svg rename to src/profile/airootfs/root/content/home/.themes/CBlack/metacity-1/max-icon.svg diff --git a/profile/airootfs/root/content/home/.themes/CBlack/metacity-1/menu-icon.svg b/src/profile/airootfs/root/content/home/.themes/CBlack/metacity-1/menu-icon.svg similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/metacity-1/menu-icon.svg rename to src/profile/airootfs/root/content/home/.themes/CBlack/metacity-1/menu-icon.svg diff --git a/profile/airootfs/root/content/home/.themes/CBlack/metacity-1/metacity-theme-2.xml b/src/profile/airootfs/root/content/home/.themes/CBlack/metacity-1/metacity-theme-2.xml similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/metacity-1/metacity-theme-2.xml rename to src/profile/airootfs/root/content/home/.themes/CBlack/metacity-1/metacity-theme-2.xml diff --git a/profile/airootfs/root/content/home/.themes/CBlack/metacity-1/metacity-theme-3.xml b/src/profile/airootfs/root/content/home/.themes/CBlack/metacity-1/metacity-theme-3.xml similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/metacity-1/metacity-theme-3.xml rename to src/profile/airootfs/root/content/home/.themes/CBlack/metacity-1/metacity-theme-3.xml diff --git a/profile/airootfs/root/content/home/.themes/CBlack/metacity-1/min-icon.svg b/src/profile/airootfs/root/content/home/.themes/CBlack/metacity-1/min-icon.svg similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/metacity-1/min-icon.svg rename to src/profile/airootfs/root/content/home/.themes/CBlack/metacity-1/min-icon.svg diff --git a/profile/airootfs/root/content/home/.themes/CBlack/metacity-1/shade-icon.svg b/src/profile/airootfs/root/content/home/.themes/CBlack/metacity-1/shade-icon.svg similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/metacity-1/shade-icon.svg rename to src/profile/airootfs/root/content/home/.themes/CBlack/metacity-1/shade-icon.svg diff --git a/profile/airootfs/root/content/home/.themes/CBlack/metacity-1/stick-icon.svg b/src/profile/airootfs/root/content/home/.themes/CBlack/metacity-1/stick-icon.svg similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/metacity-1/stick-icon.svg rename to src/profile/airootfs/root/content/home/.themes/CBlack/metacity-1/stick-icon.svg diff --git a/profile/airootfs/root/content/home/.themes/CBlack/metacity-1/thumbnail.png b/src/profile/airootfs/root/content/home/.themes/CBlack/metacity-1/thumbnail.png similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/metacity-1/thumbnail.png rename to src/profile/airootfs/root/content/home/.themes/CBlack/metacity-1/thumbnail.png diff --git a/profile/airootfs/root/content/home/.themes/CBlack/metacity-1/unshade-icon.svg b/src/profile/airootfs/root/content/home/.themes/CBlack/metacity-1/unshade-icon.svg similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/metacity-1/unshade-icon.svg rename to src/profile/airootfs/root/content/home/.themes/CBlack/metacity-1/unshade-icon.svg diff --git a/profile/airootfs/root/content/home/.themes/CBlack/metacity-1/unstick-icon.svg b/src/profile/airootfs/root/content/home/.themes/CBlack/metacity-1/unstick-icon.svg similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/metacity-1/unstick-icon.svg rename to src/profile/airootfs/root/content/home/.themes/CBlack/metacity-1/unstick-icon.svg diff --git a/profile/airootfs/root/content/home/.themes/CBlack/metadata.json b/src/profile/airootfs/root/content/home/.themes/CBlack/metadata.json similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/metadata.json rename to src/profile/airootfs/root/content/home/.themes/CBlack/metadata.json diff --git a/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/bottom-active.xpm b/src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/bottom-active.xpm similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/xfwm4/bottom-active.xpm rename to src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/bottom-active.xpm diff --git a/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/bottom-inactive.xpm b/src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/bottom-inactive.xpm similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/xfwm4/bottom-inactive.xpm rename to src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/bottom-inactive.xpm diff --git a/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/bottom-left-active.xpm b/src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/bottom-left-active.xpm similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/xfwm4/bottom-left-active.xpm rename to src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/bottom-left-active.xpm diff --git a/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/bottom-left-inactive.xpm b/src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/bottom-left-inactive.xpm similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/xfwm4/bottom-left-inactive.xpm rename to src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/bottom-left-inactive.xpm diff --git a/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/bottom-right-active.xpm b/src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/bottom-right-active.xpm similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/xfwm4/bottom-right-active.xpm rename to src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/bottom-right-active.xpm diff --git a/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/bottom-right-inactive.xpm b/src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/bottom-right-inactive.xpm similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/xfwm4/bottom-right-inactive.xpm rename to src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/bottom-right-inactive.xpm diff --git a/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/close-active.xpm b/src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/close-active.xpm similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/xfwm4/close-active.xpm rename to src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/close-active.xpm diff --git a/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/close-inactive.xpm b/src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/close-inactive.xpm similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/xfwm4/close-inactive.xpm rename to src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/close-inactive.xpm diff --git a/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/close-prelight.xpm b/src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/close-prelight.xpm similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/xfwm4/close-prelight.xpm rename to src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/close-prelight.xpm diff --git a/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/close-pressed.xpm b/src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/close-pressed.xpm similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/xfwm4/close-pressed.xpm rename to src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/close-pressed.xpm diff --git a/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/hide-active.xpm b/src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/hide-active.xpm similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/xfwm4/hide-active.xpm rename to src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/hide-active.xpm diff --git a/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/hide-inactive.xpm b/src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/hide-inactive.xpm similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/xfwm4/hide-inactive.xpm rename to src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/hide-inactive.xpm diff --git a/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/hide-prelight.xpm b/src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/hide-prelight.xpm similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/xfwm4/hide-prelight.xpm rename to src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/hide-prelight.xpm diff --git a/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/hide-pressed.xpm b/src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/hide-pressed.xpm similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/xfwm4/hide-pressed.xpm rename to src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/hide-pressed.xpm diff --git a/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/left-active.xpm b/src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/left-active.xpm similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/xfwm4/left-active.xpm rename to src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/left-active.xpm diff --git a/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/left-inactive.xpm b/src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/left-inactive.xpm similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/xfwm4/left-inactive.xpm rename to src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/left-inactive.xpm diff --git a/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/maximize-active.xpm b/src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/maximize-active.xpm similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/xfwm4/maximize-active.xpm rename to src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/maximize-active.xpm diff --git a/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/maximize-inactive.xpm b/src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/maximize-inactive.xpm similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/xfwm4/maximize-inactive.xpm rename to src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/maximize-inactive.xpm diff --git a/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/maximize-prelight.xpm b/src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/maximize-prelight.xpm similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/xfwm4/maximize-prelight.xpm rename to src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/maximize-prelight.xpm diff --git a/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/maximize-pressed.xpm b/src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/maximize-pressed.xpm similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/xfwm4/maximize-pressed.xpm rename to src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/maximize-pressed.xpm diff --git a/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/menu-active.xpm b/src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/menu-active.xpm similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/xfwm4/menu-active.xpm rename to src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/menu-active.xpm diff --git a/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/menu-inactive.xpm b/src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/menu-inactive.xpm similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/xfwm4/menu-inactive.xpm rename to src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/menu-inactive.xpm diff --git a/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/menu-prelight.xpm b/src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/menu-prelight.xpm similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/xfwm4/menu-prelight.xpm rename to src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/menu-prelight.xpm diff --git a/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/menu-pressed.xpm b/src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/menu-pressed.xpm similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/xfwm4/menu-pressed.xpm rename to src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/menu-pressed.xpm diff --git a/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/right-active.xpm b/src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/right-active.xpm similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/xfwm4/right-active.xpm rename to src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/right-active.xpm diff --git a/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/right-inactive.xpm b/src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/right-inactive.xpm similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/xfwm4/right-inactive.xpm rename to src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/right-inactive.xpm diff --git a/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/shade-active.xpm b/src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/shade-active.xpm similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/xfwm4/shade-active.xpm rename to src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/shade-active.xpm diff --git a/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/shade-inactive.xpm b/src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/shade-inactive.xpm similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/xfwm4/shade-inactive.xpm rename to src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/shade-inactive.xpm diff --git a/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/shade-prelight.xpm b/src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/shade-prelight.xpm similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/xfwm4/shade-prelight.xpm rename to src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/shade-prelight.xpm diff --git a/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/shade-pressed.xpm b/src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/shade-pressed.xpm similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/xfwm4/shade-pressed.xpm rename to src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/shade-pressed.xpm diff --git a/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/shade-toggled-active.xpm b/src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/shade-toggled-active.xpm similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/xfwm4/shade-toggled-active.xpm rename to src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/shade-toggled-active.xpm diff --git a/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/shade-toggled-inactive.xpm b/src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/shade-toggled-inactive.xpm similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/xfwm4/shade-toggled-inactive.xpm rename to src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/shade-toggled-inactive.xpm diff --git a/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/shade-toggled-prelight.xpm b/src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/shade-toggled-prelight.xpm similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/xfwm4/shade-toggled-prelight.xpm rename to src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/shade-toggled-prelight.xpm diff --git a/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/shade-toggled-pressed.xpm b/src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/shade-toggled-pressed.xpm similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/xfwm4/shade-toggled-pressed.xpm rename to src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/shade-toggled-pressed.xpm diff --git a/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/stick-active.xpm b/src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/stick-active.xpm similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/xfwm4/stick-active.xpm rename to src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/stick-active.xpm diff --git a/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/stick-inactive.xpm b/src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/stick-inactive.xpm similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/xfwm4/stick-inactive.xpm rename to src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/stick-inactive.xpm diff --git a/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/stick-prelight.xpm b/src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/stick-prelight.xpm similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/xfwm4/stick-prelight.xpm rename to src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/stick-prelight.xpm diff --git a/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/stick-pressed.xpm b/src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/stick-pressed.xpm similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/xfwm4/stick-pressed.xpm rename to src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/stick-pressed.xpm diff --git a/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/stick-toggled-active.xpm b/src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/stick-toggled-active.xpm similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/xfwm4/stick-toggled-active.xpm rename to src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/stick-toggled-active.xpm diff --git a/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/stick-toggled-inactive.xpm b/src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/stick-toggled-inactive.xpm similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/xfwm4/stick-toggled-inactive.xpm rename to src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/stick-toggled-inactive.xpm diff --git a/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/stick-toggled-prelight.xpm b/src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/stick-toggled-prelight.xpm similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/xfwm4/stick-toggled-prelight.xpm rename to src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/stick-toggled-prelight.xpm diff --git a/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/stick-toggled-pressed.xpm b/src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/stick-toggled-pressed.xpm similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/xfwm4/stick-toggled-pressed.xpm rename to src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/stick-toggled-pressed.xpm diff --git a/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/themerc b/src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/themerc similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/xfwm4/themerc rename to src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/themerc diff --git a/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/title-1-active.xpm b/src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/title-1-active.xpm similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/xfwm4/title-1-active.xpm rename to src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/title-1-active.xpm diff --git a/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/title-1-inactive.xpm b/src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/title-1-inactive.xpm similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/xfwm4/title-1-inactive.xpm rename to src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/title-1-inactive.xpm diff --git a/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/title-2-active.xpm b/src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/title-2-active.xpm similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/xfwm4/title-2-active.xpm rename to src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/title-2-active.xpm diff --git a/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/title-2-inactive.xpm b/src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/title-2-inactive.xpm similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/xfwm4/title-2-inactive.xpm rename to src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/title-2-inactive.xpm diff --git a/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/title-3-active.xpm b/src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/title-3-active.xpm similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/xfwm4/title-3-active.xpm rename to src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/title-3-active.xpm diff --git a/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/title-3-inactive.xpm b/src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/title-3-inactive.xpm similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/xfwm4/title-3-inactive.xpm rename to src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/title-3-inactive.xpm diff --git a/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/title-4-active.xpm b/src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/title-4-active.xpm similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/xfwm4/title-4-active.xpm rename to src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/title-4-active.xpm diff --git a/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/title-4-inactive.xpm b/src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/title-4-inactive.xpm similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/xfwm4/title-4-inactive.xpm rename to src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/title-4-inactive.xpm diff --git a/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/title-5-active.xpm b/src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/title-5-active.xpm similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/xfwm4/title-5-active.xpm rename to src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/title-5-active.xpm diff --git a/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/title-5-inactive.xpm b/src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/title-5-inactive.xpm similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/xfwm4/title-5-inactive.xpm rename to src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/title-5-inactive.xpm diff --git a/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/top-left-active.xpm b/src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/top-left-active.xpm similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/xfwm4/top-left-active.xpm rename to src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/top-left-active.xpm diff --git a/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/top-left-inactive.xpm b/src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/top-left-inactive.xpm similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/xfwm4/top-left-inactive.xpm rename to src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/top-left-inactive.xpm diff --git a/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/top-right-active.xpm b/src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/top-right-active.xpm similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/xfwm4/top-right-active.xpm rename to src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/top-right-active.xpm diff --git a/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/top-right-inactive.xpm b/src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/top-right-inactive.xpm similarity index 100% rename from profile/airootfs/root/content/home/.themes/CBlack/xfwm4/top-right-inactive.xpm rename to src/profile/airootfs/root/content/home/.themes/CBlack/xfwm4/top-right-inactive.xpm diff --git a/profile/airootfs/root/content/home/.zshrc b/src/profile/airootfs/root/content/home/.zshrc similarity index 100% rename from profile/airootfs/root/content/home/.zshrc rename to src/profile/airootfs/root/content/home/.zshrc diff --git a/profile/airootfs/root/content/home/Pictures/dark-geometry.png b/src/profile/airootfs/root/content/home/Pictures/dark-geometry.png similarity index 100% rename from profile/airootfs/root/content/home/Pictures/dark-geometry.png rename to src/profile/airootfs/root/content/home/Pictures/dark-geometry.png diff --git a/profile/airootfs/root/content/lightdm.conf b/src/profile/airootfs/root/content/lightdm.conf similarity index 100% rename from profile/airootfs/root/content/lightdm.conf rename to src/profile/airootfs/root/content/lightdm.conf diff --git a/profile/airootfs/root/content/loader.conf b/src/profile/airootfs/root/content/loader.conf similarity index 100% rename from profile/airootfs/root/content/loader.conf rename to src/profile/airootfs/root/content/loader.conf diff --git a/profile/airootfs/root/content/pacman.conf b/src/profile/airootfs/root/content/pacman.conf similarity index 100% rename from profile/airootfs/root/content/pacman.conf rename to src/profile/airootfs/root/content/pacman.conf diff --git a/profile/airootfs/root/content/paru.conf b/src/profile/airootfs/root/content/paru.conf similarity index 100% rename from profile/airootfs/root/content/paru.conf rename to src/profile/airootfs/root/content/paru.conf diff --git a/profile/airootfs/root/content/sudoers b/src/profile/airootfs/root/content/sudoers similarity index 100% rename from profile/airootfs/root/content/sudoers rename to src/profile/airootfs/root/content/sudoers diff --git a/profile/airootfs/root/content/wired.network b/src/profile/airootfs/root/content/wired.network similarity index 100% rename from profile/airootfs/root/content/wired.network rename to src/profile/airootfs/root/content/wired.network diff --git a/profile/airootfs/root/post_install.sh b/src/profile/airootfs/root/post_install.sh similarity index 100% rename from profile/airootfs/root/post_install.sh rename to src/profile/airootfs/root/post_install.sh diff --git a/profile/airootfs/root/user_configuration.json b/src/profile/airootfs/root/user_configuration.json similarity index 100% rename from profile/airootfs/root/user_configuration.json rename to src/profile/airootfs/root/user_configuration.json diff --git a/profile/airootfs/root/user_credentials.json b/src/profile/airootfs/root/user_credentials.json similarity index 100% rename from profile/airootfs/root/user_credentials.json rename to src/profile/airootfs/root/user_credentials.json diff --git a/profile/airootfs/usr/local/bin/Installation_guide b/src/profile/airootfs/usr/local/bin/Installation_guide similarity index 100% rename from profile/airootfs/usr/local/bin/Installation_guide rename to src/profile/airootfs/usr/local/bin/Installation_guide diff --git a/profile/airootfs/usr/local/bin/choose-mirror b/src/profile/airootfs/usr/local/bin/choose-mirror similarity index 100% rename from profile/airootfs/usr/local/bin/choose-mirror rename to src/profile/airootfs/usr/local/bin/choose-mirror diff --git a/profile/airootfs/usr/local/bin/livecd-sound b/src/profile/airootfs/usr/local/bin/livecd-sound similarity index 100% rename from profile/airootfs/usr/local/bin/livecd-sound rename to src/profile/airootfs/usr/local/bin/livecd-sound diff --git a/profile/airootfs/usr/local/share/livecd-sound/asound.conf.in b/src/profile/airootfs/usr/local/share/livecd-sound/asound.conf.in similarity index 100% rename from profile/airootfs/usr/local/share/livecd-sound/asound.conf.in rename to src/profile/airootfs/usr/local/share/livecd-sound/asound.conf.in diff --git a/profile/bootstrap_packages.x86_64 b/src/profile/bootstrap_packages.x86_64 similarity index 100% rename from profile/bootstrap_packages.x86_64 rename to src/profile/bootstrap_packages.x86_64 diff --git a/profile/efiboot/loader/entries/01-archiso-x86_64-linux.conf b/src/profile/efiboot/loader/entries/01-archiso-x86_64-linux.conf similarity index 100% rename from profile/efiboot/loader/entries/01-archiso-x86_64-linux.conf rename to src/profile/efiboot/loader/entries/01-archiso-x86_64-linux.conf diff --git a/profile/efiboot/loader/entries/02-archiso-x86_64-speech-linux.conf b/src/profile/efiboot/loader/entries/02-archiso-x86_64-speech-linux.conf similarity index 100% rename from profile/efiboot/loader/entries/02-archiso-x86_64-speech-linux.conf rename to src/profile/efiboot/loader/entries/02-archiso-x86_64-speech-linux.conf diff --git a/profile/efiboot/loader/loader.conf b/src/profile/efiboot/loader/loader.conf similarity index 100% rename from profile/efiboot/loader/loader.conf rename to src/profile/efiboot/loader/loader.conf diff --git a/profile/grub/grub.cfg b/src/profile/grub/grub.cfg similarity index 100% rename from profile/grub/grub.cfg rename to src/profile/grub/grub.cfg diff --git a/profile/grub/loopback.cfg b/src/profile/grub/loopback.cfg similarity index 100% rename from profile/grub/loopback.cfg rename to src/profile/grub/loopback.cfg diff --git a/profile/packages.x86_64 b/src/profile/packages.x86_64 similarity index 100% rename from profile/packages.x86_64 rename to src/profile/packages.x86_64 diff --git a/profile/pacman.conf b/src/profile/pacman.conf similarity index 100% rename from profile/pacman.conf rename to src/profile/pacman.conf diff --git a/profile/profiledef.sh b/src/profile/profiledef.sh similarity index 100% rename from profile/profiledef.sh rename to src/profile/profiledef.sh diff --git a/profile/syslinux/archiso_head.cfg b/src/profile/syslinux/archiso_head.cfg similarity index 100% rename from profile/syslinux/archiso_head.cfg rename to src/profile/syslinux/archiso_head.cfg diff --git a/profile/syslinux/archiso_pxe-linux.cfg b/src/profile/syslinux/archiso_pxe-linux.cfg similarity index 100% rename from profile/syslinux/archiso_pxe-linux.cfg rename to src/profile/syslinux/archiso_pxe-linux.cfg diff --git a/profile/syslinux/archiso_pxe.cfg b/src/profile/syslinux/archiso_pxe.cfg similarity index 100% rename from profile/syslinux/archiso_pxe.cfg rename to src/profile/syslinux/archiso_pxe.cfg diff --git a/profile/syslinux/archiso_sys-linux.cfg b/src/profile/syslinux/archiso_sys-linux.cfg similarity index 100% rename from profile/syslinux/archiso_sys-linux.cfg rename to src/profile/syslinux/archiso_sys-linux.cfg diff --git a/profile/syslinux/archiso_sys.cfg b/src/profile/syslinux/archiso_sys.cfg similarity index 100% rename from profile/syslinux/archiso_sys.cfg rename to src/profile/syslinux/archiso_sys.cfg diff --git a/profile/syslinux/archiso_tail.cfg b/src/profile/syslinux/archiso_tail.cfg similarity index 100% rename from profile/syslinux/archiso_tail.cfg rename to src/profile/syslinux/archiso_tail.cfg diff --git a/profile/syslinux/splash.png b/src/profile/syslinux/splash.png similarity index 100% rename from profile/syslinux/splash.png rename to src/profile/syslinux/splash.png diff --git a/profile/syslinux/syslinux.cfg b/src/profile/syslinux/syslinux.cfg similarity index 100% rename from profile/syslinux/syslinux.cfg rename to src/profile/syslinux/syslinux.cfg