diff --git a/arch-iso-builder.sh b/arch-iso-builder.sh index 6196798c..8812c662 100755 --- a/arch-iso-builder.sh +++ b/arch-iso-builder.sh @@ -1,67 +1,166 @@ #!/bin/bash - # Exit on error set -e - ################################################################################################################## -# Custom Arch ISO Builder Script +# Custom Arch ISO Builder Script (Linux Version) ################################################################################################################## # Get absolute path of script directory SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" -# Check if running on btrfs -if lsblk -f | grep btrfs > /dev/null 2>&1; then - echo "Warning: Building on BTRFS filesystem. Make backups before continuing." - read -p "Press Enter to continue... CTRL + C to stop" -fi - # Setting general parameters buildFolder="$SCRIPT_DIR/build" outFolder="$SCRIPT_DIR/out" +dockerImageName="arch-iso-builder-gnome" +dockerContainerName="arch-iso-builder-gnome-container" + +# Get current user ID and group ID +HOST_UID=$(id -u) +HOST_GID=$(id -g) + +# Check if Docker is installed +if ! command -v docker &> /dev/null; then + echo "Docker is not installed. Installing Docker..." + sudo pacman -S --noconfirm docker + + # Start and enable Docker service + echo "Starting Docker service..." + sudo systemctl start docker + sudo systemctl enable docker + + # Add current user to docker group to avoid using sudo + echo "Adding current user to docker group..." + sudo usermod -aG docker $(whoami) + + echo "Docker installation completed. You may need to log out and back in for group changes to take effect." + echo "Continuing with Docker as root for now..." +fi + +# Check if Docker daemon is running +if ! docker info &> /dev/null; then + echo "Docker daemon is not running. Starting Docker service..." + sudo systemctl start docker + + # Wait for Docker daemon to start (with timeout) + echo "Waiting for Docker daemon to start..." + max_attempts=10 + attempt=1 + while ! docker info &> /dev/null; do + if [ $attempt -gt $max_attempts ]; then + echo "Error: Docker daemon failed to start after $max_attempts attempts." + echo "Please try starting it manually with: sudo systemctl start docker" + exit 1 + fi + echo "Attempt $attempt/$max_attempts: Docker daemon not ready yet. Waiting 2 seconds..." + sleep 2 + attempt=$((attempt+1)) + done + echo "Docker daemon is now running." +fi echo "################################################################" echo "Build folder: $buildFolder" echo "Out folder : $outFolder" echo "################################################################" +echo "Building in Docker - using all CPU cores" +echo "################################################################" -# Check if archiso is installed -if ! pacman -Qi archiso &> /dev/null; then - echo "Installing archiso..." - sudo pacman -S --noconfirm archiso +# Create Docker image if it doesn't exist +if ! docker image inspect "$dockerImageName" &>/dev/null; then + echo "Creating Docker image: $dockerImageName..." + # Create temporary Dockerfile + cat > "$SCRIPT_DIR/Dockerfile" << EOF +FROM archlinux:latest + +# Update system and install required packages +RUN pacman -Syu --noconfirm && \ + pacman -S --noconfirm archiso base-devel git sudo + +# Create a build user with same UID as host user +RUN useradd -m -G wheel -u $HOST_UID builder && \ + echo '%wheel ALL=(ALL) NOPASSWD: ALL' >> /etc/sudoers + +# Set up working directory +WORKDIR /build + +# Keep container running for reuse +CMD ["/bin/bash"] +EOF + + # Build Docker image + docker build -t "$dockerImageName" -f "$SCRIPT_DIR/Dockerfile" "$SCRIPT_DIR" + + # Remove temporary Dockerfile + rm "$SCRIPT_DIR/Dockerfile" fi -# Make mkarchiso verbose -sudo sed -i 's/quiet="y"/quiet="n"/g' /usr/bin/mkarchiso +# Check if container exists +if docker container inspect "$dockerContainerName" &>/dev/null; then + # Container exists, check if it's running + if [ "$(docker container inspect -f '{{.State.Running}}' "$dockerContainerName")" != "true" ]; then + echo "Starting existing Docker container: $dockerContainerName..." + docker start "$dockerContainerName" + else + echo "Using existing running Docker container: $dockerContainerName..." + fi +else + # Container doesn't exist, create and start it + echo "Creating and starting Docker container: $dockerContainerName..." + docker run -d \ + --name "$dockerContainerName" \ + --privileged \ + --cpus="$(nproc)" \ + -v "$SCRIPT_DIR:/build" \ + "$dockerImageName" \ + tail -f /dev/null +fi -echo "Cleaning build environment..." -[ -d "$buildFolder" ] && sudo rm -rf "$buildFolder" -mkdir -p "$buildFolder" +# Create required directories +mkdir -p "$buildFolder" "$outFolder" -echo "Copying releng folder to build directory..." -cp -r "$SCRIPT_DIR/releng" "$buildFolder/" - -#echo "Cleaning pacman cache..." -#yes | sudo pacman -Scc - -echo "Creating output directory..." -mkdir -p "$outFolder" - -echo "Building ISO..." -cd "$buildFolder/releng" -sudo mkarchiso -v -w "$buildFolder" -o "$outFolder" "$PWD" - -# Save package list -echo "Saving package list..." -rename=$(date +%Y-%m-%d) -cp "$buildFolder/iso/arch/pkglist.x86_64.txt" "$outFolder/archlinux-$rename-pkglist.txt" - -echo "Cleaning build environment..." -[ -d "$buildFolder" ] && sudo rm -rf "$buildFolder" - -sudo chown -R $USER:$GROUP "$outFolder" +# Run the build process inside Docker +echo "Building ISO in Docker container..." +docker exec -it "$dockerContainerName" bash -c " + cd /build && \ + # Make mkarchiso verbose + sudo sed -i 's/quiet=\"y\"/quiet=\"n\"/g' /usr/bin/mkarchiso && \ + # Clean build environment + [ -d \"/build/build\" ] && sudo rm -rf \"/build/build\" && \ + mkdir -p \"/build/build\" && \ + # Copy releng folder + cp -r \"/build/releng\" \"/build/build/\" && \ + # Copy pkgs folder (if it exists), then generate repo db + if [ -d \"/build/pkgs\" ]; then + cp -r \"/build/pkgs\" \"/build/build/\" && \ + echo \"Copied pkgs folder to build directory\" && \ + if ls /build/build/pkgs/*.pkg.tar.* 1>/dev/null 2>&1; then + echo \"Generating local repository database (repo-add custom.db.tar.gz) ...\" && \ + sudo repo-add /build/build/pkgs/custom.db.tar.gz /build/build/pkgs/*.pkg.tar.* && \ + echo \"Local repo database created.\" + else + echo \"No .pkg.tar.* files found in pkgs. Skipping repo-add.\" + fi + else + echo \"Warning: pkgs folder not found in \$SCRIPT_DIR\" + fi && \ + # Create output directory + mkdir -p \"/build/out\" && \ + # Build ISO + cd \"/build/build/releng\" && \ + sudo mkarchiso -v -w \"/build/build\" -o \"/build/out\" \"\$PWD\" && \ + # Save package list + rename=\$(date +%Y-%m-%d) && \ + if [ -f \"/build/build/iso/arch/pkglist.x86_64.txt\" ]; then + sudo cp \"/build/build/iso/arch/pkglist.x86_64.txt\" \"/build/out/archlinux-\$rename-pkglist.txt\" + fi && \ + # Clean build environment + sudo rm -rf \"/build/build\" && \ + # Fix permissions on out folder + sudo chown -R $HOST_UID:$HOST_GID \"/build/out\" +" echo "################################################################" echo "DONE" echo "Check your out folder: $outFolder" echo "################################################################" + diff --git a/pkgs/custom.db b/pkgs/custom.db deleted file mode 120000 index 2ca137e7..00000000 --- a/pkgs/custom.db +++ /dev/null @@ -1 +0,0 @@ -custom.db.tar.gz \ No newline at end of file diff --git a/pkgs/custom.db.tar.gz b/pkgs/custom.db.tar.gz deleted file mode 100644 index b9920946..00000000 Binary files a/pkgs/custom.db.tar.gz and /dev/null differ diff --git a/pkgs/custom.files b/pkgs/custom.files deleted file mode 120000 index 3ac51f6d..00000000 --- a/pkgs/custom.files +++ /dev/null @@ -1 +0,0 @@ -custom.files.tar.gz \ No newline at end of file diff --git a/pkgs/custom.files.tar.gz b/pkgs/custom.files.tar.gz deleted file mode 100644 index 5a62d0a4..00000000 Binary files a/pkgs/custom.files.tar.gz and /dev/null differ diff --git a/pkgs/yaru-gnome-shell-theme-24.10.4-1-any.pkg.tar.zst b/pkgs/yaru-gnome-shell-theme-24.10.4-1-any.pkg.tar.zst deleted file mode 100644 index 88b49c9a..00000000 Binary files a/pkgs/yaru-gnome-shell-theme-24.10.4-1-any.pkg.tar.zst and /dev/null differ diff --git a/pkgs/yaru-gnome-shell-theme-25.04.1-1-any.pkg.tar.zst b/pkgs/yaru-gnome-shell-theme-25.04.1-1-any.pkg.tar.zst new file mode 100644 index 00000000..351ef297 Binary files /dev/null and b/pkgs/yaru-gnome-shell-theme-25.04.1-1-any.pkg.tar.zst differ diff --git a/pkgs/yaru-gtk-theme-24.10.4-1-any.pkg.tar.zst b/pkgs/yaru-gtk-theme-24.10.4-1-any.pkg.tar.zst deleted file mode 100644 index 445f0876..00000000 Binary files a/pkgs/yaru-gtk-theme-24.10.4-1-any.pkg.tar.zst and /dev/null differ diff --git a/pkgs/yaru-gtk-theme-25.04.1-1-any.pkg.tar.zst b/pkgs/yaru-gtk-theme-25.04.1-1-any.pkg.tar.zst new file mode 100644 index 00000000..740c4962 Binary files /dev/null and b/pkgs/yaru-gtk-theme-25.04.1-1-any.pkg.tar.zst differ diff --git a/pkgs/yaru-gtksourceview-theme-24.10.4-1-any.pkg.tar.zst b/pkgs/yaru-gtksourceview-theme-24.10.4-1-any.pkg.tar.zst deleted file mode 100644 index 668a08ef..00000000 Binary files a/pkgs/yaru-gtksourceview-theme-24.10.4-1-any.pkg.tar.zst and /dev/null differ diff --git a/pkgs/yaru-gtksourceview-theme-25.04.1-1-any.pkg.tar.zst b/pkgs/yaru-gtksourceview-theme-25.04.1-1-any.pkg.tar.zst new file mode 100644 index 00000000..de1ff242 Binary files /dev/null and b/pkgs/yaru-gtksourceview-theme-25.04.1-1-any.pkg.tar.zst differ diff --git a/pkgs/yaru-icon-theme-24.10.4-1-any.pkg.tar.zst b/pkgs/yaru-icon-theme-25.04.1-1-any.pkg.tar.zst similarity index 82% rename from pkgs/yaru-icon-theme-24.10.4-1-any.pkg.tar.zst rename to pkgs/yaru-icon-theme-25.04.1-1-any.pkg.tar.zst index 0180dbd5..7f3b0a95 100644 Binary files a/pkgs/yaru-icon-theme-24.10.4-1-any.pkg.tar.zst and b/pkgs/yaru-icon-theme-25.04.1-1-any.pkg.tar.zst differ diff --git a/pkgs/yaru-session-24.10.4-1-any.pkg.tar.zst b/pkgs/yaru-session-24.10.4-1-any.pkg.tar.zst deleted file mode 100644 index a0e6f918..00000000 Binary files a/pkgs/yaru-session-24.10.4-1-any.pkg.tar.zst and /dev/null differ diff --git a/pkgs/yaru-session-25.04.1-1-any.pkg.tar.zst b/pkgs/yaru-session-25.04.1-1-any.pkg.tar.zst new file mode 100644 index 00000000..01ee463f Binary files /dev/null and b/pkgs/yaru-session-25.04.1-1-any.pkg.tar.zst differ diff --git a/pkgs/yaru-sound-theme-24.10.4-1-any.pkg.tar.zst b/pkgs/yaru-sound-theme-25.04.1-1-any.pkg.tar.zst similarity index 87% rename from pkgs/yaru-sound-theme-24.10.4-1-any.pkg.tar.zst rename to pkgs/yaru-sound-theme-25.04.1-1-any.pkg.tar.zst index 0a27acf5..8b2314d3 100644 Binary files a/pkgs/yaru-sound-theme-24.10.4-1-any.pkg.tar.zst and b/pkgs/yaru-sound-theme-25.04.1-1-any.pkg.tar.zst differ diff --git a/releng/airootfs/etc/dconf/db/local.d/01-yaru b/releng/airootfs/etc/dconf/db/local.d/01-yaru index a15111f0..e97af411 100644 --- a/releng/airootfs/etc/dconf/db/local.d/01-yaru +++ b/releng/airootfs/etc/dconf/db/local.d/01-yaru @@ -243,6 +243,8 @@ running-indicator-dominant-color=true running-indicator-style='DOTS' shift-click-action='minimize' shift-middle-click-action='launch' +show-icons-emblems=false +show-icons-notifications-counter=false show-mounts=false show-show-apps-button=true show-trash=false diff --git a/releng/airootfs/etc/mkinitcpio.d/linux.preset b/releng/airootfs/etc/mkinitcpio.d/linux.preset new file mode 100644 index 00000000..8e852051 --- /dev/null +++ b/releng/airootfs/etc/mkinitcpio.d/linux.preset @@ -0,0 +1,8 @@ +# mkinitcpio preset file for the 'linux' package on archiso + +PRESETS=('archiso') + +ALL_kver='/boot/vmlinuz-linux' +archiso_config='/etc/mkinitcpio.conf.d/archiso.conf' + +archiso_image="/boot/initramfs-linux.img" diff --git a/releng/airootfs/etc/motd b/releng/airootfs/etc/motd new file mode 100644 index 00000000..4d9eda1e --- /dev/null +++ b/releng/airootfs/etc/motd @@ -0,0 +1,11 @@ +To install Arch Linux follow the installation guide: +https://wiki.archlinux.org/title/Installation_guide + +For Wi-Fi, authenticate to the wireless network using the iwctl utility. +For mobile broadband (WWAN) modems, connect with the mmcli utility. +Ethernet, WLAN and WWAN interfaces using DHCP should work automatically. + +After connecting to the internet, the installation guide can be accessed +via the convenience script Installation_guide. + +                                           diff --git a/releng/airootfs/etc/sddm.conf b/releng/airootfs/etc/sddm.conf new file mode 100644 index 00000000..bb6424f8 --- /dev/null +++ b/releng/airootfs/etc/sddm.conf @@ -0,0 +1,38 @@ +[General] +InputMethod= +Namespaces= +Numlock=on + +[Theme] +DisableAvatarsThreshold=7 +EnableAvatars=true +FacesDir=/usr/share/sddm/faces +ThemeDir=/usr/share/sddm/themes + +[Users] +DefaultPath=/usr/local/sbin:/usr/local/bin:/usr/bin +HideShells= +HideUsers= +RememberLastSession=true +RememberLastUser=true +ReuseSession=true + +[Wayland] +EnableHiDPI=true +SessionCommand=/usr/share/sddm/scripts/wayland-session +SessionDir=/usr/share/wayland-sessions +SessionLogFile=.local/share/sddm/wayland-session.log + +[X11] +DisplayCommand=/usr/share/sddm/scripts/Xsetup +DisplayStopCommand=/usr/share/sddm/scripts/Xstop +EnableHiDPI=true +MinimumVT=1 +ServerArguments=-nolisten tcp +ServerPath=/usr/bin/X +SessionCommand=/usr/share/sddm/scripts/Xsession +SessionDir=/usr/share/xsessions +SessionLogFile=.local/share/sddm/xorg-session.log +UserAuthFile=.Xauthority +XauthPath=/usr/bin/xauth +XephyrPath=/usr/bin/Xephyr diff --git a/releng/airootfs/etc/sddm.conf.d/kde_settings.conf b/releng/airootfs/etc/sddm.conf.d/kde_settings.conf new file mode 100644 index 00000000..389d86a5 --- /dev/null +++ b/releng/airootfs/etc/sddm.conf.d/kde_settings.conf @@ -0,0 +1,17 @@ +[Autologin] +Relogin=false +User=liveuser +Session= + +[General] +HaltCommand=/usr/bin/systemctl poweroff +RebootCommand=/usr/bin/systemctl reboot + +[Theme] +Current=raveos-sddm +CursorTheme=Yaru +Font= + +[Users] +MaximumUid=60513 +MinimumUid=1000 diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/actions/edit-select-all.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/actions/edit-select-all.png index 0fe124bc..09b1b041 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/actions/edit-select-all.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/actions/edit-select-all.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/actions/go-first.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/actions/go-first.png index 25bed945..9aaa493b 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/actions/go-first.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/actions/go-first.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/actions/go-last.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/actions/go-last.png index d9c06573..0cf2a1b0 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/actions/go-last.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/actions/go-last.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/actions/mail-reply-all.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/actions/mail-reply-all.png index 208b31e6..d58c84f0 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/actions/mail-reply-all.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/actions/mail-reply-all.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/apps/filemanager-app.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/apps/filemanager-app.png index d7e501ad..59cfafdf 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/apps/filemanager-app.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/apps/filemanager-app.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/apps/org.gnome.Sysprof.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/apps/org.gnome.Sysprof.png new file mode 100644 index 00000000..82c6397b Binary files /dev/null and b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/apps/org.gnome.Sysprof.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/apps/tweaks-app.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/apps/tweaks-app.png index a0f8898c..a71b8d2c 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/apps/tweaks-app.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/apps/tweaks-app.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/emblems/emblem-symbolic-link.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/emblems/emblem-symbolic-link.png index 8088112b..dbfa7a47 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/emblems/emblem-symbolic-link.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/emblems/emblem-symbolic-link.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/places/folder-documents.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/places/folder-documents.png index cb4f657b..07c151fc 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/places/folder-documents.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/places/folder-documents.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/places/folder-download.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/places/folder-download.png index 37e45a55..00321151 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/places/folder-download.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/places/folder-download.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/places/folder-dropbox.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/places/folder-dropbox.png index 79d465e1..9316f500 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/places/folder-dropbox.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/places/folder-dropbox.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/places/folder-music.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/places/folder-music.png index c4503df6..56f42d2b 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/places/folder-music.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/places/folder-music.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/places/folder-pictures.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/places/folder-pictures.png index 6b516584..33bc6075 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/places/folder-pictures.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/places/folder-pictures.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/places/folder-publicshare.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/places/folder-publicshare.png index 9cb5fca8..a9a06f6d 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/places/folder-publicshare.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/places/folder-publicshare.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/places/folder-remote.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/places/folder-remote.png index 56aac373..9fc6c030 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/places/folder-remote.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/places/folder-remote.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/places/folder-templates.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/places/folder-templates.png index eaad15f3..3ff4befc 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/places/folder-templates.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/places/folder-templates.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/places/folder-videos.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/places/folder-videos.png index 55f3b60c..5a363a8f 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/places/folder-videos.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/places/folder-videos.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/places/folder.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/places/folder.png index f3ef0a4d..238a35cf 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/places/folder.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/places/folder.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/places/insync-folder.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/places/insync-folder.png index 0bf93f16..363813bf 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/places/insync-folder.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/places/insync-folder.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/places/preferences-desktop-wallpaper.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/places/preferences-desktop-wallpaper.png index 45b69ec2..3c7f5bcc 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/places/preferences-desktop-wallpaper.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/places/preferences-desktop-wallpaper.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/places/user-desktop.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/places/user-desktop.png index 6c8e59ff..7f41aca5 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/places/user-desktop.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/places/user-desktop.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/places/user-home.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/places/user-home.png index 637fdeed..4f44c461 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/places/user-home.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/places/user-home.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/status/folder-open.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/status/folder-open.png index 8c8cfea5..18a0879f 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/status/folder-open.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16/status/folder-open.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/actions/edit-select-all.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/actions/edit-select-all.png index 7f847fd5..cadd25dd 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/actions/edit-select-all.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/actions/edit-select-all.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/actions/go-first.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/actions/go-first.png index 474aa58a..8b94b731 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/actions/go-first.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/actions/go-first.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/actions/go-last.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/actions/go-last.png index e15f6963..d4331fd9 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/actions/go-last.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/actions/go-last.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/actions/mail-reply-all.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/actions/mail-reply-all.png index df69fd5c..856e2a58 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/actions/mail-reply-all.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/actions/mail-reply-all.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/apps/filemanager-app.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/apps/filemanager-app.png index 873c8ec6..95d4caae 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/apps/filemanager-app.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/apps/filemanager-app.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/apps/org.gnome.Sysprof.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/apps/org.gnome.Sysprof.png new file mode 100644 index 00000000..83ab23ff Binary files /dev/null and b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/apps/org.gnome.Sysprof.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/apps/tweaks-app.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/apps/tweaks-app.png index 6610c9e4..f3306c00 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/apps/tweaks-app.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/apps/tweaks-app.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/emblems/emblem-symbolic-link.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/emblems/emblem-symbolic-link.png index 7393ab65..1551c186 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/emblems/emblem-symbolic-link.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/emblems/emblem-symbolic-link.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/places/folder-documents.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/places/folder-documents.png index 275efeb1..1c29aa0a 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/places/folder-documents.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/places/folder-documents.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/places/folder-download.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/places/folder-download.png index cdac1a88..7ae5f6b9 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/places/folder-download.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/places/folder-download.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/places/folder-dropbox.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/places/folder-dropbox.png index 0063b2c4..46c75bd6 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/places/folder-dropbox.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/places/folder-dropbox.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/places/folder-music.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/places/folder-music.png index f3243646..55461b7d 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/places/folder-music.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/places/folder-music.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/places/folder-pictures.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/places/folder-pictures.png index bc7a28c4..86952045 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/places/folder-pictures.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/places/folder-pictures.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/places/folder-publicshare.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/places/folder-publicshare.png index 190091d9..bb066243 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/places/folder-publicshare.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/places/folder-publicshare.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/places/folder-remote.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/places/folder-remote.png index bf691950..794917bb 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/places/folder-remote.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/places/folder-remote.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/places/folder-templates.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/places/folder-templates.png index 255b5591..d6b94eea 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/places/folder-templates.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/places/folder-templates.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/places/folder-videos.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/places/folder-videos.png index d0409b9a..2fa38507 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/places/folder-videos.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/places/folder-videos.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/places/folder.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/places/folder.png index 0cef0833..1eae83f0 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/places/folder.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/places/folder.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/places/insync-folder.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/places/insync-folder.png index d20eb2d8..efd5fd50 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/places/insync-folder.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/places/insync-folder.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/places/preferences-desktop-wallpaper.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/places/preferences-desktop-wallpaper.png index df8c0994..4a22bbfc 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/places/preferences-desktop-wallpaper.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/places/preferences-desktop-wallpaper.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/places/user-desktop.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/places/user-desktop.png index 0e869f3e..99d50688 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/places/user-desktop.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/places/user-desktop.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/places/user-home.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/places/user-home.png index d99c1eac..e75a8283 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/places/user-home.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/places/user-home.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/status/folder-open.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/status/folder-open.png index 0239fc81..b18b919a 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/status/folder-open.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/16x16@2x/status/folder-open.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/22x22/actions/edit-select-all.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/22x22/actions/edit-select-all.png index 72c3b4db..3f1e3a55 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/22x22/actions/edit-select-all.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/22x22/actions/edit-select-all.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/22x22/actions/folder-new.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/22x22/actions/folder-new.png index f59344bf..fe570709 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/22x22/actions/folder-new.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/22x22/actions/folder-new.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/22x22/actions/go-first.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/22x22/actions/go-first.png index 030c87ba..3e1bd03d 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/22x22/actions/go-first.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/22x22/actions/go-first.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/22x22/actions/go-last.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/22x22/actions/go-last.png index 762cfb6c..2f366a69 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/22x22/actions/go-last.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/22x22/actions/go-last.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/22x22/actions/mail-reply-all.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/22x22/actions/mail-reply-all.png index f02c621b..1af16750 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/22x22/actions/mail-reply-all.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/22x22/actions/mail-reply-all.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/22x22@2x/actions/edit-select-all.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/22x22@2x/actions/edit-select-all.png index 3847a229..41c57f59 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/22x22@2x/actions/edit-select-all.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/22x22@2x/actions/edit-select-all.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/22x22@2x/actions/folder-new.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/22x22@2x/actions/folder-new.png index 76090aad..af73ecf4 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/22x22@2x/actions/folder-new.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/22x22@2x/actions/folder-new.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/22x22@2x/actions/go-first.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/22x22@2x/actions/go-first.png index a6a3fc85..2e7b14d7 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/22x22@2x/actions/go-first.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/22x22@2x/actions/go-first.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/22x22@2x/actions/go-last.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/22x22@2x/actions/go-last.png index 8dbae24d..3dee32bf 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/22x22@2x/actions/go-last.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/22x22@2x/actions/go-last.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/22x22@2x/actions/mail-reply-all.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/22x22@2x/actions/mail-reply-all.png index 04148ccc..9976d333 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/22x22@2x/actions/mail-reply-all.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/22x22@2x/actions/mail-reply-all.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/actions/edit-select-all.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/actions/edit-select-all.png index 5fe294b4..355e7eff 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/actions/edit-select-all.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/actions/edit-select-all.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/actions/folder-new.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/actions/folder-new.png index 86d234c4..cbe72f74 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/actions/folder-new.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/actions/folder-new.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/actions/go-first.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/actions/go-first.png index b0dbae5a..7a103087 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/actions/go-first.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/actions/go-first.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/actions/go-last.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/actions/go-last.png index 6b0a957d..a9779474 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/actions/go-last.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/actions/go-last.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/actions/mail-reply-all.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/actions/mail-reply-all.png index 58fd1aac..7f91508c 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/actions/mail-reply-all.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/actions/mail-reply-all.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/apps/filemanager-app.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/apps/filemanager-app.png index 34d4f541..267dbe7d 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/apps/filemanager-app.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/apps/filemanager-app.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/apps/org.gnome.Sysprof.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/apps/org.gnome.Sysprof.png new file mode 100644 index 00000000..8d9edb9e Binary files /dev/null and b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/apps/org.gnome.Sysprof.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/apps/software-updater.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/apps/software-updater.png index dd67072b..075ff401 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/apps/software-updater.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/apps/software-updater.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/apps/tweaks-app.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/apps/tweaks-app.png index 02a8b7ae..f3a48ee2 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/apps/tweaks-app.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/apps/tweaks-app.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/emblems/emblem-symbolic-link.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/emblems/emblem-symbolic-link.png index 30b2e8bd..e863febe 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/emblems/emblem-symbolic-link.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/emblems/emblem-symbolic-link.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/places/folder-documents.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/places/folder-documents.png index 7cb9805b..2c2bb6de 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/places/folder-documents.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/places/folder-documents.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/places/folder-download.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/places/folder-download.png index 2cb5bb29..a0c3e317 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/places/folder-download.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/places/folder-download.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/places/folder-dropbox.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/places/folder-dropbox.png index 9fca86d4..f43347fe 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/places/folder-dropbox.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/places/folder-dropbox.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/places/folder-music.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/places/folder-music.png index 0af7a0d8..74f57305 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/places/folder-music.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/places/folder-music.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/places/folder-pictures.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/places/folder-pictures.png index 30cfd24c..0e6c8f04 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/places/folder-pictures.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/places/folder-pictures.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/places/folder-publicshare.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/places/folder-publicshare.png index e9361bd7..16fc4a7a 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/places/folder-publicshare.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/places/folder-publicshare.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/places/folder-remote.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/places/folder-remote.png index 837fddce..dedd8b56 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/places/folder-remote.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/places/folder-remote.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/places/folder-templates.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/places/folder-templates.png index a06734bd..5ba3f57e 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/places/folder-templates.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/places/folder-templates.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/places/folder-videos.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/places/folder-videos.png index 1fea9793..2685b573 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/places/folder-videos.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/places/folder-videos.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/places/folder.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/places/folder.png index 52432afc..28d3c4fb 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/places/folder.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/places/folder.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/places/insync-folder.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/places/insync-folder.png index 2cb5b6e7..2c4342b8 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/places/insync-folder.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/places/insync-folder.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/places/preferences-desktop-wallpaper.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/places/preferences-desktop-wallpaper.png index 356378af..e7355278 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/places/preferences-desktop-wallpaper.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/places/preferences-desktop-wallpaper.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/places/user-desktop.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/places/user-desktop.png index 86aa3380..4e659ca3 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/places/user-desktop.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/places/user-desktop.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/places/user-home.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/places/user-home.png index 74d6ca93..1cde1c44 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/places/user-home.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/places/user-home.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/status/folder-open.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/status/folder-open.png index bf211cb9..8f0a5233 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/status/folder-open.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24/status/folder-open.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/actions/edit-select-all.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/actions/edit-select-all.png index a0949521..a0c209b0 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/actions/edit-select-all.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/actions/edit-select-all.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/actions/folder-new.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/actions/folder-new.png index 8b225dae..e2bf1944 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/actions/folder-new.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/actions/folder-new.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/actions/go-first.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/actions/go-first.png index 67103643..14a8b92d 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/actions/go-first.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/actions/go-first.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/actions/go-last.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/actions/go-last.png index 6ce3aa61..1c13a0c3 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/actions/go-last.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/actions/go-last.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/actions/mail-reply-all.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/actions/mail-reply-all.png index 1c97ee43..f049ce95 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/actions/mail-reply-all.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/actions/mail-reply-all.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/apps/filemanager-app.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/apps/filemanager-app.png index baf6160f..72de0d18 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/apps/filemanager-app.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/apps/filemanager-app.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/apps/org.gnome.Sysprof.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/apps/org.gnome.Sysprof.png new file mode 100644 index 00000000..ea79727a Binary files /dev/null and b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/apps/org.gnome.Sysprof.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/apps/software-updater.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/apps/software-updater.png index 3d384386..8ead17c4 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/apps/software-updater.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/apps/software-updater.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/apps/tweaks-app.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/apps/tweaks-app.png index 1053f001..2906a312 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/apps/tweaks-app.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/apps/tweaks-app.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/emblems/emblem-symbolic-link.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/emblems/emblem-symbolic-link.png index c058faa8..20989e39 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/emblems/emblem-symbolic-link.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/emblems/emblem-symbolic-link.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/places/folder-documents.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/places/folder-documents.png index 2de253ff..b405a120 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/places/folder-documents.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/places/folder-documents.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/places/folder-download.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/places/folder-download.png index 2a431fd9..d878d99f 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/places/folder-download.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/places/folder-download.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/places/folder-dropbox.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/places/folder-dropbox.png index 2f99b130..bc8d63ed 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/places/folder-dropbox.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/places/folder-dropbox.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/places/folder-music.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/places/folder-music.png index 42f46908..192553bc 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/places/folder-music.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/places/folder-music.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/places/folder-pictures.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/places/folder-pictures.png index 739c14b2..01ad2252 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/places/folder-pictures.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/places/folder-pictures.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/places/folder-publicshare.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/places/folder-publicshare.png index 84478952..642dba3c 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/places/folder-publicshare.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/places/folder-publicshare.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/places/folder-remote.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/places/folder-remote.png index a508457d..49caf222 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/places/folder-remote.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/places/folder-remote.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/places/folder-templates.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/places/folder-templates.png index 00599489..bcc2c550 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/places/folder-templates.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/places/folder-templates.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/places/folder-videos.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/places/folder-videos.png index 4e3e65df..5062c9ff 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/places/folder-videos.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/places/folder-videos.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/places/folder.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/places/folder.png index 5aae2cab..fd1c51c4 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/places/folder.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/places/folder.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/places/insync-folder.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/places/insync-folder.png index 526403c8..b83a5437 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/places/insync-folder.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/places/insync-folder.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/places/preferences-desktop-wallpaper.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/places/preferences-desktop-wallpaper.png index b1c8d327..88724c69 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/places/preferences-desktop-wallpaper.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/places/preferences-desktop-wallpaper.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/places/user-desktop.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/places/user-desktop.png index 56597538..92a7983c 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/places/user-desktop.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/places/user-desktop.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/places/user-home.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/places/user-home.png index a18d854e..d91aa107 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/places/user-home.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/places/user-home.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/status/folder-open.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/status/folder-open.png index c1a96700..227d9054 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/status/folder-open.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/24x24@2x/status/folder-open.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/actions/edit-select-all.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/actions/edit-select-all.png index 21185bcf..21cd7836 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/actions/edit-select-all.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/actions/edit-select-all.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/actions/folder-new.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/actions/folder-new.png index c285b5b8..c93b7332 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/actions/folder-new.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/actions/folder-new.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/actions/go-first.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/actions/go-first.png index 10b0f2c0..6a8aeda5 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/actions/go-first.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/actions/go-first.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/actions/go-last.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/actions/go-last.png index c7bb2a3a..f504f3c3 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/actions/go-last.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/actions/go-last.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/actions/mail-reply-all.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/actions/mail-reply-all.png index c3ee3fa1..b7256611 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/actions/mail-reply-all.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/actions/mail-reply-all.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/apps/filemanager-app.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/apps/filemanager-app.png index 060e4d74..ed5f28ec 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/apps/filemanager-app.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/apps/filemanager-app.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/apps/org.gnome.Sysprof.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/apps/org.gnome.Sysprof.png new file mode 100644 index 00000000..a40c6bb0 Binary files /dev/null and b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/apps/org.gnome.Sysprof.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/apps/software-updater.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/apps/software-updater.png index 90eb28a7..b8bfbf0f 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/apps/software-updater.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/apps/software-updater.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/apps/tweaks-app.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/apps/tweaks-app.png index e5a2a8d4..6d04f0fb 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/apps/tweaks-app.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/apps/tweaks-app.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/emblems/emblem-symbolic-link.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/emblems/emblem-symbolic-link.png index 82135237..36696014 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/emblems/emblem-symbolic-link.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/emblems/emblem-symbolic-link.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/places/folder-documents.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/places/folder-documents.png index 8feecabb..bc5235c9 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/places/folder-documents.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/places/folder-documents.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/places/folder-download.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/places/folder-download.png index f2ce95bb..a133ac2d 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/places/folder-download.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/places/folder-download.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/places/folder-dropbox.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/places/folder-dropbox.png index 31031e1c..864b8cb7 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/places/folder-dropbox.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/places/folder-dropbox.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/places/folder-music.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/places/folder-music.png index 210d714b..ff7fcf78 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/places/folder-music.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/places/folder-music.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/places/folder-pictures.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/places/folder-pictures.png index 47645290..7f4f828f 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/places/folder-pictures.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/places/folder-pictures.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/places/folder-publicshare.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/places/folder-publicshare.png index 875bfc73..7ddfc91a 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/places/folder-publicshare.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/places/folder-publicshare.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/places/folder-remote.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/places/folder-remote.png index 1e0374e9..b637d828 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/places/folder-remote.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/places/folder-remote.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/places/folder-templates.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/places/folder-templates.png index cf403039..058686b9 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/places/folder-templates.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/places/folder-templates.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/places/folder-videos.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/places/folder-videos.png index ba626815..52ea32d2 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/places/folder-videos.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/places/folder-videos.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/places/folder.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/places/folder.png index 397e96a6..1e1e8162 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/places/folder.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/places/folder.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/places/insync-folder.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/places/insync-folder.png index e1dd4327..00f8bdfa 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/places/insync-folder.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/places/insync-folder.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/places/preferences-desktop-wallpaper.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/places/preferences-desktop-wallpaper.png index 39fc9211..5da37ce8 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/places/preferences-desktop-wallpaper.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/places/preferences-desktop-wallpaper.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/places/user-desktop.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/places/user-desktop.png index a3914b34..6014e34a 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/places/user-desktop.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/places/user-desktop.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/places/user-home.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/places/user-home.png index bbda66da..6d6a501f 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/places/user-home.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/places/user-home.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/status/folder-open.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/status/folder-open.png index 92c4ac8c..f0d5b258 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/status/folder-open.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256/status/folder-open.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/actions/edit-select-all.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/actions/edit-select-all.png index e72e7ffe..fab66205 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/actions/edit-select-all.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/actions/edit-select-all.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/actions/folder-new.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/actions/folder-new.png index a3d8c41d..b8e82bb1 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/actions/folder-new.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/actions/folder-new.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/actions/go-first.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/actions/go-first.png index 30ce5a9f..ead51928 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/actions/go-first.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/actions/go-first.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/actions/go-last.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/actions/go-last.png index db8cdaf5..393b0373 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/actions/go-last.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/actions/go-last.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/actions/mail-reply-all.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/actions/mail-reply-all.png index ae323c64..1a19dc7e 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/actions/mail-reply-all.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/actions/mail-reply-all.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/apps/filemanager-app.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/apps/filemanager-app.png index 4b6f24fa..fae360b5 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/apps/filemanager-app.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/apps/filemanager-app.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/apps/org.gnome.Sysprof.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/apps/org.gnome.Sysprof.png new file mode 100644 index 00000000..af0129e4 Binary files /dev/null and b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/apps/org.gnome.Sysprof.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/apps/software-updater.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/apps/software-updater.png index 4d1c6738..5a5d6ee4 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/apps/software-updater.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/apps/software-updater.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/apps/tweaks-app.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/apps/tweaks-app.png index ad49c564..88d715f1 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/apps/tweaks-app.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/apps/tweaks-app.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/emblems/emblem-symbolic-link.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/emblems/emblem-symbolic-link.png index 43d45d44..761ebab3 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/emblems/emblem-symbolic-link.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/emblems/emblem-symbolic-link.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/places/folder-documents.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/places/folder-documents.png index a1ecc621..f5d280f6 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/places/folder-documents.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/places/folder-documents.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/places/folder-download.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/places/folder-download.png index b8698a31..2d35ebe7 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/places/folder-download.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/places/folder-download.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/places/folder-dropbox.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/places/folder-dropbox.png index 15e9be8c..f8f16c75 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/places/folder-dropbox.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/places/folder-dropbox.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/places/folder-music.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/places/folder-music.png index 40bbac12..2840f95b 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/places/folder-music.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/places/folder-music.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/places/folder-pictures.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/places/folder-pictures.png index 404b4694..b92303db 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/places/folder-pictures.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/places/folder-pictures.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/places/folder-publicshare.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/places/folder-publicshare.png index 486498cc..9890b4e8 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/places/folder-publicshare.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/places/folder-publicshare.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/places/folder-remote.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/places/folder-remote.png index bf11eb5e..72ade60b 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/places/folder-remote.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/places/folder-remote.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/places/folder-templates.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/places/folder-templates.png index e1d7317e..b89c695a 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/places/folder-templates.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/places/folder-templates.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/places/folder-videos.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/places/folder-videos.png index 1e8642d7..1b6d0b24 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/places/folder-videos.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/places/folder-videos.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/places/folder.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/places/folder.png index 5e58381e..146b98db 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/places/folder.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/places/folder.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/places/insync-folder.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/places/insync-folder.png index 48134c2f..27abdce6 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/places/insync-folder.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/places/insync-folder.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/places/preferences-desktop-wallpaper.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/places/preferences-desktop-wallpaper.png index f21db6db..568bd912 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/places/preferences-desktop-wallpaper.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/places/preferences-desktop-wallpaper.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/places/user-desktop.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/places/user-desktop.png index 765203de..1ba15a86 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/places/user-desktop.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/places/user-desktop.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/places/user-home.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/places/user-home.png index 40d8b668..d13211af 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/places/user-home.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/places/user-home.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/status/folder-open.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/status/folder-open.png index a4b13c80..108f74bd 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/status/folder-open.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/256x256@2x/status/folder-open.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/actions/edit-select-all.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/actions/edit-select-all.png index 1ed9ead5..ad33bc94 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/actions/edit-select-all.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/actions/edit-select-all.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/actions/folder-new.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/actions/folder-new.png index 24a19a1d..9bc83283 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/actions/folder-new.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/actions/folder-new.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/actions/go-first.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/actions/go-first.png index 69fef60c..617fa3b8 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/actions/go-first.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/actions/go-first.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/actions/go-last.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/actions/go-last.png index 58de799e..c8f332c5 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/actions/go-last.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/actions/go-last.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/actions/mail-reply-all.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/actions/mail-reply-all.png index e430c1f3..986f6c03 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/actions/mail-reply-all.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/actions/mail-reply-all.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/apps/filemanager-app.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/apps/filemanager-app.png index 5497a4a6..8bb02165 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/apps/filemanager-app.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/apps/filemanager-app.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/apps/org.gnome.Sysprof.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/apps/org.gnome.Sysprof.png new file mode 100644 index 00000000..3b077447 Binary files /dev/null and b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/apps/org.gnome.Sysprof.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/apps/software-updater.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/apps/software-updater.png index bbc99515..6e576a31 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/apps/software-updater.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/apps/software-updater.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/apps/tweaks-app.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/apps/tweaks-app.png index 048f314a..5694eb80 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/apps/tweaks-app.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/apps/tweaks-app.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/emblems/emblem-symbolic-link.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/emblems/emblem-symbolic-link.png index ec6059bf..eff6487b 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/emblems/emblem-symbolic-link.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/emblems/emblem-symbolic-link.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/places/folder-documents.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/places/folder-documents.png index a44590e8..4c418184 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/places/folder-documents.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/places/folder-documents.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/places/folder-download.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/places/folder-download.png index 2f1ca34f..34ddc5b3 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/places/folder-download.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/places/folder-download.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/places/folder-dropbox.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/places/folder-dropbox.png index 7e3e4f92..54707a0f 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/places/folder-dropbox.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/places/folder-dropbox.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/places/folder-music.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/places/folder-music.png index 7a685160..c2ee820d 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/places/folder-music.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/places/folder-music.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/places/folder-pictures.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/places/folder-pictures.png index b45b0afa..1391deaf 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/places/folder-pictures.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/places/folder-pictures.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/places/folder-publicshare.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/places/folder-publicshare.png index d7f4e80d..c7950b41 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/places/folder-publicshare.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/places/folder-publicshare.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/places/folder-remote.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/places/folder-remote.png index 38073bf5..f7d9a99e 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/places/folder-remote.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/places/folder-remote.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/places/folder-templates.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/places/folder-templates.png index f23e234c..9ad252ee 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/places/folder-templates.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/places/folder-templates.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/places/folder-videos.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/places/folder-videos.png index 29bf210b..7a129fa5 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/places/folder-videos.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/places/folder-videos.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/places/folder.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/places/folder.png index 9a44f23d..a4a0cdd0 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/places/folder.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/places/folder.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/places/insync-folder.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/places/insync-folder.png index 40301cc9..b2a34126 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/places/insync-folder.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/places/insync-folder.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/places/preferences-desktop-wallpaper.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/places/preferences-desktop-wallpaper.png index f680cec5..477c5d0e 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/places/preferences-desktop-wallpaper.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/places/preferences-desktop-wallpaper.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/places/user-desktop.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/places/user-desktop.png index e1a29e40..272fc5ae 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/places/user-desktop.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/places/user-desktop.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/places/user-home.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/places/user-home.png index c4768938..99151805 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/places/user-home.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/places/user-home.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/status/folder-open.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/status/folder-open.png index 96ae7f8f..e29adde5 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/status/folder-open.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32/status/folder-open.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/actions/edit-select-all.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/actions/edit-select-all.png index 27b3c033..eacb88d3 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/actions/edit-select-all.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/actions/edit-select-all.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/actions/folder-new.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/actions/folder-new.png index 0f82773f..42fe4496 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/actions/folder-new.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/actions/folder-new.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/actions/go-first.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/actions/go-first.png index 56ff06ca..e68ca060 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/actions/go-first.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/actions/go-first.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/actions/go-last.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/actions/go-last.png index 307dff10..784a6c7d 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/actions/go-last.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/actions/go-last.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/actions/mail-reply-all.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/actions/mail-reply-all.png index 046754c1..38a7c98f 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/actions/mail-reply-all.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/actions/mail-reply-all.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/apps/filemanager-app.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/apps/filemanager-app.png index 7efd5a1f..573e1d5a 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/apps/filemanager-app.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/apps/filemanager-app.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/apps/org.gnome.Sysprof.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/apps/org.gnome.Sysprof.png new file mode 100644 index 00000000..5a83f47b Binary files /dev/null and b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/apps/org.gnome.Sysprof.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/apps/software-updater.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/apps/software-updater.png index d83d262b..40377bf6 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/apps/software-updater.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/apps/software-updater.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/apps/tweaks-app.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/apps/tweaks-app.png index 219de86b..9a0af837 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/apps/tweaks-app.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/apps/tweaks-app.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/emblems/emblem-symbolic-link.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/emblems/emblem-symbolic-link.png index 12c86589..18102a96 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/emblems/emblem-symbolic-link.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/emblems/emblem-symbolic-link.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/places/folder-documents.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/places/folder-documents.png index cbfb118e..ef9bd6ea 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/places/folder-documents.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/places/folder-documents.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/places/folder-download.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/places/folder-download.png index 02a6a497..70301a79 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/places/folder-download.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/places/folder-download.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/places/folder-dropbox.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/places/folder-dropbox.png index a34755a1..208df45f 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/places/folder-dropbox.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/places/folder-dropbox.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/places/folder-music.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/places/folder-music.png index decb9856..28caaf19 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/places/folder-music.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/places/folder-music.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/places/folder-pictures.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/places/folder-pictures.png index 6c996007..7847a839 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/places/folder-pictures.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/places/folder-pictures.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/places/folder-publicshare.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/places/folder-publicshare.png index e7797ce1..0a25cad6 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/places/folder-publicshare.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/places/folder-publicshare.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/places/folder-remote.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/places/folder-remote.png index 37072aac..99cacf5b 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/places/folder-remote.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/places/folder-remote.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/places/folder-templates.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/places/folder-templates.png index fcae54ac..b07fcac6 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/places/folder-templates.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/places/folder-templates.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/places/folder-videos.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/places/folder-videos.png index 2558a9cb..83eabf09 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/places/folder-videos.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/places/folder-videos.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/places/folder.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/places/folder.png index d81a75de..3b2d2257 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/places/folder.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/places/folder.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/places/insync-folder.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/places/insync-folder.png index b2180480..087c68f6 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/places/insync-folder.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/places/insync-folder.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/places/preferences-desktop-wallpaper.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/places/preferences-desktop-wallpaper.png index 31a0b300..44e66a6c 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/places/preferences-desktop-wallpaper.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/places/preferences-desktop-wallpaper.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/places/user-desktop.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/places/user-desktop.png index b32cd63a..d2216ce5 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/places/user-desktop.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/places/user-desktop.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/places/user-home.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/places/user-home.png index b1cc914c..eb7a2a6e 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/places/user-home.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/places/user-home.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/status/folder-open.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/status/folder-open.png index 2b17ff50..02a77e90 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/status/folder-open.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/32x32@2x/status/folder-open.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/actions/edit-select-all.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/actions/edit-select-all.png index 5e47f281..1f2e09fb 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/actions/edit-select-all.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/actions/edit-select-all.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/actions/folder-new.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/actions/folder-new.png index 8477e45a..befea238 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/actions/folder-new.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/actions/folder-new.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/actions/go-first.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/actions/go-first.png index d936fb1c..c1403ced 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/actions/go-first.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/actions/go-first.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/actions/go-last.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/actions/go-last.png index 636f7376..06a97f5d 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/actions/go-last.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/actions/go-last.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/actions/mail-reply-all.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/actions/mail-reply-all.png index 48ca28b1..a039e4fd 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/actions/mail-reply-all.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/actions/mail-reply-all.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/apps/filemanager-app.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/apps/filemanager-app.png index 1b2ba86d..69e3d286 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/apps/filemanager-app.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/apps/filemanager-app.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/apps/org.gnome.Sysprof.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/apps/org.gnome.Sysprof.png new file mode 100644 index 00000000..cbdf6cf1 Binary files /dev/null and b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/apps/org.gnome.Sysprof.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/apps/software-updater.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/apps/software-updater.png index dbeb1f8d..ff945156 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/apps/software-updater.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/apps/software-updater.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/apps/tweaks-app.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/apps/tweaks-app.png index f176db40..fe8fa7b1 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/apps/tweaks-app.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/apps/tweaks-app.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/emblems/emblem-symbolic-link.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/emblems/emblem-symbolic-link.png index 560ca4c3..de3d681c 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/emblems/emblem-symbolic-link.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/emblems/emblem-symbolic-link.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/places/folder-documents.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/places/folder-documents.png index 85271cce..d0ddb460 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/places/folder-documents.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/places/folder-documents.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/places/folder-download.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/places/folder-download.png index 2692147a..62adff37 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/places/folder-download.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/places/folder-download.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/places/folder-dropbox.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/places/folder-dropbox.png index b6ee04ee..49eea6a0 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/places/folder-dropbox.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/places/folder-dropbox.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/places/folder-music.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/places/folder-music.png index 632a5ccc..6266ddb3 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/places/folder-music.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/places/folder-music.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/places/folder-pictures.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/places/folder-pictures.png index 4716062c..6e23bd5d 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/places/folder-pictures.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/places/folder-pictures.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/places/folder-publicshare.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/places/folder-publicshare.png index b81e4255..03259fb1 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/places/folder-publicshare.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/places/folder-publicshare.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/places/folder-remote.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/places/folder-remote.png index b0d8c57e..0531f6de 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/places/folder-remote.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/places/folder-remote.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/places/folder-templates.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/places/folder-templates.png index 6441da86..8b4261d1 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/places/folder-templates.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/places/folder-templates.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/places/folder-videos.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/places/folder-videos.png index 9502e025..a9953e84 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/places/folder-videos.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/places/folder-videos.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/places/folder.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/places/folder.png index ee57c27c..400c0ad8 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/places/folder.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/places/folder.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/places/insync-folder.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/places/insync-folder.png index a59631ec..c3c40e12 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/places/insync-folder.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/places/insync-folder.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/places/preferences-desktop-wallpaper.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/places/preferences-desktop-wallpaper.png index 7c3e979d..d507759c 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/places/preferences-desktop-wallpaper.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/places/preferences-desktop-wallpaper.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/places/user-desktop.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/places/user-desktop.png index fe65262b..3560da16 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/places/user-desktop.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/places/user-desktop.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/places/user-home.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/places/user-home.png index e84481cf..4682ff08 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/places/user-home.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/places/user-home.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/status/folder-open.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/status/folder-open.png index cc3c9f70..92cf4915 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/status/folder-open.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48/status/folder-open.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/actions/edit-select-all.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/actions/edit-select-all.png index 064306ab..95bee514 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/actions/edit-select-all.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/actions/edit-select-all.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/actions/folder-new.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/actions/folder-new.png index 30fc4076..9375f263 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/actions/folder-new.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/actions/folder-new.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/actions/go-first.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/actions/go-first.png index 579c004f..ccf62252 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/actions/go-first.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/actions/go-first.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/actions/go-last.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/actions/go-last.png index 514c710b..13bb416c 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/actions/go-last.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/actions/go-last.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/actions/mail-reply-all.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/actions/mail-reply-all.png index b497b81e..2583a1c6 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/actions/mail-reply-all.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/actions/mail-reply-all.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/apps/filemanager-app.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/apps/filemanager-app.png index 15b85a10..b8dd3feb 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/apps/filemanager-app.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/apps/filemanager-app.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/apps/org.gnome.Sysprof.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/apps/org.gnome.Sysprof.png new file mode 100644 index 00000000..439ad55a Binary files /dev/null and b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/apps/org.gnome.Sysprof.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/apps/software-updater.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/apps/software-updater.png index 12c5eac7..c743aba3 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/apps/software-updater.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/apps/software-updater.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/apps/tweaks-app.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/apps/tweaks-app.png index 6a8733d0..fb33dc27 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/apps/tweaks-app.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/apps/tweaks-app.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/emblems/emblem-symbolic-link.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/emblems/emblem-symbolic-link.png index 667185df..e6ea1835 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/emblems/emblem-symbolic-link.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/emblems/emblem-symbolic-link.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/places/folder-documents.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/places/folder-documents.png index 4bd47cb6..207f0866 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/places/folder-documents.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/places/folder-documents.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/places/folder-download.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/places/folder-download.png index 256deb38..7be104f8 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/places/folder-download.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/places/folder-download.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/places/folder-dropbox.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/places/folder-dropbox.png index 685c0cb3..08ea2de3 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/places/folder-dropbox.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/places/folder-dropbox.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/places/folder-music.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/places/folder-music.png index ba23480a..a43de48c 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/places/folder-music.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/places/folder-music.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/places/folder-pictures.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/places/folder-pictures.png index 82d55e46..7cd30d97 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/places/folder-pictures.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/places/folder-pictures.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/places/folder-publicshare.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/places/folder-publicshare.png index 258439c4..f7a66b01 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/places/folder-publicshare.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/places/folder-publicshare.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/places/folder-remote.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/places/folder-remote.png index 3efe9193..93f33d22 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/places/folder-remote.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/places/folder-remote.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/places/folder-templates.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/places/folder-templates.png index c969a083..55671458 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/places/folder-templates.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/places/folder-templates.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/places/folder-videos.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/places/folder-videos.png index 4757e91b..fb4f8f62 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/places/folder-videos.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/places/folder-videos.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/places/folder.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/places/folder.png index 810a8af1..dbc1690c 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/places/folder.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/places/folder.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/places/insync-folder.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/places/insync-folder.png index b5bb5409..eb109791 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/places/insync-folder.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/places/insync-folder.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/places/preferences-desktop-wallpaper.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/places/preferences-desktop-wallpaper.png index 7a8a8f47..50d20c04 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/places/preferences-desktop-wallpaper.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/places/preferences-desktop-wallpaper.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/places/user-desktop.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/places/user-desktop.png index 5d31b179..cb6cddd6 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/places/user-desktop.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/places/user-desktop.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/places/user-home.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/places/user-home.png index 2885e7ed..0b3f1a53 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/places/user-home.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/places/user-home.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/status/folder-open.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/status/folder-open.png index 7cb91223..45d73088 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/status/folder-open.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/48x48@2x/status/folder-open.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/8x8/emblems/emblem-symbolic-link.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/8x8/emblems/emblem-symbolic-link.png index 7d059a0b..700b25ff 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/8x8/emblems/emblem-symbolic-link.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/8x8/emblems/emblem-symbolic-link.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/8x8@2x/emblems/emblem-symbolic-link.png b/releng/airootfs/etc/skel/.icons/Yaru-blue/8x8@2x/emblems/emblem-symbolic-link.png index dfc7bc6d..ed47c0d5 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/8x8@2x/emblems/emblem-symbolic-link.png and b/releng/airootfs/etc/skel/.icons/Yaru-blue/8x8@2x/emblems/emblem-symbolic-link.png differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/icon-theme.cache b/releng/airootfs/etc/skel/.icons/Yaru-blue/icon-theme.cache index bc2d1283..c18eff25 100644 Binary files a/releng/airootfs/etc/skel/.icons/Yaru-blue/icon-theme.cache and b/releng/airootfs/etc/skel/.icons/Yaru-blue/icon-theme.cache differ diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/scalable/devices/audio-speaker-center-back-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-blue/scalable/devices/audio-speaker-center-back-testing.svg index 1f64cc13..caea3b4e 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-blue/scalable/devices/audio-speaker-center-back-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-blue/scalable/devices/audio-speaker-center-back-testing.svg @@ -67,14 +67,14 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#0070de;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#0073E5;stroke-width:0.26458335;fill-opacity:1" d="m 3.9094833,288.91116 0.5611812,0.56118 0.2809875,-0.28099 a 2.3804562,2.3804562 0 0 1 3.3670875,0 l 0.2801937,0.28099 0.5611813,-0.56118 -0.2801938,-0.28099 a 3.175,3.175 0 0 0 -4.4894499,0 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/scalable/devices/audio-speaker-center-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-blue/scalable/devices/audio-speaker-center-testing.svg index cef291a8..3c96ec37 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-blue/scalable/devices/audio-speaker-center-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-blue/scalable/devices/audio-speaker-center-testing.svg @@ -67,14 +67,14 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#0070de;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#0073E5;stroke-width:0.26458335;fill-opacity:1" d="m 3.9094833,292.93202 0.5611812,-0.56118 0.2809875,0.28099 a 2.3804562,2.3804562 0 0 0 3.3670875,0 l 0.2801937,-0.28099 0.5611813,0.56118 -0.2801938,0.28099 a 3.175,3.175 0 0 1 -4.4894499,0 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/scalable/devices/audio-speaker-left-back-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-blue/scalable/devices/audio-speaker-left-back-testing.svg index 273196c3..66f95eca 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-blue/scalable/devices/audio-speaker-left-back-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-blue/scalable/devices/audio-speaker-left-back-testing.svg @@ -69,7 +69,7 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#0070de;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#0073E5;stroke-width:0.26458335;fill-opacity:1" d="m 5.8404131,287.76009 2e-7,0.79363 h 0.3973761 c 1.3150293,-2.4e-4 2.2492587,1.19869 2.2490186,2.51372 l -5.61e-4,0.39682 h 0.7936299 l 5.612e-4,-0.39682 c -2.648e-4,-1.75313 -1.2895189,-3.30709 -3.0426487,-3.30735 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/scalable/devices/audio-speaker-left-side-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-blue/scalable/devices/audio-speaker-left-side-testing.svg index 7efe702a..b1198b62 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-blue/scalable/devices/audio-speaker-left-side-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-blue/scalable/devices/audio-speaker-left-side-testing.svg @@ -67,14 +67,14 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#0070de;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#0073E5;stroke-width:0.26458335;fill-opacity:1" d="m 8.3534249,293.09052 -0.5611812,-0.56118 0.2809874,-0.28099 a 2.3804562,2.3804562 0 0 0 0,-3.36709 l -0.2809874,-0.28019 0.5611812,-0.56118 0.2809875,0.28019 a 3.175,3.175 0 0 1 0,4.48945 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/scalable/devices/audio-speaker-left-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-blue/scalable/devices/audio-speaker-left-testing.svg index e345b383..eec36a67 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-blue/scalable/devices/audio-speaker-left-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-blue/scalable/devices/audio-speaker-left-testing.svg @@ -69,7 +69,7 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#0070de;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#0073E5;stroke-width:0.26458335;fill-opacity:1" d="m 5.8208339,293.55998 2e-7,-0.79363 h 0.3973761 c 1.3150293,2.4e-4 2.2492587,-1.19869 2.2490186,-2.51372 l -5.61e-4,-0.39682 h 0.7936299 l 5.612e-4,0.39682 c -2.648e-4,1.75313 -1.2895189,3.30709 -3.0426487,3.30735 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/scalable/devices/audio-speaker-mono-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-blue/scalable/devices/audio-speaker-mono-testing.svg index e01f63fb..dc550331 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-blue/scalable/devices/audio-speaker-mono-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-blue/scalable/devices/audio-speaker-mono-testing.svg @@ -58,7 +58,7 @@ id="layer1" transform="translate(0,-284.3)"> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/scalable/devices/audio-speaker-right-back-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-blue/scalable/devices/audio-speaker-right-back-testing.svg index 2ca9a444..e215ab84 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-blue/scalable/devices/audio-speaker-right-back-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-blue/scalable/devices/audio-speaker-right-back-testing.svg @@ -69,7 +69,7 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#0070de;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#0073E5;stroke-width:0.26458335;fill-opacity:1" d="m 6.8791673,287.73958 -2e-7,0.79363 H 6.481791 c -1.3150293,-2.4e-4 -2.2492587,1.19869 -2.2490186,2.51372 l 5.61e-4,0.39682 H 3.4397035 l -5.612e-4,-0.39682 c 2.648e-4,-1.75313 1.2895189,-3.30709 3.0426487,-3.30735 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/scalable/devices/audio-speaker-right-side-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-blue/scalable/devices/audio-speaker-right-side-testing.svg index 9b9b422d..411d7621 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-blue/scalable/devices/audio-speaker-right-side-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-blue/scalable/devices/audio-speaker-right-side-testing.svg @@ -67,14 +67,14 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#0070de;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#0073E5;stroke-width:0.26458335;fill-opacity:1" d="m 4.3465791,293.09052 0.5611812,-0.56118 -0.2809874,-0.28099 a 2.3804562,2.3804562 0 0 1 0,-3.36709 l 0.2809874,-0.28019 -0.5611812,-0.56118 -0.2809875,0.28019 a 3.175,3.175 0 0 0 0,4.48945 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/scalable/devices/audio-speaker-right-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-blue/scalable/devices/audio-speaker-right-testing.svg index 82688790..79ae51f8 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-blue/scalable/devices/audio-speaker-right-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-blue/scalable/devices/audio-speaker-right-testing.svg @@ -69,7 +69,7 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#0070de;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#0073E5;stroke-width:0.26458335;fill-opacity:1" d="m 6.8796083,293.55998 -2e-7,-0.79363 H 6.482232 c -1.3150293,2.4e-4 -2.2492587,-1.19869 -2.2490186,-2.51372 l 5.61e-4,-0.39682 H 3.4401445 l -5.612e-4,0.39682 c 2.648e-4,1.75313 1.2895189,3.30709 3.0426487,3.30735 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-blue/scalable/devices/audio-subwoofer-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-blue/scalable/devices/audio-subwoofer-testing.svg index 5a932fb4..6cb6167a 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-blue/scalable/devices/audio-subwoofer-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-blue/scalable/devices/audio-subwoofer-testing.svg @@ -63,7 +63,7 @@ transform="matrix(0.26458333,0,0,0.26458333,0,284.3)" id="path13990" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-magenta/scalable/devices/audio-speaker-center-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-magenta/scalable/devices/audio-speaker-center-testing.svg index bdb626b9..2e9a8de1 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-magenta/scalable/devices/audio-speaker-center-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-magenta/scalable/devices/audio-speaker-center-testing.svg @@ -67,14 +67,14 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#ae4aae;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#B34CB3;stroke-width:0.26458335;fill-opacity:1" d="m 3.9094833,292.93202 0.5611812,-0.56118 0.2809875,0.28099 a 2.3804562,2.3804562 0 0 0 3.3670875,0 l 0.2801937,-0.28099 0.5611813,0.56118 -0.2801938,0.28099 a 3.175,3.175 0 0 1 -4.4894499,0 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-magenta/scalable/devices/audio-speaker-left-back-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-magenta/scalable/devices/audio-speaker-left-back-testing.svg index a73ace0c..f152f088 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-magenta/scalable/devices/audio-speaker-left-back-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-magenta/scalable/devices/audio-speaker-left-back-testing.svg @@ -69,7 +69,7 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#ae4aae;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#B34CB3;stroke-width:0.26458335;fill-opacity:1" d="m 5.8404131,287.76009 2e-7,0.79363 h 0.3973761 c 1.3150293,-2.4e-4 2.2492587,1.19869 2.2490186,2.51372 l -5.61e-4,0.39682 h 0.7936299 l 5.612e-4,-0.39682 c -2.648e-4,-1.75313 -1.2895189,-3.30709 -3.0426487,-3.30735 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-magenta/scalable/devices/audio-speaker-left-side-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-magenta/scalable/devices/audio-speaker-left-side-testing.svg index 1cbc273e..89fbe80d 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-magenta/scalable/devices/audio-speaker-left-side-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-magenta/scalable/devices/audio-speaker-left-side-testing.svg @@ -67,14 +67,14 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#ae4aae;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#B34CB3;stroke-width:0.26458335;fill-opacity:1" d="m 8.3534249,293.09052 -0.5611812,-0.56118 0.2809874,-0.28099 a 2.3804562,2.3804562 0 0 0 0,-3.36709 l -0.2809874,-0.28019 0.5611812,-0.56118 0.2809875,0.28019 a 3.175,3.175 0 0 1 0,4.48945 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-magenta/scalable/devices/audio-speaker-left-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-magenta/scalable/devices/audio-speaker-left-testing.svg index f7404bae..9d60f988 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-magenta/scalable/devices/audio-speaker-left-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-magenta/scalable/devices/audio-speaker-left-testing.svg @@ -69,7 +69,7 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#ae4aae;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#B34CB3;stroke-width:0.26458335;fill-opacity:1" d="m 5.8208339,293.55998 2e-7,-0.79363 h 0.3973761 c 1.3150293,2.4e-4 2.2492587,-1.19869 2.2490186,-2.51372 l -5.61e-4,-0.39682 h 0.7936299 l 5.612e-4,0.39682 c -2.648e-4,1.75313 -1.2895189,3.30709 -3.0426487,3.30735 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-magenta/scalable/devices/audio-speaker-mono-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-magenta/scalable/devices/audio-speaker-mono-testing.svg index b0981add..1a652472 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-magenta/scalable/devices/audio-speaker-mono-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-magenta/scalable/devices/audio-speaker-mono-testing.svg @@ -58,7 +58,7 @@ id="layer1" transform="translate(0,-284.3)"> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-magenta/scalable/devices/audio-speaker-right-back-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-magenta/scalable/devices/audio-speaker-right-back-testing.svg index d1fffd35..735415bf 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-magenta/scalable/devices/audio-speaker-right-back-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-magenta/scalable/devices/audio-speaker-right-back-testing.svg @@ -69,7 +69,7 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#ae4aae;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#B34CB3;stroke-width:0.26458335;fill-opacity:1" d="m 6.8791673,287.73958 -2e-7,0.79363 H 6.481791 c -1.3150293,-2.4e-4 -2.2492587,1.19869 -2.2490186,2.51372 l 5.61e-4,0.39682 H 3.4397035 l -5.612e-4,-0.39682 c 2.648e-4,-1.75313 1.2895189,-3.30709 3.0426487,-3.30735 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-magenta/scalable/devices/audio-speaker-right-side-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-magenta/scalable/devices/audio-speaker-right-side-testing.svg index 29313330..aed3b37e 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-magenta/scalable/devices/audio-speaker-right-side-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-magenta/scalable/devices/audio-speaker-right-side-testing.svg @@ -67,14 +67,14 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#ae4aae;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#B34CB3;stroke-width:0.26458335;fill-opacity:1" d="m 4.3465791,293.09052 0.5611812,-0.56118 -0.2809874,-0.28099 a 2.3804562,2.3804562 0 0 1 0,-3.36709 l 0.2809874,-0.28019 -0.5611812,-0.56118 -0.2809875,0.28019 a 3.175,3.175 0 0 0 0,4.48945 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-magenta/scalable/devices/audio-speaker-right-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-magenta/scalable/devices/audio-speaker-right-testing.svg index b2f7e982..1fe4fbd0 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-magenta/scalable/devices/audio-speaker-right-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-magenta/scalable/devices/audio-speaker-right-testing.svg @@ -69,7 +69,7 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#ae4aae;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#B34CB3;stroke-width:0.26458335;fill-opacity:1" d="m 6.8796083,293.55998 -2e-7,-0.79363 H 6.482232 c -1.3150293,2.4e-4 -2.2492587,-1.19869 -2.2490186,-2.51372 l 5.61e-4,-0.39682 H 3.4401445 l -5.612e-4,0.39682 c 2.648e-4,1.75313 1.2895189,3.30709 3.0426487,3.30735 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-magenta/scalable/devices/audio-subwoofer-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-magenta/scalable/devices/audio-subwoofer-testing.svg index 1167dea0..dfc8aa05 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-magenta/scalable/devices/audio-subwoofer-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-magenta/scalable/devices/audio-subwoofer-testing.svg @@ -63,7 +63,7 @@ transform="matrix(0.26458333,0,0,0.26458333,0,284.3)" id="path13990" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-olive/scalable/devices/audio-speaker-center-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-olive/scalable/devices/audio-speaker-center-testing.svg index 67d06ad9..9d1e64fb 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-olive/scalable/devices/audio-speaker-center-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-olive/scalable/devices/audio-speaker-center-testing.svg @@ -67,14 +67,14 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#488001;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#4B8501;stroke-width:0.26458335;fill-opacity:1" d="m 3.9094833,292.93202 0.5611812,-0.56118 0.2809875,0.28099 a 2.3804562,2.3804562 0 0 0 3.3670875,0 l 0.2801937,-0.28099 0.5611813,0.56118 -0.2801938,0.28099 a 3.175,3.175 0 0 1 -4.4894499,0 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-olive/scalable/devices/audio-speaker-left-back-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-olive/scalable/devices/audio-speaker-left-back-testing.svg index 7fb90cdc..c2df9437 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-olive/scalable/devices/audio-speaker-left-back-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-olive/scalable/devices/audio-speaker-left-back-testing.svg @@ -69,7 +69,7 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#488001;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#4B8501;stroke-width:0.26458335;fill-opacity:1" d="m 5.8404131,287.76009 2e-7,0.79363 h 0.3973761 c 1.3150293,-2.4e-4 2.2492587,1.19869 2.2490186,2.51372 l -5.61e-4,0.39682 h 0.7936299 l 5.612e-4,-0.39682 c -2.648e-4,-1.75313 -1.2895189,-3.30709 -3.0426487,-3.30735 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-olive/scalable/devices/audio-speaker-left-side-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-olive/scalable/devices/audio-speaker-left-side-testing.svg index e2fdb575..a3477f84 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-olive/scalable/devices/audio-speaker-left-side-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-olive/scalable/devices/audio-speaker-left-side-testing.svg @@ -67,14 +67,14 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#488001;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#4B8501;stroke-width:0.26458335;fill-opacity:1" d="m 8.3534249,293.09052 -0.5611812,-0.56118 0.2809874,-0.28099 a 2.3804562,2.3804562 0 0 0 0,-3.36709 l -0.2809874,-0.28019 0.5611812,-0.56118 0.2809875,0.28019 a 3.175,3.175 0 0 1 0,4.48945 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-olive/scalable/devices/audio-speaker-left-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-olive/scalable/devices/audio-speaker-left-testing.svg index f82c6dda..36c27f38 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-olive/scalable/devices/audio-speaker-left-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-olive/scalable/devices/audio-speaker-left-testing.svg @@ -69,7 +69,7 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#488001;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#4B8501;stroke-width:0.26458335;fill-opacity:1" d="m 5.8208339,293.55998 2e-7,-0.79363 h 0.3973761 c 1.3150293,2.4e-4 2.2492587,-1.19869 2.2490186,-2.51372 l -5.61e-4,-0.39682 h 0.7936299 l 5.612e-4,0.39682 c -2.648e-4,1.75313 -1.2895189,3.30709 -3.0426487,3.30735 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-olive/scalable/devices/audio-speaker-mono-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-olive/scalable/devices/audio-speaker-mono-testing.svg index 3a706e69..9c9e2845 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-olive/scalable/devices/audio-speaker-mono-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-olive/scalable/devices/audio-speaker-mono-testing.svg @@ -58,7 +58,7 @@ id="layer1" transform="translate(0,-284.3)"> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-olive/scalable/devices/audio-speaker-right-back-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-olive/scalable/devices/audio-speaker-right-back-testing.svg index 60d0a43b..d12e5a80 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-olive/scalable/devices/audio-speaker-right-back-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-olive/scalable/devices/audio-speaker-right-back-testing.svg @@ -69,7 +69,7 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#488001;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#4B8501;stroke-width:0.26458335;fill-opacity:1" d="m 6.8791673,287.73958 -2e-7,0.79363 H 6.481791 c -1.3150293,-2.4e-4 -2.2492587,1.19869 -2.2490186,2.51372 l 5.61e-4,0.39682 H 3.4397035 l -5.612e-4,-0.39682 c 2.648e-4,-1.75313 1.2895189,-3.30709 3.0426487,-3.30735 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-olive/scalable/devices/audio-speaker-right-side-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-olive/scalable/devices/audio-speaker-right-side-testing.svg index e27ac2ba..4a29930d 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-olive/scalable/devices/audio-speaker-right-side-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-olive/scalable/devices/audio-speaker-right-side-testing.svg @@ -67,14 +67,14 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#488001;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#4B8501;stroke-width:0.26458335;fill-opacity:1" d="m 4.3465791,293.09052 0.5611812,-0.56118 -0.2809874,-0.28099 a 2.3804562,2.3804562 0 0 1 0,-3.36709 l 0.2809874,-0.28019 -0.5611812,-0.56118 -0.2809875,0.28019 a 3.175,3.175 0 0 0 0,4.48945 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-olive/scalable/devices/audio-speaker-right-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-olive/scalable/devices/audio-speaker-right-testing.svg index 5bd23186..dc15535c 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-olive/scalable/devices/audio-speaker-right-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-olive/scalable/devices/audio-speaker-right-testing.svg @@ -69,7 +69,7 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#488001;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#4B8501;stroke-width:0.26458335;fill-opacity:1" d="m 6.8796083,293.55998 -2e-7,-0.79363 H 6.482232 c -1.3150293,2.4e-4 -2.2492587,-1.19869 -2.2490186,-2.51372 l 5.61e-4,-0.39682 H 3.4401445 l -5.612e-4,0.39682 c 2.648e-4,1.75313 1.2895189,3.30709 3.0426487,3.30735 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-olive/scalable/devices/audio-subwoofer-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-olive/scalable/devices/audio-subwoofer-testing.svg index 69c75dc1..7a5a98ee 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-olive/scalable/devices/audio-subwoofer-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-olive/scalable/devices/audio-subwoofer-testing.svg @@ -63,7 +63,7 @@ transform="matrix(0.26458333,0,0,0.26458333,0,284.3)" id="path13990" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-prussiangreen/scalable/devices/audio-speaker-center-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-prussiangreen/scalable/devices/audio-speaker-center-testing.svg index cf1e6a95..3d802ab7 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-prussiangreen/scalable/devices/audio-speaker-center-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-prussiangreen/scalable/devices/audio-speaker-center-testing.svg @@ -67,14 +67,14 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#2e7e7c;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#308280;stroke-width:0.26458335;fill-opacity:1" d="m 3.9094833,292.93202 0.5611812,-0.56118 0.2809875,0.28099 a 2.3804562,2.3804562 0 0 0 3.3670875,0 l 0.2801937,-0.28099 0.5611813,0.56118 -0.2801938,0.28099 a 3.175,3.175 0 0 1 -4.4894499,0 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-prussiangreen/scalable/devices/audio-speaker-left-back-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-prussiangreen/scalable/devices/audio-speaker-left-back-testing.svg index 85f7b32a..ac47b0c6 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-prussiangreen/scalable/devices/audio-speaker-left-back-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-prussiangreen/scalable/devices/audio-speaker-left-back-testing.svg @@ -69,7 +69,7 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#2e7e7c;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#308280;stroke-width:0.26458335;fill-opacity:1" d="m 5.8404131,287.76009 2e-7,0.79363 h 0.3973761 c 1.3150293,-2.4e-4 2.2492587,1.19869 2.2490186,2.51372 l -5.61e-4,0.39682 h 0.7936299 l 5.612e-4,-0.39682 c -2.648e-4,-1.75313 -1.2895189,-3.30709 -3.0426487,-3.30735 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-prussiangreen/scalable/devices/audio-speaker-left-side-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-prussiangreen/scalable/devices/audio-speaker-left-side-testing.svg index bfb0ec38..797cf1ef 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-prussiangreen/scalable/devices/audio-speaker-left-side-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-prussiangreen/scalable/devices/audio-speaker-left-side-testing.svg @@ -67,14 +67,14 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#2e7e7c;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#308280;stroke-width:0.26458335;fill-opacity:1" d="m 8.3534249,293.09052 -0.5611812,-0.56118 0.2809874,-0.28099 a 2.3804562,2.3804562 0 0 0 0,-3.36709 l -0.2809874,-0.28019 0.5611812,-0.56118 0.2809875,0.28019 a 3.175,3.175 0 0 1 0,4.48945 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-prussiangreen/scalable/devices/audio-speaker-left-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-prussiangreen/scalable/devices/audio-speaker-left-testing.svg index 59736a9f..9d009928 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-prussiangreen/scalable/devices/audio-speaker-left-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-prussiangreen/scalable/devices/audio-speaker-left-testing.svg @@ -69,7 +69,7 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#2e7e7c;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#308280;stroke-width:0.26458335;fill-opacity:1" d="m 5.8208339,293.55998 2e-7,-0.79363 h 0.3973761 c 1.3150293,2.4e-4 2.2492587,-1.19869 2.2490186,-2.51372 l -5.61e-4,-0.39682 h 0.7936299 l 5.612e-4,0.39682 c -2.648e-4,1.75313 -1.2895189,3.30709 -3.0426487,3.30735 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-prussiangreen/scalable/devices/audio-speaker-mono-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-prussiangreen/scalable/devices/audio-speaker-mono-testing.svg index 77f885d8..fe6a7477 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-prussiangreen/scalable/devices/audio-speaker-mono-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-prussiangreen/scalable/devices/audio-speaker-mono-testing.svg @@ -58,7 +58,7 @@ id="layer1" transform="translate(0,-284.3)"> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-prussiangreen/scalable/devices/audio-speaker-right-back-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-prussiangreen/scalable/devices/audio-speaker-right-back-testing.svg index 89909a32..39122b78 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-prussiangreen/scalable/devices/audio-speaker-right-back-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-prussiangreen/scalable/devices/audio-speaker-right-back-testing.svg @@ -69,7 +69,7 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#2e7e7c;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#308280;stroke-width:0.26458335;fill-opacity:1" d="m 6.8791673,287.73958 -2e-7,0.79363 H 6.481791 c -1.3150293,-2.4e-4 -2.2492587,1.19869 -2.2490186,2.51372 l 5.61e-4,0.39682 H 3.4397035 l -5.612e-4,-0.39682 c 2.648e-4,-1.75313 1.2895189,-3.30709 3.0426487,-3.30735 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-prussiangreen/scalable/devices/audio-speaker-right-side-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-prussiangreen/scalable/devices/audio-speaker-right-side-testing.svg index 381d3e7d..5e941cd8 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-prussiangreen/scalable/devices/audio-speaker-right-side-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-prussiangreen/scalable/devices/audio-speaker-right-side-testing.svg @@ -67,14 +67,14 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#2e7e7c;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#308280;stroke-width:0.26458335;fill-opacity:1" d="m 4.3465791,293.09052 0.5611812,-0.56118 -0.2809874,-0.28099 a 2.3804562,2.3804562 0 0 1 0,-3.36709 l 0.2809874,-0.28019 -0.5611812,-0.56118 -0.2809875,0.28019 a 3.175,3.175 0 0 0 0,4.48945 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-prussiangreen/scalable/devices/audio-speaker-right-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-prussiangreen/scalable/devices/audio-speaker-right-testing.svg index f25b2243..6e3b0e64 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-prussiangreen/scalable/devices/audio-speaker-right-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-prussiangreen/scalable/devices/audio-speaker-right-testing.svg @@ -69,7 +69,7 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#2e7e7c;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#308280;stroke-width:0.26458335;fill-opacity:1" d="m 6.8796083,293.55998 -2e-7,-0.79363 H 6.482232 c -1.3150293,2.4e-4 -2.2492587,-1.19869 -2.2490186,-2.51372 l 5.61e-4,-0.39682 H 3.4401445 l -5.612e-4,0.39682 c 2.648e-4,1.75313 1.2895189,3.30709 3.0426487,3.30735 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-prussiangreen/scalable/devices/audio-subwoofer-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-prussiangreen/scalable/devices/audio-subwoofer-testing.svg index b5b66d13..e0d4c79d 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-prussiangreen/scalable/devices/audio-subwoofer-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-prussiangreen/scalable/devices/audio-subwoofer-testing.svg @@ -63,7 +63,7 @@ transform="matrix(0.26458333,0,0,0.26458333,0,284.3)" id="path13990" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-purple/scalable/devices/audio-speaker-center-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-purple/scalable/devices/audio-speaker-center-testing.svg index 07a33d4a..43651b07 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-purple/scalable/devices/audio-speaker-center-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-purple/scalable/devices/audio-speaker-center-testing.svg @@ -67,14 +67,14 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#7360d7;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#7764D8;stroke-width:0.26458335;fill-opacity:1" d="m 3.9094833,292.93202 0.5611812,-0.56118 0.2809875,0.28099 a 2.3804562,2.3804562 0 0 0 3.3670875,0 l 0.2801937,-0.28099 0.5611813,0.56118 -0.2801938,0.28099 a 3.175,3.175 0 0 1 -4.4894499,0 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-purple/scalable/devices/audio-speaker-left-back-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-purple/scalable/devices/audio-speaker-left-back-testing.svg index e432e4b0..bc645920 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-purple/scalable/devices/audio-speaker-left-back-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-purple/scalable/devices/audio-speaker-left-back-testing.svg @@ -69,7 +69,7 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#7360d7;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#7764D8;stroke-width:0.26458335;fill-opacity:1" d="m 5.8404131,287.76009 2e-7,0.79363 h 0.3973761 c 1.3150293,-2.4e-4 2.2492587,1.19869 2.2490186,2.51372 l -5.61e-4,0.39682 h 0.7936299 l 5.612e-4,-0.39682 c -2.648e-4,-1.75313 -1.2895189,-3.30709 -3.0426487,-3.30735 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-purple/scalable/devices/audio-speaker-left-side-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-purple/scalable/devices/audio-speaker-left-side-testing.svg index e9e9e1ac..f0d92a00 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-purple/scalable/devices/audio-speaker-left-side-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-purple/scalable/devices/audio-speaker-left-side-testing.svg @@ -67,14 +67,14 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#7360d7;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#7764D8;stroke-width:0.26458335;fill-opacity:1" d="m 8.3534249,293.09052 -0.5611812,-0.56118 0.2809874,-0.28099 a 2.3804562,2.3804562 0 0 0 0,-3.36709 l -0.2809874,-0.28019 0.5611812,-0.56118 0.2809875,0.28019 a 3.175,3.175 0 0 1 0,4.48945 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-purple/scalable/devices/audio-speaker-left-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-purple/scalable/devices/audio-speaker-left-testing.svg index 6164da18..42a90973 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-purple/scalable/devices/audio-speaker-left-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-purple/scalable/devices/audio-speaker-left-testing.svg @@ -69,7 +69,7 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#7360d7;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#7764D8;stroke-width:0.26458335;fill-opacity:1" d="m 5.8208339,293.55998 2e-7,-0.79363 h 0.3973761 c 1.3150293,2.4e-4 2.2492587,-1.19869 2.2490186,-2.51372 l -5.61e-4,-0.39682 h 0.7936299 l 5.612e-4,0.39682 c -2.648e-4,1.75313 -1.2895189,3.30709 -3.0426487,3.30735 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-purple/scalable/devices/audio-speaker-mono-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-purple/scalable/devices/audio-speaker-mono-testing.svg index 5cf4ca0e..65b47434 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-purple/scalable/devices/audio-speaker-mono-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-purple/scalable/devices/audio-speaker-mono-testing.svg @@ -58,7 +58,7 @@ id="layer1" transform="translate(0,-284.3)"> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-purple/scalable/devices/audio-speaker-right-back-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-purple/scalable/devices/audio-speaker-right-back-testing.svg index 80ef7fc6..e5965384 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-purple/scalable/devices/audio-speaker-right-back-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-purple/scalable/devices/audio-speaker-right-back-testing.svg @@ -69,7 +69,7 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#7360d7;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#7764D8;stroke-width:0.26458335;fill-opacity:1" d="m 6.8791673,287.73958 -2e-7,0.79363 H 6.481791 c -1.3150293,-2.4e-4 -2.2492587,1.19869 -2.2490186,2.51372 l 5.61e-4,0.39682 H 3.4397035 l -5.612e-4,-0.39682 c 2.648e-4,-1.75313 1.2895189,-3.30709 3.0426487,-3.30735 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-purple/scalable/devices/audio-speaker-right-side-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-purple/scalable/devices/audio-speaker-right-side-testing.svg index 2bf8a6b6..feaccf25 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-purple/scalable/devices/audio-speaker-right-side-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-purple/scalable/devices/audio-speaker-right-side-testing.svg @@ -67,14 +67,14 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#7360d7;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#7764D8;stroke-width:0.26458335;fill-opacity:1" d="m 4.3465791,293.09052 0.5611812,-0.56118 -0.2809874,-0.28099 a 2.3804562,2.3804562 0 0 1 0,-3.36709 l 0.2809874,-0.28019 -0.5611812,-0.56118 -0.2809875,0.28019 a 3.175,3.175 0 0 0 0,4.48945 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-purple/scalable/devices/audio-speaker-right-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-purple/scalable/devices/audio-speaker-right-testing.svg index 29a42b63..e4803dce 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-purple/scalable/devices/audio-speaker-right-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-purple/scalable/devices/audio-speaker-right-testing.svg @@ -69,7 +69,7 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#7360d7;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#7764D8;stroke-width:0.26458335;fill-opacity:1" d="m 6.8796083,293.55998 -2e-7,-0.79363 H 6.482232 c -1.3150293,2.4e-4 -2.2492587,-1.19869 -2.2490186,-2.51372 l 5.61e-4,-0.39682 H 3.4401445 l -5.612e-4,0.39682 c 2.648e-4,1.75313 1.2895189,3.30709 3.0426487,3.30735 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-purple/scalable/devices/audio-subwoofer-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-purple/scalable/devices/audio-subwoofer-testing.svg index 63fac428..65a48703 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-purple/scalable/devices/audio-subwoofer-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-purple/scalable/devices/audio-subwoofer-testing.svg @@ -63,7 +63,7 @@ transform="matrix(0.26458333,0,0,0.26458333,0,284.3)" id="path13990" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-red/scalable/devices/audio-speaker-center-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-red/scalable/devices/audio-speaker-center-testing.svg index 920d4fbf..efbd3625 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-red/scalable/devices/audio-speaker-center-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-red/scalable/devices/audio-speaker-center-testing.svg @@ -67,14 +67,14 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#d82b48;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#DA3450;stroke-width:0.26458335;fill-opacity:1" d="m 3.9094833,292.93202 0.5611812,-0.56118 0.2809875,0.28099 a 2.3804562,2.3804562 0 0 0 3.3670875,0 l 0.2801937,-0.28099 0.5611813,0.56118 -0.2801938,0.28099 a 3.175,3.175 0 0 1 -4.4894499,0 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-red/scalable/devices/audio-speaker-left-back-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-red/scalable/devices/audio-speaker-left-back-testing.svg index aa06970c..a1cdba5c 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-red/scalable/devices/audio-speaker-left-back-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-red/scalable/devices/audio-speaker-left-back-testing.svg @@ -69,7 +69,7 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#d82b48;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#DA3450;stroke-width:0.26458335;fill-opacity:1" d="m 5.8404131,287.76009 2e-7,0.79363 h 0.3973761 c 1.3150293,-2.4e-4 2.2492587,1.19869 2.2490186,2.51372 l -5.61e-4,0.39682 h 0.7936299 l 5.612e-4,-0.39682 c -2.648e-4,-1.75313 -1.2895189,-3.30709 -3.0426487,-3.30735 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-red/scalable/devices/audio-speaker-left-side-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-red/scalable/devices/audio-speaker-left-side-testing.svg index ad501167..630f78f0 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-red/scalable/devices/audio-speaker-left-side-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-red/scalable/devices/audio-speaker-left-side-testing.svg @@ -67,14 +67,14 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#d82b48;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#DA3450;stroke-width:0.26458335;fill-opacity:1" d="m 8.3534249,293.09052 -0.5611812,-0.56118 0.2809874,-0.28099 a 2.3804562,2.3804562 0 0 0 0,-3.36709 l -0.2809874,-0.28019 0.5611812,-0.56118 0.2809875,0.28019 a 3.175,3.175 0 0 1 0,4.48945 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-red/scalable/devices/audio-speaker-left-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-red/scalable/devices/audio-speaker-left-testing.svg index 6e47624a..eba09c22 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-red/scalable/devices/audio-speaker-left-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-red/scalable/devices/audio-speaker-left-testing.svg @@ -69,7 +69,7 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#d82b48;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#DA3450;stroke-width:0.26458335;fill-opacity:1" d="m 5.8208339,293.55998 2e-7,-0.79363 h 0.3973761 c 1.3150293,2.4e-4 2.2492587,-1.19869 2.2490186,-2.51372 l -5.61e-4,-0.39682 h 0.7936299 l 5.612e-4,0.39682 c -2.648e-4,1.75313 -1.2895189,3.30709 -3.0426487,3.30735 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-red/scalable/devices/audio-speaker-mono-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-red/scalable/devices/audio-speaker-mono-testing.svg index 3f0f2849..a582942b 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-red/scalable/devices/audio-speaker-mono-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-red/scalable/devices/audio-speaker-mono-testing.svg @@ -58,7 +58,7 @@ id="layer1" transform="translate(0,-284.3)"> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-red/scalable/devices/audio-speaker-right-back-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-red/scalable/devices/audio-speaker-right-back-testing.svg index 1eb15f3f..2e76c44e 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-red/scalable/devices/audio-speaker-right-back-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-red/scalable/devices/audio-speaker-right-back-testing.svg @@ -69,7 +69,7 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#d82b48;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#DA3450;stroke-width:0.26458335;fill-opacity:1" d="m 6.8791673,287.73958 -2e-7,0.79363 H 6.481791 c -1.3150293,-2.4e-4 -2.2492587,1.19869 -2.2490186,2.51372 l 5.61e-4,0.39682 H 3.4397035 l -5.612e-4,-0.39682 c 2.648e-4,-1.75313 1.2895189,-3.30709 3.0426487,-3.30735 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-red/scalable/devices/audio-speaker-right-side-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-red/scalable/devices/audio-speaker-right-side-testing.svg index 12085b2a..d1a5435d 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-red/scalable/devices/audio-speaker-right-side-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-red/scalable/devices/audio-speaker-right-side-testing.svg @@ -67,14 +67,14 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#d82b48;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#DA3450;stroke-width:0.26458335;fill-opacity:1" d="m 4.3465791,293.09052 0.5611812,-0.56118 -0.2809874,-0.28099 a 2.3804562,2.3804562 0 0 1 0,-3.36709 l 0.2809874,-0.28019 -0.5611812,-0.56118 -0.2809875,0.28019 a 3.175,3.175 0 0 0 0,4.48945 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-red/scalable/devices/audio-speaker-right-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-red/scalable/devices/audio-speaker-right-testing.svg index ae4bcc75..99611122 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-red/scalable/devices/audio-speaker-right-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-red/scalable/devices/audio-speaker-right-testing.svg @@ -69,7 +69,7 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#d82b48;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#DA3450;stroke-width:0.26458335;fill-opacity:1" d="m 6.8796083,293.55998 -2e-7,-0.79363 H 6.482232 c -1.3150293,2.4e-4 -2.2492587,-1.19869 -2.2490186,-2.51372 l 5.61e-4,-0.39682 H 3.4401445 l -5.612e-4,0.39682 c 2.648e-4,1.75313 1.2895189,3.30709 3.0426487,3.30735 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-red/scalable/devices/audio-subwoofer-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-red/scalable/devices/audio-subwoofer-testing.svg index 074e676f..511650c3 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-red/scalable/devices/audio-subwoofer-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-red/scalable/devices/audio-subwoofer-testing.svg @@ -63,7 +63,7 @@ transform="matrix(0.26458333,0,0,0.26458333,0,284.3)" id="path13990" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-sage/scalable/devices/audio-speaker-center-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-sage/scalable/devices/audio-speaker-center-testing.svg index 1328785a..0f37a991 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-sage/scalable/devices/audio-speaker-center-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-sage/scalable/devices/audio-speaker-center-testing.svg @@ -67,14 +67,14 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#627766;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#657B69;stroke-width:0.26458335;fill-opacity:1" d="m 3.9094833,292.93202 0.5611812,-0.56118 0.2809875,0.28099 a 2.3804562,2.3804562 0 0 0 3.3670875,0 l 0.2801937,-0.28099 0.5611813,0.56118 -0.2801938,0.28099 a 3.175,3.175 0 0 1 -4.4894499,0 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-sage/scalable/devices/audio-speaker-left-back-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-sage/scalable/devices/audio-speaker-left-back-testing.svg index aa347e42..02309a57 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-sage/scalable/devices/audio-speaker-left-back-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-sage/scalable/devices/audio-speaker-left-back-testing.svg @@ -69,7 +69,7 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#627766;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#657B69;stroke-width:0.26458335;fill-opacity:1" d="m 5.8404131,287.76009 2e-7,0.79363 h 0.3973761 c 1.3150293,-2.4e-4 2.2492587,1.19869 2.2490186,2.51372 l -5.61e-4,0.39682 h 0.7936299 l 5.612e-4,-0.39682 c -2.648e-4,-1.75313 -1.2895189,-3.30709 -3.0426487,-3.30735 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-sage/scalable/devices/audio-speaker-left-side-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-sage/scalable/devices/audio-speaker-left-side-testing.svg index 22245326..d72a6ded 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-sage/scalable/devices/audio-speaker-left-side-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-sage/scalable/devices/audio-speaker-left-side-testing.svg @@ -67,14 +67,14 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#627766;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#657B69;stroke-width:0.26458335;fill-opacity:1" d="m 8.3534249,293.09052 -0.5611812,-0.56118 0.2809874,-0.28099 a 2.3804562,2.3804562 0 0 0 0,-3.36709 l -0.2809874,-0.28019 0.5611812,-0.56118 0.2809875,0.28019 a 3.175,3.175 0 0 1 0,4.48945 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-sage/scalable/devices/audio-speaker-left-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-sage/scalable/devices/audio-speaker-left-testing.svg index 87500566..d33cdeb8 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-sage/scalable/devices/audio-speaker-left-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-sage/scalable/devices/audio-speaker-left-testing.svg @@ -69,7 +69,7 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#627766;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#657B69;stroke-width:0.26458335;fill-opacity:1" d="m 5.8208339,293.55998 2e-7,-0.79363 h 0.3973761 c 1.3150293,2.4e-4 2.2492587,-1.19869 2.2490186,-2.51372 l -5.61e-4,-0.39682 h 0.7936299 l 5.612e-4,0.39682 c -2.648e-4,1.75313 -1.2895189,3.30709 -3.0426487,3.30735 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-sage/scalable/devices/audio-speaker-mono-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-sage/scalable/devices/audio-speaker-mono-testing.svg index e319178d..f3cdd595 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-sage/scalable/devices/audio-speaker-mono-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-sage/scalable/devices/audio-speaker-mono-testing.svg @@ -58,7 +58,7 @@ id="layer1" transform="translate(0,-284.3)"> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-sage/scalable/devices/audio-speaker-right-back-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-sage/scalable/devices/audio-speaker-right-back-testing.svg index ebcc5c50..0741526c 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-sage/scalable/devices/audio-speaker-right-back-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-sage/scalable/devices/audio-speaker-right-back-testing.svg @@ -69,7 +69,7 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#627766;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#657B69;stroke-width:0.26458335;fill-opacity:1" d="m 6.8791673,287.73958 -2e-7,0.79363 H 6.481791 c -1.3150293,-2.4e-4 -2.2492587,1.19869 -2.2490186,2.51372 l 5.61e-4,0.39682 H 3.4397035 l -5.612e-4,-0.39682 c 2.648e-4,-1.75313 1.2895189,-3.30709 3.0426487,-3.30735 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-sage/scalable/devices/audio-speaker-right-side-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-sage/scalable/devices/audio-speaker-right-side-testing.svg index 3f4ea173..6cc91e73 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-sage/scalable/devices/audio-speaker-right-side-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-sage/scalable/devices/audio-speaker-right-side-testing.svg @@ -67,14 +67,14 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#627766;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#657B69;stroke-width:0.26458335;fill-opacity:1" d="m 4.3465791,293.09052 0.5611812,-0.56118 -0.2809874,-0.28099 a 2.3804562,2.3804562 0 0 1 0,-3.36709 l 0.2809874,-0.28019 -0.5611812,-0.56118 -0.2809875,0.28019 a 3.175,3.175 0 0 0 0,4.48945 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-sage/scalable/devices/audio-speaker-right-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-sage/scalable/devices/audio-speaker-right-testing.svg index 93929d4a..1dcf6971 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-sage/scalable/devices/audio-speaker-right-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-sage/scalable/devices/audio-speaker-right-testing.svg @@ -69,7 +69,7 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#627766;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#657B69;stroke-width:0.26458335;fill-opacity:1" d="m 6.8796083,293.55998 -2e-7,-0.79363 H 6.482232 c -1.3150293,2.4e-4 -2.2492587,-1.19869 -2.2490186,-2.51372 l 5.61e-4,-0.39682 H 3.4401445 l -5.612e-4,0.39682 c 2.648e-4,1.75313 1.2895189,3.30709 3.0426487,3.30735 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-sage/scalable/devices/audio-subwoofer-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-sage/scalable/devices/audio-subwoofer-testing.svg index 99080ddb..03836b2c 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-sage/scalable/devices/audio-subwoofer-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-sage/scalable/devices/audio-subwoofer-testing.svg @@ -63,7 +63,7 @@ transform="matrix(0.26458333,0,0,0.26458333,0,284.3)" id="path13990" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-wartybrown/scalable/devices/audio-speaker-center-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-wartybrown/scalable/devices/audio-speaker-center-testing.svg index 5c5ea4c8..7a3fddbe 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-wartybrown/scalable/devices/audio-speaker-center-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-wartybrown/scalable/devices/audio-speaker-center-testing.svg @@ -67,14 +67,14 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#8c6c47;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#92714a;stroke-width:0.26458335;fill-opacity:1" d="m 3.9094833,292.93202 0.5611812,-0.56118 0.2809875,0.28099 a 2.3804562,2.3804562 0 0 0 3.3670875,0 l 0.2801937,-0.28099 0.5611813,0.56118 -0.2801938,0.28099 a 3.175,3.175 0 0 1 -4.4894499,0 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-wartybrown/scalable/devices/audio-speaker-left-back-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-wartybrown/scalable/devices/audio-speaker-left-back-testing.svg index 6ddf8790..374e65ba 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-wartybrown/scalable/devices/audio-speaker-left-back-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-wartybrown/scalable/devices/audio-speaker-left-back-testing.svg @@ -69,7 +69,7 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#8c6c47;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#92714a;stroke-width:0.26458335;fill-opacity:1" d="m 5.8404131,287.76009 2e-7,0.79363 h 0.3973761 c 1.3150293,-2.4e-4 2.2492587,1.19869 2.2490186,2.51372 l -5.61e-4,0.39682 h 0.7936299 l 5.612e-4,-0.39682 c -2.648e-4,-1.75313 -1.2895189,-3.30709 -3.0426487,-3.30735 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-wartybrown/scalable/devices/audio-speaker-left-side-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-wartybrown/scalable/devices/audio-speaker-left-side-testing.svg index 4323fb66..31c0e237 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-wartybrown/scalable/devices/audio-speaker-left-side-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-wartybrown/scalable/devices/audio-speaker-left-side-testing.svg @@ -67,14 +67,14 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#8c6c47;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#92714a;stroke-width:0.26458335;fill-opacity:1" d="m 8.3534249,293.09052 -0.5611812,-0.56118 0.2809874,-0.28099 a 2.3804562,2.3804562 0 0 0 0,-3.36709 l -0.2809874,-0.28019 0.5611812,-0.56118 0.2809875,0.28019 a 3.175,3.175 0 0 1 0,4.48945 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-wartybrown/scalable/devices/audio-speaker-left-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-wartybrown/scalable/devices/audio-speaker-left-testing.svg index c4138da7..64811a53 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-wartybrown/scalable/devices/audio-speaker-left-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-wartybrown/scalable/devices/audio-speaker-left-testing.svg @@ -69,7 +69,7 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#8c6c47;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#92714a;stroke-width:0.26458335;fill-opacity:1" d="m 5.8208339,293.55998 2e-7,-0.79363 h 0.3973761 c 1.3150293,2.4e-4 2.2492587,-1.19869 2.2490186,-2.51372 l -5.61e-4,-0.39682 h 0.7936299 l 5.612e-4,0.39682 c -2.648e-4,1.75313 -1.2895189,3.30709 -3.0426487,3.30735 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-wartybrown/scalable/devices/audio-speaker-mono-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-wartybrown/scalable/devices/audio-speaker-mono-testing.svg index 54907c72..2c56bd4c 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-wartybrown/scalable/devices/audio-speaker-mono-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-wartybrown/scalable/devices/audio-speaker-mono-testing.svg @@ -58,7 +58,7 @@ id="layer1" transform="translate(0,-284.3)"> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-wartybrown/scalable/devices/audio-speaker-right-back-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-wartybrown/scalable/devices/audio-speaker-right-back-testing.svg index e9be662c..81763c05 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-wartybrown/scalable/devices/audio-speaker-right-back-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-wartybrown/scalable/devices/audio-speaker-right-back-testing.svg @@ -69,7 +69,7 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#8c6c47;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#92714a;stroke-width:0.26458335;fill-opacity:1" d="m 6.8791673,287.73958 -2e-7,0.79363 H 6.481791 c -1.3150293,-2.4e-4 -2.2492587,1.19869 -2.2490186,2.51372 l 5.61e-4,0.39682 H 3.4397035 l -5.612e-4,-0.39682 c 2.648e-4,-1.75313 1.2895189,-3.30709 3.0426487,-3.30735 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-wartybrown/scalable/devices/audio-speaker-right-side-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-wartybrown/scalable/devices/audio-speaker-right-side-testing.svg index 1e3b0730..dcfbf571 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-wartybrown/scalable/devices/audio-speaker-right-side-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-wartybrown/scalable/devices/audio-speaker-right-side-testing.svg @@ -67,14 +67,14 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#8c6c47;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#92714a;stroke-width:0.26458335;fill-opacity:1" d="m 4.3465791,293.09052 0.5611812,-0.56118 -0.2809874,-0.28099 a 2.3804562,2.3804562 0 0 1 0,-3.36709 l 0.2809874,-0.28019 -0.5611812,-0.56118 -0.2809875,0.28019 a 3.175,3.175 0 0 0 0,4.48945 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-wartybrown/scalable/devices/audio-speaker-right-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-wartybrown/scalable/devices/audio-speaker-right-testing.svg index a205009c..63d193eb 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-wartybrown/scalable/devices/audio-speaker-right-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-wartybrown/scalable/devices/audio-speaker-right-testing.svg @@ -69,7 +69,7 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#8c6c47;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#92714a;stroke-width:0.26458335;fill-opacity:1" d="m 6.8796083,293.55998 -2e-7,-0.79363 H 6.482232 c -1.3150293,2.4e-4 -2.2492587,-1.19869 -2.2490186,-2.51372 l 5.61e-4,-0.39682 H 3.4401445 l -5.612e-4,0.39682 c 2.648e-4,1.75313 1.2895189,3.30709 3.0426487,3.30735 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-wartybrown/scalable/devices/audio-subwoofer-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-wartybrown/scalable/devices/audio-subwoofer-testing.svg index 234207a3..22441c41 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-wartybrown/scalable/devices/audio-subwoofer-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-wartybrown/scalable/devices/audio-subwoofer-testing.svg @@ -63,7 +63,7 @@ transform="matrix(0.26458333,0,0,0.26458333,0,284.3)" id="path13990" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-yellow/scalable/devices/audio-speaker-center-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-yellow/scalable/devices/audio-speaker-center-testing.svg index ea5e3143..dbf0d74b 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-yellow/scalable/devices/audio-speaker-center-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-yellow/scalable/devices/audio-speaker-center-testing.svg @@ -67,14 +67,14 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#9a6800;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#9f6c00;stroke-width:0.26458335;fill-opacity:1" d="m 3.9094833,292.93202 0.5611812,-0.56118 0.2809875,0.28099 a 2.3804562,2.3804562 0 0 0 3.3670875,0 l 0.2801937,-0.28099 0.5611813,0.56118 -0.2801938,0.28099 a 3.175,3.175 0 0 1 -4.4894499,0 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-yellow/scalable/devices/audio-speaker-left-back-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-yellow/scalable/devices/audio-speaker-left-back-testing.svg index ce96607c..b9d750ba 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-yellow/scalable/devices/audio-speaker-left-back-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-yellow/scalable/devices/audio-speaker-left-back-testing.svg @@ -69,7 +69,7 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#9a6800;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#9f6c00;stroke-width:0.26458335;fill-opacity:1" d="m 5.8404131,287.76009 2e-7,0.79363 h 0.3973761 c 1.3150293,-2.4e-4 2.2492587,1.19869 2.2490186,2.51372 l -5.61e-4,0.39682 h 0.7936299 l 5.612e-4,-0.39682 c -2.648e-4,-1.75313 -1.2895189,-3.30709 -3.0426487,-3.30735 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-yellow/scalable/devices/audio-speaker-left-side-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-yellow/scalable/devices/audio-speaker-left-side-testing.svg index 8f314732..a1591f4d 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-yellow/scalable/devices/audio-speaker-left-side-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-yellow/scalable/devices/audio-speaker-left-side-testing.svg @@ -67,14 +67,14 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#9a6800;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#9f6c00;stroke-width:0.26458335;fill-opacity:1" d="m 8.3534249,293.09052 -0.5611812,-0.56118 0.2809874,-0.28099 a 2.3804562,2.3804562 0 0 0 0,-3.36709 l -0.2809874,-0.28019 0.5611812,-0.56118 0.2809875,0.28019 a 3.175,3.175 0 0 1 0,4.48945 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-yellow/scalable/devices/audio-speaker-left-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-yellow/scalable/devices/audio-speaker-left-testing.svg index d1741a1e..5cbf5d9e 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-yellow/scalable/devices/audio-speaker-left-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-yellow/scalable/devices/audio-speaker-left-testing.svg @@ -69,7 +69,7 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#9a6800;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#9f6c00;stroke-width:0.26458335;fill-opacity:1" d="m 5.8208339,293.55998 2e-7,-0.79363 h 0.3973761 c 1.3150293,2.4e-4 2.2492587,-1.19869 2.2490186,-2.51372 l -5.61e-4,-0.39682 h 0.7936299 l 5.612e-4,0.39682 c -2.648e-4,1.75313 -1.2895189,3.30709 -3.0426487,3.30735 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-yellow/scalable/devices/audio-speaker-mono-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-yellow/scalable/devices/audio-speaker-mono-testing.svg index 140a691e..140c21d3 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-yellow/scalable/devices/audio-speaker-mono-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-yellow/scalable/devices/audio-speaker-mono-testing.svg @@ -58,7 +58,7 @@ id="layer1" transform="translate(0,-284.3)"> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-yellow/scalable/devices/audio-speaker-right-back-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-yellow/scalable/devices/audio-speaker-right-back-testing.svg index 798ea04a..1b1b48c8 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-yellow/scalable/devices/audio-speaker-right-back-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-yellow/scalable/devices/audio-speaker-right-back-testing.svg @@ -69,7 +69,7 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#9a6800;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#9f6c00;stroke-width:0.26458335;fill-opacity:1" d="m 6.8791673,287.73958 -2e-7,0.79363 H 6.481791 c -1.3150293,-2.4e-4 -2.2492587,1.19869 -2.2490186,2.51372 l 5.61e-4,0.39682 H 3.4397035 l -5.612e-4,-0.39682 c 2.648e-4,-1.75313 1.2895189,-3.30709 3.0426487,-3.30735 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-yellow/scalable/devices/audio-speaker-right-side-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-yellow/scalable/devices/audio-speaker-right-side-testing.svg index 52786a20..5a0f1ec1 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-yellow/scalable/devices/audio-speaker-right-side-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-yellow/scalable/devices/audio-speaker-right-side-testing.svg @@ -67,14 +67,14 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#9a6800;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#9f6c00;stroke-width:0.26458335;fill-opacity:1" d="m 4.3465791,293.09052 0.5611812,-0.56118 -0.2809874,-0.28099 a 2.3804562,2.3804562 0 0 1 0,-3.36709 l 0.2809874,-0.28019 -0.5611812,-0.56118 -0.2809875,0.28019 a 3.175,3.175 0 0 0 0,4.48945 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-yellow/scalable/devices/audio-speaker-right-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-yellow/scalable/devices/audio-speaker-right-testing.svg index 5bc13595..c9eecd4c 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-yellow/scalable/devices/audio-speaker-right-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-yellow/scalable/devices/audio-speaker-right-testing.svg @@ -69,7 +69,7 @@ id="path7102" overflow="visible" font-weight="400" - style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#9a6800;stroke-width:0.26458335;fill-opacity:1" + style="color:#000000;font-weight:400;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;overflow:visible;isolation:auto;mix-blend-mode:normal;fill:#9f6c00;stroke-width:0.26458335;fill-opacity:1" d="m 6.8796083,293.55998 -2e-7,-0.79363 H 6.482232 c -1.3150293,2.4e-4 -2.2492587,-1.19869 -2.2490186,-2.51372 l 5.61e-4,-0.39682 H 3.4401445 l -5.612e-4,0.39682 c 2.648e-4,1.75313 1.2895189,3.30709 3.0426487,3.30735 z" /> diff --git a/releng/airootfs/etc/skel/.icons/Yaru-yellow/scalable/devices/audio-subwoofer-testing.svg b/releng/airootfs/etc/skel/.icons/Yaru-yellow/scalable/devices/audio-subwoofer-testing.svg index 97d7bec0..72b15b25 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru-yellow/scalable/devices/audio-subwoofer-testing.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru-yellow/scalable/devices/audio-subwoofer-testing.svg @@ -63,7 +63,7 @@ transform="matrix(0.26458333,0,0,0.26458333,0,284.3)" id="path13990" /> + + + + + + + + + + + + + + + + + diff --git a/releng/airootfs/etc/skel/.icons/Yaru/scalable/actions/document-admin-symbolic.svg b/releng/airootfs/etc/skel/.icons/Yaru/scalable/actions/document-admin-symbolic.svg new file mode 120000 index 00000000..a8133995 --- /dev/null +++ b/releng/airootfs/etc/skel/.icons/Yaru/scalable/actions/document-admin-symbolic.svg @@ -0,0 +1 @@ +system-lock-screen-symbolic.svg \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.icons/Yaru/scalable/actions/ephy-bookmark-tag-symbolic.svg b/releng/airootfs/etc/skel/.icons/Yaru/scalable/actions/ephy-bookmark-tag-symbolic.svg new file mode 120000 index 00000000..23581625 --- /dev/null +++ b/releng/airootfs/etc/skel/.icons/Yaru/scalable/actions/ephy-bookmark-tag-symbolic.svg @@ -0,0 +1 @@ +tag-symbolic.svg \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.icons/Yaru/scalable/actions/ephy-globe-alt2-symbolic.svg b/releng/airootfs/etc/skel/.icons/Yaru/scalable/actions/ephy-globe-alt2-symbolic.svg new file mode 120000 index 00000000..ba861113 --- /dev/null +++ b/releng/airootfs/etc/skel/.icons/Yaru/scalable/actions/ephy-globe-alt2-symbolic.svg @@ -0,0 +1 @@ +globe-symbolic.svg \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.icons/Yaru/scalable/actions/ephy-library-symbolic.svg b/releng/airootfs/etc/skel/.icons/Yaru/scalable/actions/ephy-library-symbolic.svg new file mode 100644 index 00000000..431e64be --- /dev/null +++ b/releng/airootfs/etc/skel/.icons/Yaru/scalable/actions/ephy-library-symbolic.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/releng/airootfs/etc/skel/.icons/Yaru/scalable/actions/ephy-open-link-symbolic.svg b/releng/airootfs/etc/skel/.icons/Yaru/scalable/actions/ephy-open-link-symbolic.svg new file mode 120000 index 00000000..698e2393 --- /dev/null +++ b/releng/airootfs/etc/skel/.icons/Yaru/scalable/actions/ephy-open-link-symbolic.svg @@ -0,0 +1 @@ +../emblems/external-link-symbolic.svg \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.icons/Yaru/scalable/actions/ephy-webpage-symbolic.svg b/releng/airootfs/etc/skel/.icons/Yaru/scalable/actions/ephy-webpage-symbolic.svg new file mode 120000 index 00000000..1754dc95 --- /dev/null +++ b/releng/airootfs/etc/skel/.icons/Yaru/scalable/actions/ephy-webpage-symbolic.svg @@ -0,0 +1 @@ +../apps/webbrowser-app-symbolic.svg \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.icons/Yaru/scalable/actions/graphics-symbolic.svg b/releng/airootfs/etc/skel/.icons/Yaru/scalable/actions/graphics-symbolic.svg new file mode 100644 index 00000000..96a04501 --- /dev/null +++ b/releng/airootfs/etc/skel/.icons/Yaru/scalable/actions/graphics-symbolic.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/releng/airootfs/etc/skel/.icons/Yaru/scalable/actions/mark-chart-symbolic.svg b/releng/airootfs/etc/skel/.icons/Yaru/scalable/actions/mark-chart-symbolic.svg new file mode 100644 index 00000000..db0c8702 --- /dev/null +++ b/releng/airootfs/etc/skel/.icons/Yaru/scalable/actions/mark-chart-symbolic.svg @@ -0,0 +1,4 @@ + + + + diff --git a/releng/airootfs/etc/skel/.icons/Yaru/scalable/actions/power-saving-symbolic.svg b/releng/airootfs/etc/skel/.icons/Yaru/scalable/actions/power-saving-symbolic.svg new file mode 120000 index 00000000..d1ca02b6 --- /dev/null +++ b/releng/airootfs/etc/skel/.icons/Yaru/scalable/actions/power-saving-symbolic.svg @@ -0,0 +1 @@ +../status/power-profile-power-saver-symbolic.svg \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.icons/Yaru/scalable/actions/view-app-grid-symbolic.svg b/releng/airootfs/etc/skel/.icons/Yaru/scalable/actions/view-app-grid-symbolic.svg index 49a9777b..3fb82a3e 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru/scalable/actions/view-app-grid-symbolic.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru/scalable/actions/view-app-grid-symbolic.svg @@ -1,18 +1,3 @@ - - - - - - - - - - - - + + + diff --git a/releng/airootfs/etc/skel/.icons/Yaru/scalable/apps/app.drey.EarTag-symbolic.svg b/releng/airootfs/etc/skel/.icons/Yaru/scalable/apps/app.drey.EarTag-symbolic.svg new file mode 100644 index 00000000..c9c3b3d6 --- /dev/null +++ b/releng/airootfs/etc/skel/.icons/Yaru/scalable/apps/app.drey.EarTag-symbolic.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/releng/airootfs/etc/skel/.icons/Yaru/scalable/apps/org.gnome.Snapshot-symbolic.svg b/releng/airootfs/etc/skel/.icons/Yaru/scalable/apps/org.gnome.Snapshot-symbolic.svg new file mode 100644 index 00000000..41294fa6 --- /dev/null +++ b/releng/airootfs/etc/skel/.icons/Yaru/scalable/apps/org.gnome.Snapshot-symbolic.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/releng/airootfs/etc/skel/.icons/Yaru/scalable/apps/org.gnome.Software-symbolic.svg b/releng/airootfs/etc/skel/.icons/Yaru/scalable/apps/org.gnome.Software-symbolic.svg index 2d4cc525..e171b04e 100644 --- a/releng/airootfs/etc/skel/.icons/Yaru/scalable/apps/org.gnome.Software-symbolic.svg +++ b/releng/airootfs/etc/skel/.icons/Yaru/scalable/apps/org.gnome.Software-symbolic.svg @@ -1,5 +1,3 @@ - - - - + + diff --git a/releng/airootfs/etc/skel/.icons/Yaru/scalable/apps/org.gnome.Sysprof-symbolic.svg b/releng/airootfs/etc/skel/.icons/Yaru/scalable/apps/org.gnome.Sysprof-symbolic.svg new file mode 120000 index 00000000..54460403 --- /dev/null +++ b/releng/airootfs/etc/skel/.icons/Yaru/scalable/apps/org.gnome.Sysprof-symbolic.svg @@ -0,0 +1 @@ +../time/stopwatch-symbolic.svg \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.icons/Yaru/scalable/categories/ephy-permission-camera-symbolic.svg b/releng/airootfs/etc/skel/.icons/Yaru/scalable/categories/ephy-permission-camera-symbolic.svg new file mode 120000 index 00000000..9e557077 --- /dev/null +++ b/releng/airootfs/etc/skel/.icons/Yaru/scalable/categories/ephy-permission-camera-symbolic.svg @@ -0,0 +1 @@ +../devices/camera-video-symbolic.svg \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.icons/Yaru/scalable/categories/ephy-permission-generic-symbolic.svg b/releng/airootfs/etc/skel/.icons/Yaru/scalable/categories/ephy-permission-generic-symbolic.svg new file mode 120000 index 00000000..43404a2a --- /dev/null +++ b/releng/airootfs/etc/skel/.icons/Yaru/scalable/categories/ephy-permission-generic-symbolic.svg @@ -0,0 +1 @@ +../org.gnome.Nautilus/nautilus-search-filters-symbolic.svg \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.icons/Yaru/scalable/categories/ephy-permission-location-symbolic.svg b/releng/airootfs/etc/skel/.icons/Yaru/scalable/categories/ephy-permission-location-symbolic.svg new file mode 120000 index 00000000..25147125 --- /dev/null +++ b/releng/airootfs/etc/skel/.icons/Yaru/scalable/categories/ephy-permission-location-symbolic.svg @@ -0,0 +1 @@ +../actions/mark-location-symbolic.svg \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.icons/Yaru/scalable/categories/ephy-permission-microphone-symbolic.svg b/releng/airootfs/etc/skel/.icons/Yaru/scalable/categories/ephy-permission-microphone-symbolic.svg new file mode 120000 index 00000000..87887c28 --- /dev/null +++ b/releng/airootfs/etc/skel/.icons/Yaru/scalable/categories/ephy-permission-microphone-symbolic.svg @@ -0,0 +1 @@ +../devices/audio-input-microphone-symbolic.svg \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.icons/Yaru/scalable/categories/ephy-permission-notifications-symbolic.svg b/releng/airootfs/etc/skel/.icons/Yaru/scalable/categories/ephy-permission-notifications-symbolic.svg new file mode 120000 index 00000000..9affee06 --- /dev/null +++ b/releng/airootfs/etc/skel/.icons/Yaru/scalable/categories/ephy-permission-notifications-symbolic.svg @@ -0,0 +1 @@ +../apps/preferences-system-notifications-symbolic.svg \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.icons/Yaru/scalable/categories/org.gnome.Settings-network-workgroup-symbolic.svg b/releng/airootfs/etc/skel/.icons/Yaru/scalable/categories/org.gnome.Settings-network-workgroup-symbolic.svg new file mode 120000 index 00000000..4b80df3d --- /dev/null +++ b/releng/airootfs/etc/skel/.icons/Yaru/scalable/categories/org.gnome.Settings-network-workgroup-symbolic.svg @@ -0,0 +1 @@ +applications-internet-symbolic.svg \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.icons/Yaru/scalable/categories/org.gnome.Settings-screen-lock-symbolic.svg b/releng/airootfs/etc/skel/.icons/Yaru/scalable/categories/org.gnome.Settings-screen-lock-symbolic.svg new file mode 120000 index 00000000..eb2e7b1d --- /dev/null +++ b/releng/airootfs/etc/skel/.icons/Yaru/scalable/categories/org.gnome.Settings-screen-lock-symbolic.svg @@ -0,0 +1 @@ +../org.gnome.Settings/screen-lock-symbolic.svg \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.icons/Yaru/scalable/emblems/emblem-readonly-symbolic.svg b/releng/airootfs/etc/skel/.icons/Yaru/scalable/emblems/emblem-readonly-symbolic.svg new file mode 100644 index 00000000..ac28b4f9 --- /dev/null +++ b/releng/airootfs/etc/skel/.icons/Yaru/scalable/emblems/emblem-readonly-symbolic.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/releng/airootfs/etc/skel/.icons/Yaru/scalable/emblems/emblem-symbolic-link-symbolic.svg b/releng/airootfs/etc/skel/.icons/Yaru/scalable/emblems/emblem-symbolic-link-symbolic.svg new file mode 100644 index 00000000..8215e935 --- /dev/null +++ b/releng/airootfs/etc/skel/.icons/Yaru/scalable/emblems/emblem-symbolic-link-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/releng/airootfs/etc/skel/.icons/Yaru/scalable/emblems/emblem-unwriteable-symbolic.svg b/releng/airootfs/etc/skel/.icons/Yaru/scalable/emblems/emblem-unwriteable-symbolic.svg new file mode 100644 index 00000000..dcb28851 --- /dev/null +++ b/releng/airootfs/etc/skel/.icons/Yaru/scalable/emblems/emblem-unwriteable-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/releng/airootfs/etc/skel/.icons/Yaru/scalable/org.gnome.Nautilus/nautilus-file-chooser-options-symbolic.svg b/releng/airootfs/etc/skel/.icons/Yaru/scalable/org.gnome.Nautilus/nautilus-file-chooser-options-symbolic.svg new file mode 120000 index 00000000..73796e4c --- /dev/null +++ b/releng/airootfs/etc/skel/.icons/Yaru/scalable/org.gnome.Nautilus/nautilus-file-chooser-options-symbolic.svg @@ -0,0 +1 @@ +nautilus-search-filters-symbolic.svg \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.icons/Yaru/scalable/status/ephy-audio-muted-symbolic.svg b/releng/airootfs/etc/skel/.icons/Yaru/scalable/status/ephy-audio-muted-symbolic.svg new file mode 120000 index 00000000..41d156e0 --- /dev/null +++ b/releng/airootfs/etc/skel/.icons/Yaru/scalable/status/ephy-audio-muted-symbolic.svg @@ -0,0 +1 @@ +audio-volume-muted-symbolic.svg \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.icons/Yaru/scalable/status/ephy-audio-playing-symbolic.svg b/releng/airootfs/etc/skel/.icons/Yaru/scalable/status/ephy-audio-playing-symbolic.svg new file mode 120000 index 00000000..cb5d9d71 --- /dev/null +++ b/releng/airootfs/etc/skel/.icons/Yaru/scalable/status/ephy-audio-playing-symbolic.svg @@ -0,0 +1 @@ +audio-volume-high-symbolic.svg \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.icons/Yaru/scalable/status/ephy-eye-open-negative-filled-symbolic.svg b/releng/airootfs/etc/skel/.icons/Yaru/scalable/status/ephy-eye-open-negative-filled-symbolic.svg new file mode 120000 index 00000000..1514246b --- /dev/null +++ b/releng/airootfs/etc/skel/.icons/Yaru/scalable/status/ephy-eye-open-negative-filled-symbolic.svg @@ -0,0 +1 @@ +eye-open-negative-filled-symbolic.svg \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.icons/Yaru/scalable/status/ephy-non-starred-symbolic.svg b/releng/airootfs/etc/skel/.icons/Yaru/scalable/status/ephy-non-starred-symbolic.svg new file mode 120000 index 00000000..74ac897c --- /dev/null +++ b/releng/airootfs/etc/skel/.icons/Yaru/scalable/status/ephy-non-starred-symbolic.svg @@ -0,0 +1 @@ +non-starred-symbolic.svg \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.icons/Yaru/scalable/status/ephy-reader-mode-symbolic.svg b/releng/airootfs/etc/skel/.icons/Yaru/scalable/status/ephy-reader-mode-symbolic.svg new file mode 100644 index 00000000..6c98e00f --- /dev/null +++ b/releng/airootfs/etc/skel/.icons/Yaru/scalable/status/ephy-reader-mode-symbolic.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/releng/airootfs/etc/skel/.icons/Yaru/scalable/status/ephy-shield-safe-symbolic.svg b/releng/airootfs/etc/skel/.icons/Yaru/scalable/status/ephy-shield-safe-symbolic.svg new file mode 100644 index 00000000..401e2240 --- /dev/null +++ b/releng/airootfs/etc/skel/.icons/Yaru/scalable/status/ephy-shield-safe-symbolic.svg @@ -0,0 +1,4 @@ + + + + diff --git a/releng/airootfs/etc/skel/.icons/Yaru/scalable/status/ephy-starred-symbolic.svg b/releng/airootfs/etc/skel/.icons/Yaru/scalable/status/ephy-starred-symbolic.svg new file mode 120000 index 00000000..047cb70b --- /dev/null +++ b/releng/airootfs/etc/skel/.icons/Yaru/scalable/status/ephy-starred-symbolic.svg @@ -0,0 +1 @@ +starred-symbolic.svg \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.icons/Yaru/scalable/ui/adw-expander-arrow-symbolic.svg b/releng/airootfs/etc/skel/.icons/Yaru/scalable/ui/adw-expander-arrow-symbolic.svg deleted file mode 120000 index 68ef26fb..00000000 --- a/releng/airootfs/etc/skel/.icons/Yaru/scalable/ui/adw-expander-arrow-symbolic.svg +++ /dev/null @@ -1 +0,0 @@ -pan-down-symbolic.svg \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.icons/Yaru/scalable/ui/cross-small-symbolic.svg b/releng/airootfs/etc/skel/.icons/Yaru/scalable/ui/cross-small-symbolic.svg deleted file mode 120000 index a3ce6e3f..00000000 --- a/releng/airootfs/etc/skel/.icons/Yaru/scalable/ui/cross-small-symbolic.svg +++ /dev/null @@ -1 +0,0 @@ -window-close-symbolic.svg \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.icons/Yaru/scalable/ui/drag-handle-symbolic.svg b/releng/airootfs/etc/skel/.icons/Yaru/scalable/ui/drag-handle-symbolic.svg deleted file mode 120000 index c5c1235e..00000000 --- a/releng/airootfs/etc/skel/.icons/Yaru/scalable/ui/drag-handle-symbolic.svg +++ /dev/null @@ -1 +0,0 @@ -list-drag-handle-symbolic.svg \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.icons/Yaru/scalable/ui/hdy-expander-arrow-symbolic.svg b/releng/airootfs/etc/skel/.icons/Yaru/scalable/ui/hdy-expander-arrow-symbolic.svg deleted file mode 120000 index 68ef26fb..00000000 --- a/releng/airootfs/etc/skel/.icons/Yaru/scalable/ui/hdy-expander-arrow-symbolic.svg +++ /dev/null @@ -1 +0,0 @@ -pan-down-symbolic.svg \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.icons/Yaru/scalable/ui/pan-end-symbolic-rtl.svg b/releng/airootfs/etc/skel/.icons/Yaru/scalable/ui/pan-end-symbolic-rtl.svg deleted file mode 120000 index 8c2fe8d4..00000000 --- a/releng/airootfs/etc/skel/.icons/Yaru/scalable/ui/pan-end-symbolic-rtl.svg +++ /dev/null @@ -1 +0,0 @@ -pan-start-symbolic.svg \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.icons/Yaru/scalable/ui/pan-start-symbolic-rtl.svg b/releng/airootfs/etc/skel/.icons/Yaru/scalable/ui/pan-start-symbolic-rtl.svg deleted file mode 120000 index ab00c826..00000000 --- a/releng/airootfs/etc/skel/.icons/Yaru/scalable/ui/pan-start-symbolic-rtl.svg +++ /dev/null @@ -1 +0,0 @@ -pan-end-symbolic.svg \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.icons/Yaru/scalable/ui/right-large-symbolic.svg b/releng/airootfs/etc/skel/.icons/Yaru/scalable/ui/right-large-symbolic.svg deleted file mode 120000 index 2476e126..00000000 --- a/releng/airootfs/etc/skel/.icons/Yaru/scalable/ui/right-large-symbolic.svg +++ /dev/null @@ -1 +0,0 @@ -pan-end-large-symbolic.svg \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.icons/Yaru/scalable/ui/selection-end-symbolic-rtl.svg b/releng/airootfs/etc/skel/.icons/Yaru/scalable/ui/selection-end-symbolic-rtl.svg deleted file mode 120000 index 768fa9f9..00000000 --- a/releng/airootfs/etc/skel/.icons/Yaru/scalable/ui/selection-end-symbolic-rtl.svg +++ /dev/null @@ -1 +0,0 @@ -selection-start-symbolic.svg \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.icons/Yaru/scalable/ui/selection-start-symbolic-rtl.svg b/releng/airootfs/etc/skel/.icons/Yaru/scalable/ui/selection-start-symbolic-rtl.svg deleted file mode 120000 index 17fd0bfc..00000000 --- a/releng/airootfs/etc/skel/.icons/Yaru/scalable/ui/selection-start-symbolic-rtl.svg +++ /dev/null @@ -1 +0,0 @@ -selection-end-symbolic.svg \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru-blue-dark/gnome-shell b/releng/airootfs/etc/skel/.themes/Yaru-blue-dark/gnome-shell deleted file mode 120000 index f91cee90..00000000 --- a/releng/airootfs/etc/skel/.themes/Yaru-blue-dark/gnome-shell +++ /dev/null @@ -1 +0,0 @@ -../../gnome-shell/theme/Yaru-blue-dark \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru-blue-dark/gtk-3.0/gtk.gresource b/releng/airootfs/etc/skel/.themes/Yaru-blue-dark/gtk-3.0/gtk.gresource index 6231fd16..968f4f0a 100644 Binary files a/releng/airootfs/etc/skel/.themes/Yaru-blue-dark/gtk-3.0/gtk.gresource and b/releng/airootfs/etc/skel/.themes/Yaru-blue-dark/gtk-3.0/gtk.gresource differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-blue-dark/gtk-4.0/gtk.gresource b/releng/airootfs/etc/skel/.themes/Yaru-blue-dark/gtk-4.0/gtk.gresource index 77cc96a8..e2cbc100 100644 Binary files a/releng/airootfs/etc/skel/.themes/Yaru-blue-dark/gtk-4.0/gtk.gresource and b/releng/airootfs/etc/skel/.themes/Yaru-blue-dark/gtk-4.0/gtk.gresource differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-blue-dark/index.theme b/releng/airootfs/etc/skel/.themes/Yaru-blue-dark/index.theme index a83cc02a..0477042f 100644 --- a/releng/airootfs/etc/skel/.themes/Yaru-blue-dark/index.theme +++ b/releng/airootfs/etc/skel/.themes/Yaru-blue-dark/index.theme @@ -13,4 +13,4 @@ CursorSize=24 X-Yaru-Dark=true X-Yaru-Accent-Name=blue X-Yaru-Accent-Color=#0073E5 -/home/t/yaru/src/build/gtk/src/Yaru-blue-dark-blue-accent-color-info.scss:48 DEBUG: Contrast optimized accent is #0071e1 +/home/rave/.cache/yay/yaru/src/build/gtk/src/Yaru-blue-dark-blue-accent-color-info.scss:46 DEBUG: Contrast optimized accent is #006dd9 diff --git a/releng/airootfs/etc/skel/.themes/Yaru-blue/gnome-shell b/releng/airootfs/etc/skel/.themes/Yaru-blue/gnome-shell deleted file mode 120000 index 657a7cbc..00000000 --- a/releng/airootfs/etc/skel/.themes/Yaru-blue/gnome-shell +++ /dev/null @@ -1 +0,0 @@ -../../gnome-shell/theme/Yaru-blue \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru-blue/gtk-3.0/gtk.gresource b/releng/airootfs/etc/skel/.themes/Yaru-blue/gtk-3.0/gtk.gresource index 11cfb107..544f7170 100644 Binary files a/releng/airootfs/etc/skel/.themes/Yaru-blue/gtk-3.0/gtk.gresource and b/releng/airootfs/etc/skel/.themes/Yaru-blue/gtk-3.0/gtk.gresource differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-blue/gtk-4.0/gtk.gresource b/releng/airootfs/etc/skel/.themes/Yaru-blue/gtk-4.0/gtk.gresource index 72e4922e..f26756cb 100644 Binary files a/releng/airootfs/etc/skel/.themes/Yaru-blue/gtk-4.0/gtk.gresource and b/releng/airootfs/etc/skel/.themes/Yaru-blue/gtk-4.0/gtk.gresource differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-blue/index.theme b/releng/airootfs/etc/skel/.themes/Yaru-blue/index.theme index b370585c..edcd4947 100644 --- a/releng/airootfs/etc/skel/.themes/Yaru-blue/index.theme +++ b/releng/airootfs/etc/skel/.themes/Yaru-blue/index.theme @@ -13,4 +13,4 @@ CursorSize=24 X-Yaru-Dark=false X-Yaru-Accent-Name=blue X-Yaru-Accent-Color=#0073E5 -/home/t/yaru/src/build/gtk/src/Yaru-blue-blue-accent-color-info.scss:48 DEBUG: Contrast optimized accent is #369bff +/home/rave/.cache/yay/yaru/src/build/gtk/src/Yaru-blue-blue-accent-color-info.scss:46 DEBUG: Contrast optimized accent is #2a95ff diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/bottom-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/bottom-active.png new file mode 100644 index 00000000..ce7ea62b Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/bottom-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/bottom-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/bottom-inactive.png new file mode 100644 index 00000000..6a857635 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/bottom-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/bottom-left-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/bottom-left-active.png new file mode 100644 index 00000000..d235de5b Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/bottom-left-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/bottom-left-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/bottom-left-inactive.png new file mode 100644 index 00000000..b7ee1539 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/bottom-left-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/bottom-right-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/bottom-right-active.png new file mode 100644 index 00000000..b0732801 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/bottom-right-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/bottom-right-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/bottom-right-inactive.png new file mode 100644 index 00000000..3e71eba5 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/bottom-right-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/close-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/close-active.png new file mode 100644 index 00000000..a28857d8 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/close-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/close-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/close-inactive.png new file mode 100644 index 00000000..c2de7f64 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/close-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/close-prelight.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/close-prelight.png new file mode 100644 index 00000000..9f026eae Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/close-prelight.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/close-pressed.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/close-pressed.png new file mode 100644 index 00000000..ca72abcf Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/close-pressed.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/hide-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/hide-active.png new file mode 100644 index 00000000..f6262ba8 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/hide-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/hide-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/hide-inactive.png new file mode 100644 index 00000000..84bc1fa3 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/hide-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/hide-prelight.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/hide-prelight.png new file mode 100644 index 00000000..ecebbf3a Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/hide-prelight.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/hide-pressed.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/hide-pressed.png new file mode 100644 index 00000000..3f7dd61b Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/hide-pressed.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/left-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/left-active.png new file mode 100644 index 00000000..dae0486d Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/left-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/left-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/left-inactive.png new file mode 100644 index 00000000..3613d299 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/left-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/maximize-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/maximize-active.png new file mode 100644 index 00000000..cbc10567 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/maximize-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/maximize-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/maximize-inactive.png new file mode 100644 index 00000000..a71bbdaa Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/maximize-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/maximize-prelight.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/maximize-prelight.png new file mode 100644 index 00000000..2669ef87 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/maximize-prelight.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/maximize-pressed.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/maximize-pressed.png new file mode 100644 index 00000000..767adbe7 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/maximize-pressed.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/maximize-toggled-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/maximize-toggled-active.png new file mode 100644 index 00000000..112f98f0 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/maximize-toggled-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/maximize-toggled-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/maximize-toggled-inactive.png new file mode 100644 index 00000000..6e279a0c Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/maximize-toggled-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/maximize-toggled-prelight.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/maximize-toggled-prelight.png new file mode 100644 index 00000000..c66bffa9 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/maximize-toggled-prelight.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/maximize-toggled-pressed.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/maximize-toggled-pressed.png new file mode 100644 index 00000000..c2c2e7af Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/maximize-toggled-pressed.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/menu-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/menu-active.png new file mode 100644 index 00000000..98e6603d Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/menu-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/menu-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/menu-inactive.png new file mode 100644 index 00000000..90ec3472 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/menu-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/menu-prelight.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/menu-prelight.png new file mode 100644 index 00000000..9d499bd8 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/menu-prelight.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/menu-pressed.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/menu-pressed.png new file mode 100644 index 00000000..0a5da173 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/menu-pressed.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/right-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/right-active.png new file mode 100644 index 00000000..c6219260 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/right-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/right-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/right-inactive.png new file mode 100644 index 00000000..be4fa916 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/right-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/shade-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/shade-active.png new file mode 100644 index 00000000..0d9dc4f0 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/shade-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/shade-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/shade-inactive.png new file mode 100644 index 00000000..107350fa Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/shade-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/shade-prelight.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/shade-prelight.png new file mode 100644 index 00000000..0917c7b0 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/shade-prelight.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/shade-pressed.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/shade-pressed.png new file mode 100644 index 00000000..d6bd392e Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/shade-pressed.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/shade-toggled-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/shade-toggled-active.png new file mode 100644 index 00000000..951ab00f Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/shade-toggled-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/shade-toggled-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/shade-toggled-inactive.png new file mode 100644 index 00000000..22a56256 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/shade-toggled-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/shade-toggled-prelight.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/shade-toggled-prelight.png new file mode 100644 index 00000000..b96af7ef Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/shade-toggled-prelight.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/shade-toggled-pressed.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/shade-toggled-pressed.png new file mode 100644 index 00000000..0f50606e Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/shade-toggled-pressed.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/stick-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/stick-active.png new file mode 100644 index 00000000..68b70fda Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/stick-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/stick-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/stick-inactive.png new file mode 100644 index 00000000..858cff50 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/stick-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/stick-prelight.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/stick-prelight.png new file mode 100644 index 00000000..87188212 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/stick-prelight.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/stick-pressed.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/stick-pressed.png new file mode 100644 index 00000000..9e72566e Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/stick-pressed.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/stick-toggled-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/stick-toggled-active.png new file mode 100644 index 00000000..0946d502 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/stick-toggled-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/stick-toggled-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/stick-toggled-inactive.png new file mode 100644 index 00000000..0cf572d2 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/stick-toggled-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/stick-toggled-prelight.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/stick-toggled-prelight.png new file mode 100644 index 00000000..1337093e Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/stick-toggled-prelight.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/stick-toggled-pressed.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/stick-toggled-pressed.png new file mode 100644 index 00000000..e359cdc2 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/stick-toggled-pressed.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/themerc b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/themerc new file mode 100644 index 00000000..265eef50 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/themerc @@ -0,0 +1,23 @@ +# Default values can be found here: +# https://git.xfce.org/xfce/xfwm4/tree/defaults/defaults +# or +# /usr/share/xfwm4/defaults + +active_text_color=#e4e4e4 +active_text_shadow_color=#e4e4e4 +inactive_text_color=#a7a7a7 +inactive_text_shadow_color=#a7a7a7 +title_shadow_active=false +title_shadow_inactive=false +full_width_title=true +title_vertical_offset_active=0 +title_vertical_offset_inactive=0 +button_offset=4 +button_spacing=0 +shadow_delta_height=2 +shadow_delta_width=0 +shadow_delta_x=0 +shadow_delta_y=-10 +shadow_opacity=50 +show_app_icon=false +show_popup_shadow=true diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/title-1-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/title-1-active.png new file mode 100644 index 00000000..4e3091e6 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/title-1-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/title-1-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/title-1-inactive.png new file mode 100644 index 00000000..fe137568 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/title-1-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/title-2-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/title-2-active.png new file mode 100644 index 00000000..4e3091e6 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/title-2-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/title-2-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/title-2-inactive.png new file mode 100644 index 00000000..fe137568 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/title-2-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/title-3-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/title-3-active.png new file mode 100644 index 00000000..4e3091e6 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/title-3-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/title-3-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/title-3-inactive.png new file mode 100644 index 00000000..fe137568 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/title-3-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/title-4-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/title-4-active.png new file mode 100644 index 00000000..4e3091e6 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/title-4-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/title-4-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/title-4-inactive.png new file mode 100644 index 00000000..fe137568 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/title-4-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/title-5-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/title-5-active.png new file mode 100644 index 00000000..4e3091e6 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/title-5-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/title-5-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/title-5-inactive.png new file mode 100644 index 00000000..fe137568 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/title-5-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/top-left-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/top-left-active.png new file mode 100644 index 00000000..98f5d854 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/top-left-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/top-left-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/top-left-inactive.png new file mode 100644 index 00000000..f35a6173 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/top-left-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/top-right-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/top-right-active.png new file mode 100644 index 00000000..7b862952 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/top-right-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/top-right-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/top-right-inactive.png new file mode 100644 index 00000000..3d25e9a0 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-hdpi/xfwm4/top-right-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/bottom-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/bottom-active.png new file mode 100644 index 00000000..d184a879 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/bottom-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/bottom-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/bottom-inactive.png new file mode 100644 index 00000000..a5b785e4 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/bottom-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/bottom-left-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/bottom-left-active.png new file mode 100644 index 00000000..2854ecc8 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/bottom-left-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/bottom-left-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/bottom-left-inactive.png new file mode 100644 index 00000000..51615dd2 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/bottom-left-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/bottom-right-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/bottom-right-active.png new file mode 100644 index 00000000..c8d2f092 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/bottom-right-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/bottom-right-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/bottom-right-inactive.png new file mode 100644 index 00000000..3be8820d Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/bottom-right-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/close-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/close-active.png new file mode 100644 index 00000000..1b5addfa Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/close-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/close-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/close-inactive.png new file mode 100644 index 00000000..e1f44879 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/close-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/close-prelight.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/close-prelight.png new file mode 100644 index 00000000..03590347 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/close-prelight.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/close-pressed.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/close-pressed.png new file mode 100644 index 00000000..a7a9a4d1 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/close-pressed.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/hide-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/hide-active.png new file mode 100644 index 00000000..799f5e1e Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/hide-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/hide-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/hide-inactive.png new file mode 100644 index 00000000..954aaf32 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/hide-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/hide-prelight.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/hide-prelight.png new file mode 100644 index 00000000..158d1fa4 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/hide-prelight.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/hide-pressed.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/hide-pressed.png new file mode 100644 index 00000000..53179394 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/hide-pressed.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/left-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/left-active.png new file mode 100644 index 00000000..3b73b08d Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/left-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/left-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/left-inactive.png new file mode 100644 index 00000000..ce3aa8cc Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/left-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/maximize-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/maximize-active.png new file mode 100644 index 00000000..8e7628a7 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/maximize-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/maximize-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/maximize-inactive.png new file mode 100644 index 00000000..be62c670 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/maximize-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/maximize-prelight.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/maximize-prelight.png new file mode 100644 index 00000000..349f625f Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/maximize-prelight.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/maximize-pressed.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/maximize-pressed.png new file mode 100644 index 00000000..ad8c85a4 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/maximize-pressed.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/maximize-toggled-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/maximize-toggled-active.png new file mode 100644 index 00000000..8c5a5b0c Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/maximize-toggled-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/maximize-toggled-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/maximize-toggled-inactive.png new file mode 100644 index 00000000..0ad52d89 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/maximize-toggled-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/maximize-toggled-prelight.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/maximize-toggled-prelight.png new file mode 100644 index 00000000..4c75d9bd Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/maximize-toggled-prelight.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/maximize-toggled-pressed.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/maximize-toggled-pressed.png new file mode 100644 index 00000000..b53a7eca Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/maximize-toggled-pressed.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/menu-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/menu-active.png new file mode 100644 index 00000000..eacdb0b2 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/menu-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/menu-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/menu-inactive.png new file mode 100644 index 00000000..052d9dde Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/menu-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/menu-prelight.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/menu-prelight.png new file mode 100644 index 00000000..141d633b Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/menu-prelight.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/menu-pressed.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/menu-pressed.png new file mode 100644 index 00000000..bab35d10 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/menu-pressed.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/right-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/right-active.png new file mode 100644 index 00000000..68470b07 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/right-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/right-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/right-inactive.png new file mode 100644 index 00000000..14730181 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/right-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/shade-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/shade-active.png new file mode 100644 index 00000000..2c086272 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/shade-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/shade-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/shade-inactive.png new file mode 100644 index 00000000..35ee2dbf Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/shade-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/shade-prelight.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/shade-prelight.png new file mode 100644 index 00000000..d606e3b6 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/shade-prelight.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/shade-pressed.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/shade-pressed.png new file mode 100644 index 00000000..f7ac8645 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/shade-pressed.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/shade-toggled-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/shade-toggled-active.png new file mode 100644 index 00000000..5446358b Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/shade-toggled-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/shade-toggled-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/shade-toggled-inactive.png new file mode 100644 index 00000000..3b18a3e3 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/shade-toggled-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/shade-toggled-prelight.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/shade-toggled-prelight.png new file mode 100644 index 00000000..99d56ab8 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/shade-toggled-prelight.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/shade-toggled-pressed.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/shade-toggled-pressed.png new file mode 100644 index 00000000..65665af4 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/shade-toggled-pressed.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/stick-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/stick-active.png new file mode 100644 index 00000000..ae0213c6 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/stick-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/stick-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/stick-inactive.png new file mode 100644 index 00000000..f2527464 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/stick-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/stick-prelight.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/stick-prelight.png new file mode 100644 index 00000000..aed8d5d8 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/stick-prelight.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/stick-pressed.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/stick-pressed.png new file mode 100644 index 00000000..a2232524 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/stick-pressed.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/stick-toggled-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/stick-toggled-active.png new file mode 100644 index 00000000..1fd28530 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/stick-toggled-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/stick-toggled-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/stick-toggled-inactive.png new file mode 100644 index 00000000..9641b4f5 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/stick-toggled-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/stick-toggled-prelight.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/stick-toggled-prelight.png new file mode 100644 index 00000000..47fa6fa0 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/stick-toggled-prelight.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/stick-toggled-pressed.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/stick-toggled-pressed.png new file mode 100644 index 00000000..5b9e4509 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/stick-toggled-pressed.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/themerc b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/themerc new file mode 100644 index 00000000..265eef50 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/themerc @@ -0,0 +1,23 @@ +# Default values can be found here: +# https://git.xfce.org/xfce/xfwm4/tree/defaults/defaults +# or +# /usr/share/xfwm4/defaults + +active_text_color=#e4e4e4 +active_text_shadow_color=#e4e4e4 +inactive_text_color=#a7a7a7 +inactive_text_shadow_color=#a7a7a7 +title_shadow_active=false +title_shadow_inactive=false +full_width_title=true +title_vertical_offset_active=0 +title_vertical_offset_inactive=0 +button_offset=4 +button_spacing=0 +shadow_delta_height=2 +shadow_delta_width=0 +shadow_delta_x=0 +shadow_delta_y=-10 +shadow_opacity=50 +show_app_icon=false +show_popup_shadow=true diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/title-1-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/title-1-active.png new file mode 100644 index 00000000..2be85078 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/title-1-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/title-1-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/title-1-inactive.png new file mode 100644 index 00000000..a5dc1521 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/title-1-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/title-2-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/title-2-active.png new file mode 100644 index 00000000..2be85078 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/title-2-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/title-2-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/title-2-inactive.png new file mode 100644 index 00000000..a5dc1521 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/title-2-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/title-3-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/title-3-active.png new file mode 100644 index 00000000..2be85078 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/title-3-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/title-3-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/title-3-inactive.png new file mode 100644 index 00000000..a5dc1521 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/title-3-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/title-4-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/title-4-active.png new file mode 100644 index 00000000..2be85078 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/title-4-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/title-4-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/title-4-inactive.png new file mode 100644 index 00000000..a5dc1521 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/title-4-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/title-5-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/title-5-active.png new file mode 100644 index 00000000..2be85078 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/title-5-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/title-5-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/title-5-inactive.png new file mode 100644 index 00000000..a5dc1521 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/title-5-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/top-left-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/top-left-active.png new file mode 100644 index 00000000..d886c7b2 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/top-left-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/top-left-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/top-left-inactive.png new file mode 100644 index 00000000..54cebc2d Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/top-left-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/top-right-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/top-right-active.png new file mode 100644 index 00000000..3f6a6e3e Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/top-right-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/top-right-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/top-right-inactive.png new file mode 100644 index 00000000..a7d4b9f9 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark-xhdpi/xfwm4/top-right-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/close_focused_normal.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/close_focused_normal.svg new file mode 100644 index 00000000..7dce9696 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/close_focused_normal.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/close_focused_prelight.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/close_focused_prelight.svg new file mode 100644 index 00000000..173d4029 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/close_focused_prelight.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/close_focused_pressed.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/close_focused_pressed.svg new file mode 100644 index 00000000..30567257 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/close_focused_pressed.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/close_unfocused.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/close_unfocused.svg new file mode 100644 index 00000000..05e41dc6 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/close_unfocused.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/close_unfocused_prelight.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/close_unfocused_prelight.svg new file mode 100644 index 00000000..173d4029 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/close_unfocused_prelight.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/close_unfocused_pressed.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/close_unfocused_pressed.svg new file mode 100644 index 00000000..30567257 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/close_unfocused_pressed.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/maximize_focused_normal.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/maximize_focused_normal.svg new file mode 100644 index 00000000..dc40f38c --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/maximize_focused_normal.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/maximize_focused_prelight.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/maximize_focused_prelight.svg new file mode 100644 index 00000000..198a9c8d --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/maximize_focused_prelight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/maximize_focused_pressed.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/maximize_focused_pressed.svg new file mode 100644 index 00000000..f2595198 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/maximize_focused_pressed.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/maximize_unfocused.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/maximize_unfocused.svg new file mode 100644 index 00000000..a28ed1ba --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/maximize_unfocused.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/maximize_unfocused_prelight.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/maximize_unfocused_prelight.svg new file mode 100644 index 00000000..198a9c8d --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/maximize_unfocused_prelight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/maximize_unfocused_pressed.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/maximize_unfocused_pressed.svg new file mode 100644 index 00000000..f2595198 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/maximize_unfocused_pressed.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/menu_focused_normal.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/menu_focused_normal.svg new file mode 100644 index 00000000..c2872656 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/menu_focused_normal.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/menu_focused_prelight.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/menu_focused_prelight.svg new file mode 100644 index 00000000..0ae00425 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/menu_focused_prelight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/menu_focused_pressed.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/menu_focused_pressed.svg new file mode 100644 index 00000000..d5f99930 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/menu_focused_pressed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/menu_unfocused.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/menu_unfocused.svg new file mode 100644 index 00000000..9a7bf581 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/menu_unfocused.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/menu_unfocused_prelight.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/menu_unfocused_prelight.svg new file mode 100644 index 00000000..0ae00425 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/menu_unfocused_prelight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/menu_unfocused_pressed.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/menu_unfocused_pressed.svg new file mode 100644 index 00000000..d5f99930 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/menu_unfocused_pressed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/metacity-theme-1.xml b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/metacity-theme-1.xml new file mode 100644 index 00000000..8dc51085 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/metacity-theme-1.xml @@ -0,0 +1,1472 @@ + + + + Yaru-dark + Martin Wimpress + Martin Wimpress, 2021-2022 + March 24, 2022 + Yaru-dark Metacity (Marco) Theme + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/metacity-theme-2.xml b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/metacity-theme-2.xml new file mode 120000 index 00000000..84bdbf0a --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/metacity-theme-2.xml @@ -0,0 +1 @@ +metacity-theme-1.xml \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/metacity-theme-3.xml b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/metacity-theme-3.xml new file mode 120000 index 00000000..84bdbf0a --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/metacity-theme-3.xml @@ -0,0 +1 @@ +metacity-theme-1.xml \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/minimize_focused_normal.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/minimize_focused_normal.svg new file mode 100644 index 00000000..599667c9 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/minimize_focused_normal.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/minimize_focused_prelight.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/minimize_focused_prelight.svg new file mode 100644 index 00000000..6d273132 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/minimize_focused_prelight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/minimize_focused_pressed.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/minimize_focused_pressed.svg new file mode 100644 index 00000000..d18e6c5f --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/minimize_focused_pressed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/minimize_unfocused.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/minimize_unfocused.svg new file mode 100644 index 00000000..b9f89552 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/minimize_unfocused.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/minimize_unfocused_prelight.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/minimize_unfocused_prelight.svg new file mode 100644 index 00000000..6d273132 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/minimize_unfocused_prelight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/minimize_unfocused_pressed.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/minimize_unfocused_pressed.svg new file mode 100644 index 00000000..d18e6c5f --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/minimize_unfocused_pressed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/unmaximize_focused_normal.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/unmaximize_focused_normal.svg new file mode 100644 index 00000000..b797d040 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/unmaximize_focused_normal.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/unmaximize_focused_prelight.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/unmaximize_focused_prelight.svg new file mode 100644 index 00000000..9fae6d9c --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/unmaximize_focused_prelight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/unmaximize_focused_pressed.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/unmaximize_focused_pressed.svg new file mode 100644 index 00000000..32ece61c --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/unmaximize_focused_pressed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/unmaximize_unfocused.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/unmaximize_unfocused.svg new file mode 100644 index 00000000..ccdff9c7 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/unmaximize_unfocused.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/unmaximize_unfocused_prelight.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/unmaximize_unfocused_prelight.svg new file mode 100644 index 00000000..9fae6d9c --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/unmaximize_unfocused_prelight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/unmaximize_unfocused_pressed.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/unmaximize_unfocused_pressed.svg new file mode 100644 index 00000000..32ece61c --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/metacity-1/unmaximize_unfocused_pressed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/close.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/close.svg new file mode 100644 index 00000000..0439309d --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/close.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/close_dash.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/close_dash.svg new file mode 100644 index 00000000..0439309d --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/close_dash.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/close_dash_disabled.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/close_dash_disabled.svg new file mode 100644 index 00000000..371a9be0 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/close_dash_disabled.svg @@ -0,0 +1,4 @@ + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/close_dash_prelight.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/close_dash_prelight.svg new file mode 100644 index 00000000..4d3cdcbd --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/close_dash_prelight.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/close_dash_pressed.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/close_dash_pressed.svg new file mode 100644 index 00000000..30567257 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/close_dash_pressed.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/close_focused_normal.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/close_focused_normal.svg new file mode 100644 index 00000000..0439309d --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/close_focused_normal.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/close_focused_prelight.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/close_focused_prelight.svg new file mode 100644 index 00000000..4d3cdcbd --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/close_focused_prelight.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/close_focused_pressed.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/close_focused_pressed.svg new file mode 100644 index 00000000..30567257 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/close_focused_pressed.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/close_unfocused.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/close_unfocused.svg new file mode 100644 index 00000000..4f1bd1a6 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/close_unfocused.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/close_unfocused_prelight.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/close_unfocused_prelight.svg new file mode 100644 index 00000000..4d3cdcbd --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/close_unfocused_prelight.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/close_unfocused_pressed.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/close_unfocused_pressed.svg new file mode 100644 index 00000000..30567257 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/close_unfocused_pressed.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/launcher_icon_back_150.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/launcher_icon_back_150.svg new file mode 100644 index 00000000..65c4a78a --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/launcher_icon_back_150.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/launcher_icon_back_54.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/launcher_icon_back_54.svg new file mode 100644 index 00000000..fb6e75aa --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/launcher_icon_back_54.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/launcher_icon_edge_150.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/launcher_icon_edge_150.svg new file mode 100644 index 00000000..f38d5d9c --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/launcher_icon_edge_150.svg @@ -0,0 +1 @@ + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/launcher_icon_edge_54.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/launcher_icon_edge_54.svg new file mode 100644 index 00000000..f2e47381 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/launcher_icon_edge_54.svg @@ -0,0 +1 @@ + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/launcher_icon_glow_200.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/launcher_icon_glow_200.svg new file mode 100644 index 00000000..60f97ff4 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/launcher_icon_glow_200.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/launcher_icon_glow_62.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/launcher_icon_glow_62.svg new file mode 100644 index 00000000..18a62a1b --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/launcher_icon_glow_62.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/launcher_icon_selected_back_150.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/launcher_icon_selected_back_150.svg new file mode 100644 index 00000000..65c7f229 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/launcher_icon_selected_back_150.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/launcher_icon_selected_back_54.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/launcher_icon_selected_back_54.svg new file mode 100644 index 00000000..fb6e75aa --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/launcher_icon_selected_back_54.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/launcher_icon_shadow_200.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/launcher_icon_shadow_200.svg new file mode 100644 index 00000000..820dca00 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/launcher_icon_shadow_200.svg @@ -0,0 +1 @@ + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/launcher_icon_shadow_62.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/launcher_icon_shadow_62.svg new file mode 100644 index 00000000..35d2f72e --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/launcher_icon_shadow_62.svg @@ -0,0 +1 @@ + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/launcher_icon_shine_150.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/launcher_icon_shine_150.svg new file mode 100644 index 00000000..a795586d --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/launcher_icon_shine_150.svg @@ -0,0 +1 @@ + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/launcher_icon_shine_54.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/launcher_icon_shine_54.svg new file mode 100644 index 00000000..70f7e898 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/launcher_icon_shine_54.svg @@ -0,0 +1 @@ + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/maximize.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/maximize.svg new file mode 100644 index 00000000..d7c045fb --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/maximize.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/maximize_dash.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/maximize_dash.svg new file mode 100644 index 00000000..48da7a81 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/maximize_dash.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/maximize_dash_disabled.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/maximize_dash_disabled.svg new file mode 100644 index 00000000..7677f90f --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/maximize_dash_disabled.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/maximize_dash_prelight.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/maximize_dash_prelight.svg new file mode 100644 index 00000000..4848edda --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/maximize_dash_prelight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/maximize_dash_pressed.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/maximize_dash_pressed.svg new file mode 100644 index 00000000..f2595198 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/maximize_dash_pressed.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/maximize_focused_normal.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/maximize_focused_normal.svg new file mode 100644 index 00000000..d7c045fb --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/maximize_focused_normal.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/maximize_focused_prelight.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/maximize_focused_prelight.svg new file mode 100644 index 00000000..4848edda --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/maximize_focused_prelight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/maximize_focused_pressed.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/maximize_focused_pressed.svg new file mode 100644 index 00000000..f2595198 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/maximize_focused_pressed.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/maximize_unfocused.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/maximize_unfocused.svg new file mode 100644 index 00000000..16d0568c --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/maximize_unfocused.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/maximize_unfocused_prelight.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/maximize_unfocused_prelight.svg new file mode 100644 index 00000000..4848edda --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/maximize_unfocused_prelight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/maximize_unfocused_pressed.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/maximize_unfocused_pressed.svg new file mode 100644 index 00000000..f2595198 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/maximize_unfocused_pressed.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/minimize.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/minimize.svg new file mode 100644 index 00000000..e00dec44 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/minimize.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/minimize_dash.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/minimize_dash.svg new file mode 100644 index 00000000..f544f776 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/minimize_dash.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/minimize_dash_disabled.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/minimize_dash_disabled.svg new file mode 100644 index 00000000..a1776bae --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/minimize_dash_disabled.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/minimize_dash_prelight.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/minimize_dash_prelight.svg new file mode 100644 index 00000000..de0b21a3 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/minimize_dash_prelight.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/minimize_dash_pressed.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/minimize_dash_pressed.svg new file mode 100644 index 00000000..d18e6c5f --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/minimize_dash_pressed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/minimize_focused_normal.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/minimize_focused_normal.svg new file mode 100644 index 00000000..e00dec44 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/minimize_focused_normal.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/minimize_focused_prelight.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/minimize_focused_prelight.svg new file mode 100644 index 00000000..de0b21a3 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/minimize_focused_prelight.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/minimize_focused_pressed.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/minimize_focused_pressed.svg new file mode 100644 index 00000000..d18e6c5f --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/minimize_focused_pressed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/minimize_unfocused.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/minimize_unfocused.svg new file mode 100644 index 00000000..db8a8b53 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/minimize_unfocused.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/minimize_unfocused_prelight.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/minimize_unfocused_prelight.svg new file mode 100644 index 00000000..de0b21a3 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/minimize_unfocused_prelight.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/minimize_unfocused_pressed.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/minimize_unfocused_pressed.svg new file mode 100644 index 00000000..d18e6c5f --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/minimize_unfocused_pressed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/sheet_style_close_focused.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/sheet_style_close_focused.svg new file mode 100644 index 00000000..0439309d --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/sheet_style_close_focused.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/sheet_style_close_focused_prelight.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/sheet_style_close_focused_prelight.svg new file mode 100644 index 00000000..4d3cdcbd --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/sheet_style_close_focused_prelight.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/sheet_style_close_focused_pressed.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/sheet_style_close_focused_pressed.svg new file mode 100644 index 00000000..30567257 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/sheet_style_close_focused_pressed.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/unmaximize.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/unmaximize.svg new file mode 100644 index 00000000..f0f9f08c --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/unmaximize.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/unmaximize_dash.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/unmaximize_dash.svg new file mode 100644 index 00000000..002db0d2 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/unmaximize_dash.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/unmaximize_dash_disabled.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/unmaximize_dash_disabled.svg new file mode 100644 index 00000000..5822759f --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/unmaximize_dash_disabled.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/unmaximize_dash_prelight.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/unmaximize_dash_prelight.svg new file mode 100644 index 00000000..9217a638 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/unmaximize_dash_prelight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/unmaximize_dash_pressed.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/unmaximize_dash_pressed.svg new file mode 100644 index 00000000..32ece61c --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/unmaximize_dash_pressed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/unmaximize_focused_normal.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/unmaximize_focused_normal.svg new file mode 100644 index 00000000..f0f9f08c --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/unmaximize_focused_normal.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/unmaximize_focused_prelight.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/unmaximize_focused_prelight.svg new file mode 100644 index 00000000..9217a638 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/unmaximize_focused_prelight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/unmaximize_focused_pressed.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/unmaximize_focused_pressed.svg new file mode 100644 index 00000000..32ece61c --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/unmaximize_focused_pressed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/unmaximize_unfocused.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/unmaximize_unfocused.svg new file mode 100644 index 00000000..8c54d9ba --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/unmaximize_unfocused.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/unmaximize_unfocused_prelight.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/unmaximize_unfocused_prelight.svg new file mode 100644 index 00000000..9217a638 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/unmaximize_unfocused_prelight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/unmaximize_unfocused_pressed.svg b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/unmaximize_unfocused_pressed.svg new file mode 100644 index 00000000..32ece61c --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/unity/unmaximize_unfocused_pressed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/bottom-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/bottom-active.png new file mode 100644 index 00000000..93fa1f65 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/bottom-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/bottom-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/bottom-inactive.png new file mode 100644 index 00000000..64c2a3b3 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/bottom-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/bottom-left-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/bottom-left-active.png new file mode 100644 index 00000000..63f75e10 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/bottom-left-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/bottom-left-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/bottom-left-inactive.png new file mode 100644 index 00000000..bb0fcee4 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/bottom-left-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/bottom-right-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/bottom-right-active.png new file mode 100644 index 00000000..4bb1607a Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/bottom-right-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/bottom-right-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/bottom-right-inactive.png new file mode 100644 index 00000000..9e7ab603 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/bottom-right-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/close-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/close-active.png new file mode 100644 index 00000000..077e5914 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/close-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/close-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/close-inactive.png new file mode 100644 index 00000000..2aaa883f Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/close-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/close-prelight.png b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/close-prelight.png new file mode 100644 index 00000000..581093aa Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/close-prelight.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/close-pressed.png b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/close-pressed.png new file mode 100644 index 00000000..01dcdb12 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/close-pressed.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/hide-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/hide-active.png new file mode 100644 index 00000000..951957ab Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/hide-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/hide-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/hide-inactive.png new file mode 100644 index 00000000..1225d206 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/hide-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/hide-prelight.png b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/hide-prelight.png new file mode 100644 index 00000000..95735826 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/hide-prelight.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/hide-pressed.png b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/hide-pressed.png new file mode 100644 index 00000000..2597a8ff Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/hide-pressed.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/left-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/left-active.png new file mode 100644 index 00000000..96c8e893 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/left-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/left-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/left-inactive.png new file mode 100644 index 00000000..6044f976 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/left-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/maximize-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/maximize-active.png new file mode 100644 index 00000000..15d1bb4f Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/maximize-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/maximize-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/maximize-inactive.png new file mode 100644 index 00000000..25519561 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/maximize-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/maximize-prelight.png b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/maximize-prelight.png new file mode 100644 index 00000000..76f3aea3 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/maximize-prelight.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/maximize-pressed.png b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/maximize-pressed.png new file mode 100644 index 00000000..0a82f2cb Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/maximize-pressed.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/maximize-toggled-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/maximize-toggled-active.png new file mode 100644 index 00000000..915ca2a1 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/maximize-toggled-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/maximize-toggled-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/maximize-toggled-inactive.png new file mode 100644 index 00000000..5b317c09 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/maximize-toggled-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/maximize-toggled-prelight.png b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/maximize-toggled-prelight.png new file mode 100644 index 00000000..97c5b3bb Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/maximize-toggled-prelight.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/maximize-toggled-pressed.png b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/maximize-toggled-pressed.png new file mode 100644 index 00000000..8fde732f Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/maximize-toggled-pressed.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/menu-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/menu-active.png new file mode 100644 index 00000000..24497b38 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/menu-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/menu-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/menu-inactive.png new file mode 100644 index 00000000..fc1e93b3 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/menu-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/menu-prelight.png b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/menu-prelight.png new file mode 100644 index 00000000..950e1379 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/menu-prelight.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/menu-pressed.png b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/menu-pressed.png new file mode 100644 index 00000000..68646650 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/menu-pressed.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/right-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/right-active.png new file mode 100644 index 00000000..060b9ccf Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/right-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/right-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/right-inactive.png new file mode 100644 index 00000000..415137ba Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/right-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/shade-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/shade-active.png new file mode 100644 index 00000000..c56a96a8 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/shade-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/shade-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/shade-inactive.png new file mode 100644 index 00000000..76fb0fd0 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/shade-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/shade-prelight.png b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/shade-prelight.png new file mode 100644 index 00000000..88892cb2 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/shade-prelight.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/shade-pressed.png b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/shade-pressed.png new file mode 100644 index 00000000..a6404187 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/shade-pressed.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/shade-toggled-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/shade-toggled-active.png new file mode 100644 index 00000000..b2f2a4de Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/shade-toggled-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/shade-toggled-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/shade-toggled-inactive.png new file mode 100644 index 00000000..31390ae2 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/shade-toggled-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/shade-toggled-prelight.png b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/shade-toggled-prelight.png new file mode 100644 index 00000000..316c6b5a Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/shade-toggled-prelight.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/shade-toggled-pressed.png b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/shade-toggled-pressed.png new file mode 100644 index 00000000..788db426 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/shade-toggled-pressed.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/stick-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/stick-active.png new file mode 100644 index 00000000..8ede3175 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/stick-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/stick-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/stick-inactive.png new file mode 100644 index 00000000..e1da560b Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/stick-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/stick-prelight.png b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/stick-prelight.png new file mode 100644 index 00000000..59eb1eb5 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/stick-prelight.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/stick-pressed.png b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/stick-pressed.png new file mode 100644 index 00000000..28dd3cf7 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/stick-pressed.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/stick-toggled-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/stick-toggled-active.png new file mode 100644 index 00000000..d54709ec Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/stick-toggled-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/stick-toggled-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/stick-toggled-inactive.png new file mode 100644 index 00000000..ed98f76a Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/stick-toggled-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/stick-toggled-prelight.png b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/stick-toggled-prelight.png new file mode 100644 index 00000000..947898b0 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/stick-toggled-prelight.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/stick-toggled-pressed.png b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/stick-toggled-pressed.png new file mode 100644 index 00000000..ccd7a1cd Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/stick-toggled-pressed.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/themerc b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/themerc new file mode 100644 index 00000000..265eef50 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/themerc @@ -0,0 +1,23 @@ +# Default values can be found here: +# https://git.xfce.org/xfce/xfwm4/tree/defaults/defaults +# or +# /usr/share/xfwm4/defaults + +active_text_color=#e4e4e4 +active_text_shadow_color=#e4e4e4 +inactive_text_color=#a7a7a7 +inactive_text_shadow_color=#a7a7a7 +title_shadow_active=false +title_shadow_inactive=false +full_width_title=true +title_vertical_offset_active=0 +title_vertical_offset_inactive=0 +button_offset=4 +button_spacing=0 +shadow_delta_height=2 +shadow_delta_width=0 +shadow_delta_x=0 +shadow_delta_y=-10 +shadow_opacity=50 +show_app_icon=false +show_popup_shadow=true diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/title-1-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/title-1-active.png new file mode 100644 index 00000000..4846d891 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/title-1-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/title-1-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/title-1-inactive.png new file mode 100644 index 00000000..cacd17b9 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/title-1-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/title-2-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/title-2-active.png new file mode 100644 index 00000000..4846d891 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/title-2-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/title-2-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/title-2-inactive.png new file mode 100644 index 00000000..cacd17b9 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/title-2-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/title-3-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/title-3-active.png new file mode 100644 index 00000000..4846d891 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/title-3-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/title-3-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/title-3-inactive.png new file mode 100644 index 00000000..cacd17b9 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/title-3-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/title-4-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/title-4-active.png new file mode 100644 index 00000000..4846d891 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/title-4-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/title-4-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/title-4-inactive.png new file mode 100644 index 00000000..cacd17b9 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/title-4-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/title-5-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/title-5-active.png new file mode 100644 index 00000000..4846d891 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/title-5-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/title-5-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/title-5-inactive.png new file mode 100644 index 00000000..cacd17b9 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/title-5-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/top-left-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/top-left-active.png new file mode 100644 index 00000000..aa9a3a8f Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/top-left-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/top-left-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/top-left-inactive.png new file mode 100644 index 00000000..17aef7d6 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/top-left-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/top-right-active.png b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/top-right-active.png new file mode 100644 index 00000000..0171011a Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/top-right-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/top-right-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/top-right-inactive.png new file mode 100644 index 00000000..9afc8d89 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-dark/xfwm4/top-right-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/bottom-active.png b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/bottom-active.png new file mode 100644 index 00000000..57ccd4b0 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/bottom-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/bottom-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/bottom-inactive.png new file mode 100644 index 00000000..e096d42f Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/bottom-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/bottom-left-active.png b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/bottom-left-active.png new file mode 100644 index 00000000..59856215 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/bottom-left-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/bottom-left-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/bottom-left-inactive.png new file mode 100644 index 00000000..d69f6bd8 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/bottom-left-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/bottom-right-active.png b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/bottom-right-active.png new file mode 100644 index 00000000..c456b6bc Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/bottom-right-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/bottom-right-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/bottom-right-inactive.png new file mode 100644 index 00000000..f6a263de Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/bottom-right-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/close-active.png b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/close-active.png new file mode 100644 index 00000000..ba51ffc0 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/close-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/close-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/close-inactive.png new file mode 100644 index 00000000..d17e05ed Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/close-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/close-prelight.png b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/close-prelight.png new file mode 100644 index 00000000..00398d74 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/close-prelight.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/close-pressed.png b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/close-pressed.png new file mode 100644 index 00000000..1a43c432 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/close-pressed.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/hide-active.png b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/hide-active.png new file mode 100644 index 00000000..248fef8d Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/hide-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/hide-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/hide-inactive.png new file mode 100644 index 00000000..d47bf430 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/hide-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/hide-prelight.png b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/hide-prelight.png new file mode 100644 index 00000000..9d0ab5e4 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/hide-prelight.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/hide-pressed.png b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/hide-pressed.png new file mode 100644 index 00000000..383a7bde Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/hide-pressed.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/left-active.png b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/left-active.png new file mode 100644 index 00000000..44000231 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/left-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/left-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/left-inactive.png new file mode 100644 index 00000000..592700da Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/left-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/maximize-active.png b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/maximize-active.png new file mode 100644 index 00000000..2c7467c6 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/maximize-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/maximize-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/maximize-inactive.png new file mode 100644 index 00000000..1824786c Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/maximize-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/maximize-prelight.png b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/maximize-prelight.png new file mode 100644 index 00000000..c54d70b8 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/maximize-prelight.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/maximize-pressed.png b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/maximize-pressed.png new file mode 100644 index 00000000..ef63dfa7 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/maximize-pressed.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/maximize-toggled-active.png b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/maximize-toggled-active.png new file mode 100644 index 00000000..97bc05dd Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/maximize-toggled-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/maximize-toggled-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/maximize-toggled-inactive.png new file mode 100644 index 00000000..4b0fb909 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/maximize-toggled-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/maximize-toggled-prelight.png b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/maximize-toggled-prelight.png new file mode 100644 index 00000000..c48d91a0 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/maximize-toggled-prelight.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/maximize-toggled-pressed.png b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/maximize-toggled-pressed.png new file mode 100644 index 00000000..aa8afb78 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/maximize-toggled-pressed.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/menu-active.png b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/menu-active.png new file mode 100644 index 00000000..af009f39 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/menu-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/menu-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/menu-inactive.png new file mode 100644 index 00000000..5b089ef8 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/menu-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/menu-prelight.png b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/menu-prelight.png new file mode 100644 index 00000000..c141eb44 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/menu-prelight.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/menu-pressed.png b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/menu-pressed.png new file mode 100644 index 00000000..a43cb4da Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/menu-pressed.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/right-active.png b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/right-active.png new file mode 100644 index 00000000..f226f98d Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/right-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/right-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/right-inactive.png new file mode 100644 index 00000000..5971d008 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/right-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/shade-active.png b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/shade-active.png new file mode 100644 index 00000000..15c69c91 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/shade-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/shade-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/shade-inactive.png new file mode 100644 index 00000000..8d6581b7 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/shade-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/shade-prelight.png b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/shade-prelight.png new file mode 100644 index 00000000..dd891a7a Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/shade-prelight.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/shade-pressed.png b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/shade-pressed.png new file mode 100644 index 00000000..3d0de89b Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/shade-pressed.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/shade-toggled-active.png b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/shade-toggled-active.png new file mode 100644 index 00000000..b90a82cf Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/shade-toggled-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/shade-toggled-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/shade-toggled-inactive.png new file mode 100644 index 00000000..8efda49b Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/shade-toggled-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/shade-toggled-prelight.png b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/shade-toggled-prelight.png new file mode 100644 index 00000000..2febba07 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/shade-toggled-prelight.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/shade-toggled-pressed.png b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/shade-toggled-pressed.png new file mode 100644 index 00000000..20d9a2be Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/shade-toggled-pressed.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/stick-active.png b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/stick-active.png new file mode 100644 index 00000000..1db5c81f Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/stick-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/stick-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/stick-inactive.png new file mode 100644 index 00000000..a7ece548 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/stick-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/stick-prelight.png b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/stick-prelight.png new file mode 100644 index 00000000..39e75af2 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/stick-prelight.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/stick-pressed.png b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/stick-pressed.png new file mode 100644 index 00000000..8d262339 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/stick-pressed.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/stick-toggled-active.png b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/stick-toggled-active.png new file mode 100644 index 00000000..482fb4ad Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/stick-toggled-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/stick-toggled-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/stick-toggled-inactive.png new file mode 100644 index 00000000..37e020c3 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/stick-toggled-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/stick-toggled-prelight.png b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/stick-toggled-prelight.png new file mode 100644 index 00000000..671ccff6 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/stick-toggled-prelight.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/stick-toggled-pressed.png b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/stick-toggled-pressed.png new file mode 100644 index 00000000..16db3107 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/stick-toggled-pressed.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/themerc b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/themerc new file mode 100644 index 00000000..8e5e9da5 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/themerc @@ -0,0 +1,24 @@ +# Default values can be found here: +# https://git.xfce.org/xfce/xfwm4/tree/defaults/defaults +# or +# /usr/share/xfwm4/defaults + +active_text_color=#1d1d1d +active_text_shadow_color=#1d1d1d +inactive_text_color=#565656 +inactive_text_shadow_color=#565656 +title_shadow_active=false +title_shadow_inactive=false +full_width_title=true +title_vertical_offset_active=0 +title_vertical_offset_inactive=0 +button_offset=4 +maximized_offset=4 +button_spacing=0 +shadow_delta_height=2 +shadow_delta_width=0 +shadow_delta_x=0 +shadow_delta_y=-10 +shadow_opacity=50 +show_app_icon=false +show_popup_shadow=true diff --git a/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/title-1-active.png b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/title-1-active.png new file mode 100644 index 00000000..7eb90754 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/title-1-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/title-1-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/title-1-inactive.png new file mode 100644 index 00000000..f5a3bda2 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/title-1-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/title-2-active.png b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/title-2-active.png new file mode 100644 index 00000000..7eb90754 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/title-2-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/title-2-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/title-2-inactive.png new file mode 100644 index 00000000..f5a3bda2 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/title-2-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/title-3-active.png b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/title-3-active.png new file mode 100644 index 00000000..7eb90754 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/title-3-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/title-3-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/title-3-inactive.png new file mode 100644 index 00000000..f5a3bda2 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/title-3-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/title-4-active.png b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/title-4-active.png new file mode 100644 index 00000000..7eb90754 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/title-4-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/title-4-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/title-4-inactive.png new file mode 100644 index 00000000..f5a3bda2 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/title-4-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/title-5-active.png b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/title-5-active.png new file mode 100644 index 00000000..7eb90754 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/title-5-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/title-5-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/title-5-inactive.png new file mode 100644 index 00000000..f5a3bda2 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/title-5-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/top-left-active.png b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/top-left-active.png new file mode 100644 index 00000000..4ab0982d Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/top-left-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/top-left-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/top-left-inactive.png new file mode 100644 index 00000000..f1f5f0d8 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/top-left-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/top-right-active.png b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/top-right-active.png new file mode 100644 index 00000000..47f5911d Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/top-right-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/top-right-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/top-right-inactive.png new file mode 100644 index 00000000..81aacd83 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-hdpi/xfwm4/top-right-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-magenta-dark/gnome-shell b/releng/airootfs/etc/skel/.themes/Yaru-magenta-dark/gnome-shell deleted file mode 120000 index 5abb035d..00000000 --- a/releng/airootfs/etc/skel/.themes/Yaru-magenta-dark/gnome-shell +++ /dev/null @@ -1 +0,0 @@ -../../gnome-shell/theme/Yaru-magenta-dark \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru-magenta-dark/gtk-3.0/gtk.gresource b/releng/airootfs/etc/skel/.themes/Yaru-magenta-dark/gtk-3.0/gtk.gresource index 84c12a14..b0bbc3bb 100644 Binary files a/releng/airootfs/etc/skel/.themes/Yaru-magenta-dark/gtk-3.0/gtk.gresource and b/releng/airootfs/etc/skel/.themes/Yaru-magenta-dark/gtk-3.0/gtk.gresource differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-magenta-dark/gtk-4.0/gtk.gresource b/releng/airootfs/etc/skel/.themes/Yaru-magenta-dark/gtk-4.0/gtk.gresource index 867c9808..9de764c8 100644 Binary files a/releng/airootfs/etc/skel/.themes/Yaru-magenta-dark/gtk-4.0/gtk.gresource and b/releng/airootfs/etc/skel/.themes/Yaru-magenta-dark/gtk-4.0/gtk.gresource differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-magenta-dark/index.theme b/releng/airootfs/etc/skel/.themes/Yaru-magenta-dark/index.theme index 527ab69f..27149060 100644 --- a/releng/airootfs/etc/skel/.themes/Yaru-magenta-dark/index.theme +++ b/releng/airootfs/etc/skel/.themes/Yaru-magenta-dark/index.theme @@ -13,4 +13,4 @@ CursorSize=24 X-Yaru-Dark=true X-Yaru-Accent-Name=magenta X-Yaru-Accent-Color=#B34CB3 -/home/t/yaru/src/build/gtk/src/Yaru-magenta-dark-magenta-accent-color-info.scss:48 DEBUG: Contrast optimized accent is #b04bb0 +/home/rave/.cache/yay/yaru/src/build/gtk/src/Yaru-magenta-dark-magenta-accent-color-info.scss:46 DEBUG: Contrast optimized accent is #a948a9 diff --git a/releng/airootfs/etc/skel/.themes/Yaru-magenta/gnome-shell b/releng/airootfs/etc/skel/.themes/Yaru-magenta/gnome-shell deleted file mode 120000 index 0e09dc85..00000000 --- a/releng/airootfs/etc/skel/.themes/Yaru-magenta/gnome-shell +++ /dev/null @@ -1 +0,0 @@ -../../gnome-shell/theme/Yaru-magenta \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru-magenta/gtk-3.0/gtk.gresource b/releng/airootfs/etc/skel/.themes/Yaru-magenta/gtk-3.0/gtk.gresource index e184aba5..cfe41d84 100644 Binary files a/releng/airootfs/etc/skel/.themes/Yaru-magenta/gtk-3.0/gtk.gresource and b/releng/airootfs/etc/skel/.themes/Yaru-magenta/gtk-3.0/gtk.gresource differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-magenta/gtk-4.0/gtk.gresource b/releng/airootfs/etc/skel/.themes/Yaru-magenta/gtk-4.0/gtk.gresource index 998f44fa..c7c4164b 100644 Binary files a/releng/airootfs/etc/skel/.themes/Yaru-magenta/gtk-4.0/gtk.gresource and b/releng/airootfs/etc/skel/.themes/Yaru-magenta/gtk-4.0/gtk.gresource differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-magenta/index.theme b/releng/airootfs/etc/skel/.themes/Yaru-magenta/index.theme index f1d67236..a6149b1a 100644 --- a/releng/airootfs/etc/skel/.themes/Yaru-magenta/index.theme +++ b/releng/airootfs/etc/skel/.themes/Yaru-magenta/index.theme @@ -13,4 +13,4 @@ CursorSize=24 X-Yaru-Dark=false X-Yaru-Accent-Name=magenta X-Yaru-Accent-Color=#B34CB3 -/home/t/yaru/src/build/gtk/src/Yaru-magenta-magenta-accent-color-info.scss:48 DEBUG: Contrast optimized accent is #c87ec8 +/home/rave/.cache/yay/yaru/src/build/gtk/src/Yaru-magenta-magenta-accent-color-info.scss:46 DEBUG: Contrast optimized accent is #c577c5 diff --git a/releng/airootfs/etc/skel/.themes/Yaru-olive-dark/gnome-shell b/releng/airootfs/etc/skel/.themes/Yaru-olive-dark/gnome-shell deleted file mode 120000 index 3cb2362c..00000000 --- a/releng/airootfs/etc/skel/.themes/Yaru-olive-dark/gnome-shell +++ /dev/null @@ -1 +0,0 @@ -../../gnome-shell/theme/Yaru-olive-dark \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru-olive-dark/gtk-3.0/gtk.gresource b/releng/airootfs/etc/skel/.themes/Yaru-olive-dark/gtk-3.0/gtk.gresource index 9abd337d..2232063e 100644 Binary files a/releng/airootfs/etc/skel/.themes/Yaru-olive-dark/gtk-3.0/gtk.gresource and b/releng/airootfs/etc/skel/.themes/Yaru-olive-dark/gtk-3.0/gtk.gresource differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-olive-dark/gtk-4.0/gtk.gresource b/releng/airootfs/etc/skel/.themes/Yaru-olive-dark/gtk-4.0/gtk.gresource index 2dce2b85..17319801 100644 Binary files a/releng/airootfs/etc/skel/.themes/Yaru-olive-dark/gtk-4.0/gtk.gresource and b/releng/airootfs/etc/skel/.themes/Yaru-olive-dark/gtk-4.0/gtk.gresource differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-olive-dark/index.theme b/releng/airootfs/etc/skel/.themes/Yaru-olive-dark/index.theme index 24baffa2..eb5bbf09 100644 --- a/releng/airootfs/etc/skel/.themes/Yaru-olive-dark/index.theme +++ b/releng/airootfs/etc/skel/.themes/Yaru-olive-dark/index.theme @@ -13,4 +13,4 @@ CursorSize=24 X-Yaru-Dark=true X-Yaru-Accent-Name=olive X-Yaru-Accent-Color=#4B8501 -/home/t/yaru/src/build/gtk/src/Yaru-olive-dark-olive-accent-color-info.scss:48 DEBUG: Contrast optimized accent is #498101 +/home/rave/.cache/yay/yaru/src/build/gtk/src/Yaru-olive-dark-olive-accent-color-info.scss:46 DEBUG: Contrast optimized accent is #467c01 diff --git a/releng/airootfs/etc/skel/.themes/Yaru-olive/gnome-shell b/releng/airootfs/etc/skel/.themes/Yaru-olive/gnome-shell deleted file mode 120000 index d46b798f..00000000 --- a/releng/airootfs/etc/skel/.themes/Yaru-olive/gnome-shell +++ /dev/null @@ -1 +0,0 @@ -../../gnome-shell/theme/Yaru-olive \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru-olive/gtk-3.0/gtk.gresource b/releng/airootfs/etc/skel/.themes/Yaru-olive/gtk-3.0/gtk.gresource index 41ec9142..8988267d 100644 Binary files a/releng/airootfs/etc/skel/.themes/Yaru-olive/gtk-3.0/gtk.gresource and b/releng/airootfs/etc/skel/.themes/Yaru-olive/gtk-3.0/gtk.gresource differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-olive/gtk-4.0/gtk.gresource b/releng/airootfs/etc/skel/.themes/Yaru-olive/gtk-4.0/gtk.gresource index cc27ed2e..7b021370 100644 Binary files a/releng/airootfs/etc/skel/.themes/Yaru-olive/gtk-4.0/gtk.gresource and b/releng/airootfs/etc/skel/.themes/Yaru-olive/gtk-4.0/gtk.gresource differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-olive/index.theme b/releng/airootfs/etc/skel/.themes/Yaru-olive/index.theme index 4993dca5..5b31ee43 100644 --- a/releng/airootfs/etc/skel/.themes/Yaru-olive/index.theme +++ b/releng/airootfs/etc/skel/.themes/Yaru-olive/index.theme @@ -13,4 +13,4 @@ CursorSize=24 X-Yaru-Dark=false X-Yaru-Accent-Name=olive X-Yaru-Accent-Color=#4B8501 -/home/t/yaru/src/build/gtk/src/Yaru-olive-olive-accent-color-info.scss:48 DEBUG: Contrast optimized accent is #60aa01 +/home/rave/.cache/yay/yaru/src/build/gtk/src/Yaru-olive-olive-accent-color-info.scss:46 DEBUG: Contrast optimized accent is #5da501 diff --git a/releng/airootfs/etc/skel/.themes/Yaru-prussiangreen-dark/gnome-shell b/releng/airootfs/etc/skel/.themes/Yaru-prussiangreen-dark/gnome-shell deleted file mode 120000 index d7113269..00000000 --- a/releng/airootfs/etc/skel/.themes/Yaru-prussiangreen-dark/gnome-shell +++ /dev/null @@ -1 +0,0 @@ -../../gnome-shell/theme/Yaru-prussiangreen-dark \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru-prussiangreen-dark/gtk-3.0/gtk.gresource b/releng/airootfs/etc/skel/.themes/Yaru-prussiangreen-dark/gtk-3.0/gtk.gresource index d6b05852..4048714b 100644 Binary files a/releng/airootfs/etc/skel/.themes/Yaru-prussiangreen-dark/gtk-3.0/gtk.gresource and b/releng/airootfs/etc/skel/.themes/Yaru-prussiangreen-dark/gtk-3.0/gtk.gresource differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-prussiangreen-dark/gtk-4.0/gtk.gresource b/releng/airootfs/etc/skel/.themes/Yaru-prussiangreen-dark/gtk-4.0/gtk.gresource index 28fdff73..3a082138 100644 Binary files a/releng/airootfs/etc/skel/.themes/Yaru-prussiangreen-dark/gtk-4.0/gtk.gresource and b/releng/airootfs/etc/skel/.themes/Yaru-prussiangreen-dark/gtk-4.0/gtk.gresource differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-prussiangreen-dark/index.theme b/releng/airootfs/etc/skel/.themes/Yaru-prussiangreen-dark/index.theme index 3d36965f..43634ca7 100644 --- a/releng/airootfs/etc/skel/.themes/Yaru-prussiangreen-dark/index.theme +++ b/releng/airootfs/etc/skel/.themes/Yaru-prussiangreen-dark/index.theme @@ -13,4 +13,4 @@ CursorSize=24 X-Yaru-Dark=true X-Yaru-Accent-Name=prussiangreen X-Yaru-Accent-Color=#308280 -/home/t/yaru/src/build/gtk/src/Yaru-prussiangreen-dark-prussiangreen-accent-color-info.scss:48 DEBUG: Contrast optimized accent is #2f7f7d +/home/rave/.cache/yay/yaru/src/build/gtk/src/Yaru-prussiangreen-dark-prussiangreen-accent-color-info.scss:46 DEBUG: Contrast optimized accent is #2d7a78 diff --git a/releng/airootfs/etc/skel/.themes/Yaru-prussiangreen/gnome-shell b/releng/airootfs/etc/skel/.themes/Yaru-prussiangreen/gnome-shell deleted file mode 120000 index c605e1cc..00000000 --- a/releng/airootfs/etc/skel/.themes/Yaru-prussiangreen/gnome-shell +++ /dev/null @@ -1 +0,0 @@ -../../gnome-shell/theme/Yaru-prussiangreen \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru-prussiangreen/gtk-3.0/gtk.gresource b/releng/airootfs/etc/skel/.themes/Yaru-prussiangreen/gtk-3.0/gtk.gresource index 0bb1ec9c..4dcb48cd 100644 Binary files a/releng/airootfs/etc/skel/.themes/Yaru-prussiangreen/gtk-3.0/gtk.gresource and b/releng/airootfs/etc/skel/.themes/Yaru-prussiangreen/gtk-3.0/gtk.gresource differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-prussiangreen/gtk-4.0/gtk.gresource b/releng/airootfs/etc/skel/.themes/Yaru-prussiangreen/gtk-4.0/gtk.gresource index e82f11ee..d13906b6 100644 Binary files a/releng/airootfs/etc/skel/.themes/Yaru-prussiangreen/gtk-4.0/gtk.gresource and b/releng/airootfs/etc/skel/.themes/Yaru-prussiangreen/gtk-4.0/gtk.gresource differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-prussiangreen/index.theme b/releng/airootfs/etc/skel/.themes/Yaru-prussiangreen/index.theme index fbc72957..512d5cde 100644 --- a/releng/airootfs/etc/skel/.themes/Yaru-prussiangreen/index.theme +++ b/releng/airootfs/etc/skel/.themes/Yaru-prussiangreen/index.theme @@ -13,4 +13,4 @@ CursorSize=24 X-Yaru-Dark=false X-Yaru-Accent-Name=prussiangreen X-Yaru-Accent-Color=#308280 -/home/t/yaru/src/build/gtk/src/Yaru-prussiangreen-prussiangreen-accent-color-info.scss:48 DEBUG: Contrast optimized accent is #3ea7a4 +/home/rave/.cache/yay/yaru/src/build/gtk/src/Yaru-prussiangreen-prussiangreen-accent-color-info.scss:46 DEBUG: Contrast optimized accent is #3ca29f diff --git a/releng/airootfs/etc/skel/.themes/Yaru-purple-dark/gnome-shell b/releng/airootfs/etc/skel/.themes/Yaru-purple-dark/gnome-shell deleted file mode 120000 index 85b07c87..00000000 --- a/releng/airootfs/etc/skel/.themes/Yaru-purple-dark/gnome-shell +++ /dev/null @@ -1 +0,0 @@ -../../gnome-shell/theme/Yaru-purple-dark \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru-purple-dark/gtk-3.0/gtk.gresource b/releng/airootfs/etc/skel/.themes/Yaru-purple-dark/gtk-3.0/gtk.gresource index fd174f4c..d3e81686 100644 Binary files a/releng/airootfs/etc/skel/.themes/Yaru-purple-dark/gtk-3.0/gtk.gresource and b/releng/airootfs/etc/skel/.themes/Yaru-purple-dark/gtk-3.0/gtk.gresource differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-purple-dark/gtk-4.0/gtk.gresource b/releng/airootfs/etc/skel/.themes/Yaru-purple-dark/gtk-4.0/gtk.gresource index 94198f21..bc3e789d 100644 Binary files a/releng/airootfs/etc/skel/.themes/Yaru-purple-dark/gtk-4.0/gtk.gresource and b/releng/airootfs/etc/skel/.themes/Yaru-purple-dark/gtk-4.0/gtk.gresource differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-purple-dark/index.theme b/releng/airootfs/etc/skel/.themes/Yaru-purple-dark/index.theme index 1bcf1aee..868653ef 100644 --- a/releng/airootfs/etc/skel/.themes/Yaru-purple-dark/index.theme +++ b/releng/airootfs/etc/skel/.themes/Yaru-purple-dark/index.theme @@ -13,4 +13,4 @@ CursorSize=24 X-Yaru-Dark=true X-Yaru-Accent-Name=purple X-Yaru-Accent-Color=#7764D8 -/home/t/yaru/src/build/gtk/src/Yaru-purple-dark-purple-accent-color-info.scss:48 DEBUG: Contrast optimized accent is #7562d7 +/home/rave/.cache/yay/yaru/src/build/gtk/src/Yaru-purple-dark-purple-accent-color-info.scss:46 DEBUG: Contrast optimized accent is #705cd6 diff --git a/releng/airootfs/etc/skel/.themes/Yaru-purple/gnome-shell b/releng/airootfs/etc/skel/.themes/Yaru-purple/gnome-shell deleted file mode 120000 index a643b4ad..00000000 --- a/releng/airootfs/etc/skel/.themes/Yaru-purple/gnome-shell +++ /dev/null @@ -1 +0,0 @@ -../../gnome-shell/theme/Yaru-purple \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru-purple/gtk-3.0/gtk.gresource b/releng/airootfs/etc/skel/.themes/Yaru-purple/gtk-3.0/gtk.gresource index 17faa98c..66dfeff8 100644 Binary files a/releng/airootfs/etc/skel/.themes/Yaru-purple/gtk-3.0/gtk.gresource and b/releng/airootfs/etc/skel/.themes/Yaru-purple/gtk-3.0/gtk.gresource differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-purple/gtk-4.0/gtk.gresource b/releng/airootfs/etc/skel/.themes/Yaru-purple/gtk-4.0/gtk.gresource index 41df7a4f..0138829d 100644 Binary files a/releng/airootfs/etc/skel/.themes/Yaru-purple/gtk-4.0/gtk.gresource and b/releng/airootfs/etc/skel/.themes/Yaru-purple/gtk-4.0/gtk.gresource differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-purple/index.theme b/releng/airootfs/etc/skel/.themes/Yaru-purple/index.theme index aa06c221..262b779a 100644 --- a/releng/airootfs/etc/skel/.themes/Yaru-purple/index.theme +++ b/releng/airootfs/etc/skel/.themes/Yaru-purple/index.theme @@ -13,4 +13,4 @@ CursorSize=24 X-Yaru-Dark=false X-Yaru-Accent-Name=purple X-Yaru-Accent-Color=#7764D8 -/home/t/yaru/src/build/gtk/src/Yaru-purple-purple-accent-color-info.scss:48 DEBUG: Contrast optimized accent is #9b8de2 +/home/rave/.cache/yay/yaru/src/build/gtk/src/Yaru-purple-purple-accent-color-info.scss:46 DEBUG: Contrast optimized accent is #9687e1 diff --git a/releng/airootfs/etc/skel/.themes/Yaru-red-dark/gnome-shell b/releng/airootfs/etc/skel/.themes/Yaru-red-dark/gnome-shell deleted file mode 120000 index c6be5468..00000000 --- a/releng/airootfs/etc/skel/.themes/Yaru-red-dark/gnome-shell +++ /dev/null @@ -1 +0,0 @@ -../../gnome-shell/theme/Yaru-red-dark \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru-red-dark/gtk-3.0/gtk.gresource b/releng/airootfs/etc/skel/.themes/Yaru-red-dark/gtk-3.0/gtk.gresource index 94ed1dc4..e915f580 100644 Binary files a/releng/airootfs/etc/skel/.themes/Yaru-red-dark/gtk-3.0/gtk.gresource and b/releng/airootfs/etc/skel/.themes/Yaru-red-dark/gtk-3.0/gtk.gresource differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-red-dark/gtk-4.0/gtk.gresource b/releng/airootfs/etc/skel/.themes/Yaru-red-dark/gtk-4.0/gtk.gresource index bde898a9..c65ee755 100644 Binary files a/releng/airootfs/etc/skel/.themes/Yaru-red-dark/gtk-4.0/gtk.gresource and b/releng/airootfs/etc/skel/.themes/Yaru-red-dark/gtk-4.0/gtk.gresource differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-red-dark/index.theme b/releng/airootfs/etc/skel/.themes/Yaru-red-dark/index.theme index ea6a2990..84ba882d 100644 --- a/releng/airootfs/etc/skel/.themes/Yaru-red-dark/index.theme +++ b/releng/airootfs/etc/skel/.themes/Yaru-red-dark/index.theme @@ -13,4 +13,4 @@ CursorSize=24 X-Yaru-Dark=true X-Yaru-Accent-Name=red X-Yaru-Accent-Color=#DA3450 -/home/t/yaru/src/build/gtk/src/Yaru-red-dark-red-accent-color-info.scss:48 DEBUG: Contrast optimized accent is #d92f4c +/home/rave/.cache/yay/yaru/src/build/gtk/src/Yaru-red-dark-red-accent-color-info.scss:46 DEBUG: Contrast optimized accent is #d42744 diff --git a/releng/airootfs/etc/skel/.themes/Yaru-red/gnome-shell b/releng/airootfs/etc/skel/.themes/Yaru-red/gnome-shell deleted file mode 120000 index 5a968886..00000000 --- a/releng/airootfs/etc/skel/.themes/Yaru-red/gnome-shell +++ /dev/null @@ -1 +0,0 @@ -../../gnome-shell/theme/Yaru-red \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru-red/gtk-3.0/gtk.gresource b/releng/airootfs/etc/skel/.themes/Yaru-red/gtk-3.0/gtk.gresource index 94773285..f502c5e8 100644 Binary files a/releng/airootfs/etc/skel/.themes/Yaru-red/gtk-3.0/gtk.gresource and b/releng/airootfs/etc/skel/.themes/Yaru-red/gtk-3.0/gtk.gresource differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-red/gtk-4.0/gtk.gresource b/releng/airootfs/etc/skel/.themes/Yaru-red/gtk-4.0/gtk.gresource index 4ff08354..c7caff46 100644 Binary files a/releng/airootfs/etc/skel/.themes/Yaru-red/gtk-4.0/gtk.gresource and b/releng/airootfs/etc/skel/.themes/Yaru-red/gtk-4.0/gtk.gresource differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-red/index.theme b/releng/airootfs/etc/skel/.themes/Yaru-red/index.theme index e1b00c26..9ef563b1 100644 --- a/releng/airootfs/etc/skel/.themes/Yaru-red/index.theme +++ b/releng/airootfs/etc/skel/.themes/Yaru-red/index.theme @@ -13,4 +13,4 @@ CursorSize=24 X-Yaru-Dark=false X-Yaru-Accent-Name=red X-Yaru-Accent-Color=#DA3450 -/home/t/yaru/src/build/gtk/src/Yaru-red-red-accent-color-info.scss:48 DEBUG: Contrast optimized accent is #e67588 +/home/rave/.cache/yay/yaru/src/build/gtk/src/Yaru-red-red-accent-color-info.scss:46 DEBUG: Contrast optimized accent is #e46d81 diff --git a/releng/airootfs/etc/skel/.themes/Yaru-sage-dark/gnome-shell b/releng/airootfs/etc/skel/.themes/Yaru-sage-dark/gnome-shell deleted file mode 120000 index c7470e02..00000000 --- a/releng/airootfs/etc/skel/.themes/Yaru-sage-dark/gnome-shell +++ /dev/null @@ -1 +0,0 @@ -../../gnome-shell/theme/Yaru-sage-dark \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru-sage-dark/gtk-3.0/gtk.gresource b/releng/airootfs/etc/skel/.themes/Yaru-sage-dark/gtk-3.0/gtk.gresource index d6edb827..8b1f8e28 100644 Binary files a/releng/airootfs/etc/skel/.themes/Yaru-sage-dark/gtk-3.0/gtk.gresource and b/releng/airootfs/etc/skel/.themes/Yaru-sage-dark/gtk-3.0/gtk.gresource differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-sage-dark/gtk-4.0/gtk.gresource b/releng/airootfs/etc/skel/.themes/Yaru-sage-dark/gtk-4.0/gtk.gresource index 78c37285..6dbb058c 100644 Binary files a/releng/airootfs/etc/skel/.themes/Yaru-sage-dark/gtk-4.0/gtk.gresource and b/releng/airootfs/etc/skel/.themes/Yaru-sage-dark/gtk-4.0/gtk.gresource differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-sage-dark/index.theme b/releng/airootfs/etc/skel/.themes/Yaru-sage-dark/index.theme index 0d48ec31..ad7e1d71 100644 --- a/releng/airootfs/etc/skel/.themes/Yaru-sage-dark/index.theme +++ b/releng/airootfs/etc/skel/.themes/Yaru-sage-dark/index.theme @@ -13,4 +13,4 @@ CursorSize=24 X-Yaru-Dark=true X-Yaru-Accent-Name=sage X-Yaru-Accent-Color=#657B69 -/home/t/yaru/src/build/gtk/src/Yaru-sage-dark-sage-accent-color-info.scss:48 DEBUG: Contrast optimized accent is #637967 +/home/rave/.cache/yay/yaru/src/build/gtk/src/Yaru-sage-dark-sage-accent-color-info.scss:46 DEBUG: Contrast optimized accent is #5f7463 diff --git a/releng/airootfs/etc/skel/.themes/Yaru-sage/gnome-shell b/releng/airootfs/etc/skel/.themes/Yaru-sage/gnome-shell deleted file mode 120000 index a6374c9e..00000000 --- a/releng/airootfs/etc/skel/.themes/Yaru-sage/gnome-shell +++ /dev/null @@ -1 +0,0 @@ -../../gnome-shell/theme/Yaru-sage \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru-sage/gtk-3.0/gtk.gresource b/releng/airootfs/etc/skel/.themes/Yaru-sage/gtk-3.0/gtk.gresource index c3cabb97..e98bd96b 100644 Binary files a/releng/airootfs/etc/skel/.themes/Yaru-sage/gtk-3.0/gtk.gresource and b/releng/airootfs/etc/skel/.themes/Yaru-sage/gtk-3.0/gtk.gresource differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-sage/gtk-4.0/gtk.gresource b/releng/airootfs/etc/skel/.themes/Yaru-sage/gtk-4.0/gtk.gresource index 3ef2752b..cb26a6d2 100644 Binary files a/releng/airootfs/etc/skel/.themes/Yaru-sage/gtk-4.0/gtk.gresource and b/releng/airootfs/etc/skel/.themes/Yaru-sage/gtk-4.0/gtk.gresource differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-sage/index.theme b/releng/airootfs/etc/skel/.themes/Yaru-sage/index.theme index ddfde265..f7e26811 100644 --- a/releng/airootfs/etc/skel/.themes/Yaru-sage/index.theme +++ b/releng/airootfs/etc/skel/.themes/Yaru-sage/index.theme @@ -13,4 +13,4 @@ CursorSize=24 X-Yaru-Dark=false X-Yaru-Accent-Name=sage X-Yaru-Accent-Color=#657B69 -/home/t/yaru/src/build/gtk/src/Yaru-sage-sage-accent-color-info.scss:48 DEBUG: Contrast optimized accent is #889d8c +/home/rave/.cache/yay/yaru/src/build/gtk/src/Yaru-sage-sage-accent-color-info.scss:46 DEBUG: Contrast optimized accent is #829886 diff --git a/releng/airootfs/etc/skel/.themes/Yaru-wartybrown-dark/gnome-shell b/releng/airootfs/etc/skel/.themes/Yaru-wartybrown-dark/gnome-shell deleted file mode 120000 index 77eb3d52..00000000 --- a/releng/airootfs/etc/skel/.themes/Yaru-wartybrown-dark/gnome-shell +++ /dev/null @@ -1 +0,0 @@ -../../gnome-shell/theme/Yaru-wartybrown-dark \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru-wartybrown-dark/gtk-3.0/gtk.gresource b/releng/airootfs/etc/skel/.themes/Yaru-wartybrown-dark/gtk-3.0/gtk.gresource index beb12faf..65b914ee 100644 Binary files a/releng/airootfs/etc/skel/.themes/Yaru-wartybrown-dark/gtk-3.0/gtk.gresource and b/releng/airootfs/etc/skel/.themes/Yaru-wartybrown-dark/gtk-3.0/gtk.gresource differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-wartybrown-dark/gtk-4.0/gtk.gresource b/releng/airootfs/etc/skel/.themes/Yaru-wartybrown-dark/gtk-4.0/gtk.gresource index ea5e24d0..dc8fb08e 100644 Binary files a/releng/airootfs/etc/skel/.themes/Yaru-wartybrown-dark/gtk-4.0/gtk.gresource and b/releng/airootfs/etc/skel/.themes/Yaru-wartybrown-dark/gtk-4.0/gtk.gresource differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-wartybrown-dark/index.theme b/releng/airootfs/etc/skel/.themes/Yaru-wartybrown-dark/index.theme index 11259a68..9448c231 100644 --- a/releng/airootfs/etc/skel/.themes/Yaru-wartybrown-dark/index.theme +++ b/releng/airootfs/etc/skel/.themes/Yaru-wartybrown-dark/index.theme @@ -13,4 +13,4 @@ CursorSize=24 X-Yaru-Dark=true X-Yaru-Accent-Name=wartybrown X-Yaru-Accent-Color=#B39169 -/home/t/yaru/src/build/gtk/src/Yaru-wartybrown-dark-wartybrown-accent-color-info.scss:48 DEBUG: Contrast optimized accent is #8e6e48 +/home/rave/.cache/yay/yaru/src/build/gtk/src/Yaru-wartybrown-dark-wartybrown-accent-color-info.scss:46 DEBUG: Contrast optimized accent is #886945 diff --git a/releng/airootfs/etc/skel/.themes/Yaru-wartybrown/gnome-shell b/releng/airootfs/etc/skel/.themes/Yaru-wartybrown/gnome-shell deleted file mode 120000 index ad33ad90..00000000 --- a/releng/airootfs/etc/skel/.themes/Yaru-wartybrown/gnome-shell +++ /dev/null @@ -1 +0,0 @@ -../../gnome-shell/theme/Yaru-wartybrown \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru-wartybrown/gtk-3.0/gtk.gresource b/releng/airootfs/etc/skel/.themes/Yaru-wartybrown/gtk-3.0/gtk.gresource index 808f3fda..024c2b11 100644 Binary files a/releng/airootfs/etc/skel/.themes/Yaru-wartybrown/gtk-3.0/gtk.gresource and b/releng/airootfs/etc/skel/.themes/Yaru-wartybrown/gtk-3.0/gtk.gresource differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-wartybrown/gtk-4.0/gtk.gresource b/releng/airootfs/etc/skel/.themes/Yaru-wartybrown/gtk-4.0/gtk.gresource index 97131996..a0693652 100644 Binary files a/releng/airootfs/etc/skel/.themes/Yaru-wartybrown/gtk-4.0/gtk.gresource and b/releng/airootfs/etc/skel/.themes/Yaru-wartybrown/gtk-4.0/gtk.gresource differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-wartybrown/index.theme b/releng/airootfs/etc/skel/.themes/Yaru-wartybrown/index.theme index ea92af1e..6916ff22 100644 --- a/releng/airootfs/etc/skel/.themes/Yaru-wartybrown/index.theme +++ b/releng/airootfs/etc/skel/.themes/Yaru-wartybrown/index.theme @@ -13,4 +13,4 @@ CursorSize=24 X-Yaru-Dark=false X-Yaru-Accent-Name=wartybrown X-Yaru-Accent-Color=#B39169 -/home/t/yaru/src/build/gtk/src/Yaru-wartybrown-wartybrown-accent-color-info.scss:48 DEBUG: Contrast optimized accent is #b4926b +/home/rave/.cache/yay/yaru/src/build/gtk/src/Yaru-wartybrown-wartybrown-accent-color-info.scss:46 DEBUG: Contrast optimized accent is #B39169 diff --git a/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/bottom-active.png b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/bottom-active.png new file mode 100644 index 00000000..49878ef8 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/bottom-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/bottom-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/bottom-inactive.png new file mode 100644 index 00000000..2b2d99fa Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/bottom-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/bottom-left-active.png b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/bottom-left-active.png new file mode 100644 index 00000000..f30890d9 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/bottom-left-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/bottom-left-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/bottom-left-inactive.png new file mode 100644 index 00000000..fc8949e7 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/bottom-left-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/bottom-right-active.png b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/bottom-right-active.png new file mode 100644 index 00000000..d4746feb Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/bottom-right-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/bottom-right-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/bottom-right-inactive.png new file mode 100644 index 00000000..4774ce39 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/bottom-right-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/close-active.png b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/close-active.png new file mode 100644 index 00000000..69126696 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/close-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/close-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/close-inactive.png new file mode 100644 index 00000000..805b0a37 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/close-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/close-prelight.png b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/close-prelight.png new file mode 100644 index 00000000..01eeae6a Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/close-prelight.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/close-pressed.png b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/close-pressed.png new file mode 100644 index 00000000..0f9a8f53 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/close-pressed.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/hide-active.png b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/hide-active.png new file mode 100644 index 00000000..53aca68d Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/hide-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/hide-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/hide-inactive.png new file mode 100644 index 00000000..43777dd6 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/hide-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/hide-prelight.png b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/hide-prelight.png new file mode 100644 index 00000000..b2949812 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/hide-prelight.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/hide-pressed.png b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/hide-pressed.png new file mode 100644 index 00000000..b5b0b00f Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/hide-pressed.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/left-active.png b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/left-active.png new file mode 100644 index 00000000..d33c2165 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/left-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/left-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/left-inactive.png new file mode 100644 index 00000000..cfba535f Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/left-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/maximize-active.png b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/maximize-active.png new file mode 100644 index 00000000..2a0a6954 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/maximize-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/maximize-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/maximize-inactive.png new file mode 100644 index 00000000..ecddc7f4 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/maximize-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/maximize-prelight.png b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/maximize-prelight.png new file mode 100644 index 00000000..51affda7 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/maximize-prelight.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/maximize-pressed.png b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/maximize-pressed.png new file mode 100644 index 00000000..b7c153df Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/maximize-pressed.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/maximize-toggled-active.png b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/maximize-toggled-active.png new file mode 100644 index 00000000..acdbff7e Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/maximize-toggled-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/maximize-toggled-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/maximize-toggled-inactive.png new file mode 100644 index 00000000..bb484cb2 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/maximize-toggled-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/maximize-toggled-prelight.png b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/maximize-toggled-prelight.png new file mode 100644 index 00000000..5a090e4d Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/maximize-toggled-prelight.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/maximize-toggled-pressed.png b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/maximize-toggled-pressed.png new file mode 100644 index 00000000..90f80960 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/maximize-toggled-pressed.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/menu-active.png b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/menu-active.png new file mode 100644 index 00000000..d8834bea Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/menu-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/menu-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/menu-inactive.png new file mode 100644 index 00000000..8c81646e Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/menu-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/menu-prelight.png b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/menu-prelight.png new file mode 100644 index 00000000..7b4ce619 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/menu-prelight.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/menu-pressed.png b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/menu-pressed.png new file mode 100644 index 00000000..58f5a768 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/menu-pressed.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/right-active.png b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/right-active.png new file mode 100644 index 00000000..21344165 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/right-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/right-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/right-inactive.png new file mode 100644 index 00000000..b7026b5a Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/right-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/shade-active.png b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/shade-active.png new file mode 100644 index 00000000..901ae87f Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/shade-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/shade-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/shade-inactive.png new file mode 100644 index 00000000..c25e3c73 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/shade-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/shade-prelight.png b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/shade-prelight.png new file mode 100644 index 00000000..b1057fcf Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/shade-prelight.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/shade-pressed.png b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/shade-pressed.png new file mode 100644 index 00000000..bac4b20c Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/shade-pressed.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/shade-toggled-active.png b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/shade-toggled-active.png new file mode 100644 index 00000000..d93dcc51 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/shade-toggled-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/shade-toggled-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/shade-toggled-inactive.png new file mode 100644 index 00000000..bf74041a Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/shade-toggled-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/shade-toggled-prelight.png b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/shade-toggled-prelight.png new file mode 100644 index 00000000..62c769e6 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/shade-toggled-prelight.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/shade-toggled-pressed.png b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/shade-toggled-pressed.png new file mode 100644 index 00000000..c7a7c94b Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/shade-toggled-pressed.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/stick-active.png b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/stick-active.png new file mode 100644 index 00000000..da9dda26 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/stick-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/stick-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/stick-inactive.png new file mode 100644 index 00000000..815660c0 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/stick-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/stick-prelight.png b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/stick-prelight.png new file mode 100644 index 00000000..8f3c379b Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/stick-prelight.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/stick-pressed.png b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/stick-pressed.png new file mode 100644 index 00000000..5cc4686d Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/stick-pressed.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/stick-toggled-active.png b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/stick-toggled-active.png new file mode 100644 index 00000000..297e939c Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/stick-toggled-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/stick-toggled-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/stick-toggled-inactive.png new file mode 100644 index 00000000..a13b2637 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/stick-toggled-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/stick-toggled-prelight.png b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/stick-toggled-prelight.png new file mode 100644 index 00000000..6137bb54 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/stick-toggled-prelight.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/stick-toggled-pressed.png b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/stick-toggled-pressed.png new file mode 100644 index 00000000..27fc1276 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/stick-toggled-pressed.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/themerc b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/themerc new file mode 100644 index 00000000..8e5e9da5 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/themerc @@ -0,0 +1,24 @@ +# Default values can be found here: +# https://git.xfce.org/xfce/xfwm4/tree/defaults/defaults +# or +# /usr/share/xfwm4/defaults + +active_text_color=#1d1d1d +active_text_shadow_color=#1d1d1d +inactive_text_color=#565656 +inactive_text_shadow_color=#565656 +title_shadow_active=false +title_shadow_inactive=false +full_width_title=true +title_vertical_offset_active=0 +title_vertical_offset_inactive=0 +button_offset=4 +maximized_offset=4 +button_spacing=0 +shadow_delta_height=2 +shadow_delta_width=0 +shadow_delta_x=0 +shadow_delta_y=-10 +shadow_opacity=50 +show_app_icon=false +show_popup_shadow=true diff --git a/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/title-1-active.png b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/title-1-active.png new file mode 100644 index 00000000..086dea9c Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/title-1-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/title-1-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/title-1-inactive.png new file mode 100644 index 00000000..a867486b Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/title-1-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/title-2-active.png b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/title-2-active.png new file mode 100644 index 00000000..086dea9c Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/title-2-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/title-2-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/title-2-inactive.png new file mode 100644 index 00000000..a867486b Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/title-2-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/title-3-active.png b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/title-3-active.png new file mode 100644 index 00000000..086dea9c Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/title-3-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/title-3-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/title-3-inactive.png new file mode 100644 index 00000000..a867486b Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/title-3-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/title-4-active.png b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/title-4-active.png new file mode 100644 index 00000000..086dea9c Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/title-4-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/title-4-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/title-4-inactive.png new file mode 100644 index 00000000..a867486b Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/title-4-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/title-5-active.png b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/title-5-active.png new file mode 100644 index 00000000..086dea9c Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/title-5-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/title-5-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/title-5-inactive.png new file mode 100644 index 00000000..a867486b Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/title-5-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/top-left-active.png b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/top-left-active.png new file mode 100644 index 00000000..eb222c9b Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/top-left-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/top-left-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/top-left-inactive.png new file mode 100644 index 00000000..48ac06c9 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/top-left-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/top-right-active.png b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/top-right-active.png new file mode 100644 index 00000000..0ff636b6 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/top-right-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/top-right-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/top-right-inactive.png new file mode 100644 index 00000000..b16d9f49 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru-xhdpi/xfwm4/top-right-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-yellow-dark/gnome-shell b/releng/airootfs/etc/skel/.themes/Yaru-yellow-dark/gnome-shell deleted file mode 120000 index d066d953..00000000 --- a/releng/airootfs/etc/skel/.themes/Yaru-yellow-dark/gnome-shell +++ /dev/null @@ -1 +0,0 @@ -../../gnome-shell/theme/Yaru-yellow-dark \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru-yellow-dark/gtk-3.0/gtk.gresource b/releng/airootfs/etc/skel/.themes/Yaru-yellow-dark/gtk-3.0/gtk.gresource index ef809301..177a9d5e 100644 Binary files a/releng/airootfs/etc/skel/.themes/Yaru-yellow-dark/gtk-3.0/gtk.gresource and b/releng/airootfs/etc/skel/.themes/Yaru-yellow-dark/gtk-3.0/gtk.gresource differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-yellow-dark/gtk-4.0/gtk.gresource b/releng/airootfs/etc/skel/.themes/Yaru-yellow-dark/gtk-4.0/gtk.gresource index 881702f8..5da4f9df 100644 Binary files a/releng/airootfs/etc/skel/.themes/Yaru-yellow-dark/gtk-4.0/gtk.gresource and b/releng/airootfs/etc/skel/.themes/Yaru-yellow-dark/gtk-4.0/gtk.gresource differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-yellow-dark/index.theme b/releng/airootfs/etc/skel/.themes/Yaru-yellow-dark/index.theme index b8afd06d..b0c8c552 100644 --- a/releng/airootfs/etc/skel/.themes/Yaru-yellow-dark/index.theme +++ b/releng/airootfs/etc/skel/.themes/Yaru-yellow-dark/index.theme @@ -13,4 +13,4 @@ CursorSize=24 X-Yaru-Dark=true X-Yaru-Accent-Name=yellow X-Yaru-Accent-Color=#C88800 -/home/t/yaru/src/build/gtk/src/Yaru-yellow-dark-yellow-accent-color-info.scss:48 DEBUG: Contrast optimized accent is #9c6a00 +/home/rave/.cache/yay/yaru/src/build/gtk/src/Yaru-yellow-dark-yellow-accent-color-info.scss:46 DEBUG: Contrast optimized accent is #966600 diff --git a/releng/airootfs/etc/skel/.themes/Yaru-yellow/gnome-shell b/releng/airootfs/etc/skel/.themes/Yaru-yellow/gnome-shell deleted file mode 120000 index 29a22045..00000000 --- a/releng/airootfs/etc/skel/.themes/Yaru-yellow/gnome-shell +++ /dev/null @@ -1 +0,0 @@ -../../gnome-shell/theme/Yaru-yellow \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru-yellow/gtk-3.0/gtk.gresource b/releng/airootfs/etc/skel/.themes/Yaru-yellow/gtk-3.0/gtk.gresource index ff0a763d..683c7c80 100644 Binary files a/releng/airootfs/etc/skel/.themes/Yaru-yellow/gtk-3.0/gtk.gresource and b/releng/airootfs/etc/skel/.themes/Yaru-yellow/gtk-3.0/gtk.gresource differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-yellow/gtk-4.0/gtk.gresource b/releng/airootfs/etc/skel/.themes/Yaru-yellow/gtk-4.0/gtk.gresource index 96c2f03f..ea637ae6 100644 Binary files a/releng/airootfs/etc/skel/.themes/Yaru-yellow/gtk-4.0/gtk.gresource and b/releng/airootfs/etc/skel/.themes/Yaru-yellow/gtk-4.0/gtk.gresource differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru-yellow/index.theme b/releng/airootfs/etc/skel/.themes/Yaru-yellow/index.theme index 2944535f..b478584a 100644 --- a/releng/airootfs/etc/skel/.themes/Yaru-yellow/index.theme +++ b/releng/airootfs/etc/skel/.themes/Yaru-yellow/index.theme @@ -13,4 +13,4 @@ CursorSize=24 X-Yaru-Dark=false X-Yaru-Accent-Name=yellow X-Yaru-Accent-Color=#C88800 -/home/t/yaru/src/build/gtk/src/Yaru-yellow-yellow-accent-color-info.scss:48 DEBUG: Contrast optimized accent is #cd8b00 +/home/rave/.cache/yay/yaru/src/build/gtk/src/Yaru-yellow-yellow-accent-color-info.scss:46 DEBUG: Contrast optimized accent is #C88800 diff --git a/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/close_focused_normal.svg b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/close_focused_normal.svg new file mode 100644 index 00000000..b6df0d34 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/close_focused_normal.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/close_focused_prelight.svg b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/close_focused_prelight.svg new file mode 100644 index 00000000..9f9b360e --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/close_focused_prelight.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/close_focused_pressed.svg b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/close_focused_pressed.svg new file mode 100644 index 00000000..74a24be6 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/close_focused_pressed.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/close_unfocused.svg b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/close_unfocused.svg new file mode 100644 index 00000000..b91684e6 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/close_unfocused.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/close_unfocused_prelight.svg b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/close_unfocused_prelight.svg new file mode 100644 index 00000000..b5560ade --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/close_unfocused_prelight.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/close_unfocused_pressed.svg b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/close_unfocused_pressed.svg new file mode 100644 index 00000000..74a24be6 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/close_unfocused_pressed.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/maximize_focused_normal.svg b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/maximize_focused_normal.svg new file mode 100644 index 00000000..67ace455 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/maximize_focused_normal.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/maximize_focused_prelight.svg b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/maximize_focused_prelight.svg new file mode 100644 index 00000000..2ab3fbd0 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/maximize_focused_prelight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/maximize_focused_pressed.svg b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/maximize_focused_pressed.svg new file mode 100644 index 00000000..908f6d0d --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/maximize_focused_pressed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/maximize_unfocused.svg b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/maximize_unfocused.svg new file mode 100644 index 00000000..b4a1199e --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/maximize_unfocused.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/maximize_unfocused_prelight.svg b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/maximize_unfocused_prelight.svg new file mode 100644 index 00000000..06317488 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/maximize_unfocused_prelight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/maximize_unfocused_pressed.svg b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/maximize_unfocused_pressed.svg new file mode 100644 index 00000000..908f6d0d --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/maximize_unfocused_pressed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/menu_focused_normal.svg b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/menu_focused_normal.svg new file mode 100644 index 00000000..93b79f39 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/menu_focused_normal.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/menu_focused_prelight.svg b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/menu_focused_prelight.svg new file mode 100644 index 00000000..ea4a43e4 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/menu_focused_prelight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/menu_focused_pressed.svg b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/menu_focused_pressed.svg new file mode 100644 index 00000000..117ef88e --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/menu_focused_pressed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/menu_unfocused.svg b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/menu_unfocused.svg new file mode 100644 index 00000000..73b077bd --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/menu_unfocused.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/menu_unfocused_prelight.svg b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/menu_unfocused_prelight.svg new file mode 100644 index 00000000..b0d55b2e --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/menu_unfocused_prelight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/menu_unfocused_pressed.svg b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/menu_unfocused_pressed.svg new file mode 100644 index 00000000..117ef88e --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/menu_unfocused_pressed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/metacity-theme-1.xml b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/metacity-theme-1.xml new file mode 100644 index 00000000..03a56fc6 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/metacity-theme-1.xml @@ -0,0 +1,1472 @@ + + + + Yaru + Martin Wimpress + Martin Wimpress, 2021-2022 + April 11, 2022 + Yaru Metacity (Marco) Theme + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/metacity-theme-2.xml b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/metacity-theme-2.xml new file mode 120000 index 00000000..84bdbf0a --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/metacity-theme-2.xml @@ -0,0 +1 @@ +metacity-theme-1.xml \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/metacity-theme-3.xml b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/metacity-theme-3.xml new file mode 120000 index 00000000..84bdbf0a --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/metacity-theme-3.xml @@ -0,0 +1 @@ +metacity-theme-1.xml \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/minimize_focused_normal.svg b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/minimize_focused_normal.svg new file mode 100644 index 00000000..149be2a3 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/minimize_focused_normal.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/minimize_focused_prelight.svg b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/minimize_focused_prelight.svg new file mode 100644 index 00000000..a7c2dc95 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/minimize_focused_prelight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/minimize_focused_pressed.svg b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/minimize_focused_pressed.svg new file mode 100644 index 00000000..eb54e804 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/minimize_focused_pressed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/minimize_unfocused.svg b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/minimize_unfocused.svg new file mode 100644 index 00000000..cbe41706 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/minimize_unfocused.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/minimize_unfocused_prelight.svg b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/minimize_unfocused_prelight.svg new file mode 100644 index 00000000..b379a220 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/minimize_unfocused_prelight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/minimize_unfocused_pressed.svg b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/minimize_unfocused_pressed.svg new file mode 100644 index 00000000..eb54e804 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/minimize_unfocused_pressed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/unmaximize_focused_normal.svg b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/unmaximize_focused_normal.svg new file mode 100644 index 00000000..e1eb3bca --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/unmaximize_focused_normal.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/unmaximize_focused_prelight.svg b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/unmaximize_focused_prelight.svg new file mode 100644 index 00000000..95df2cab --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/unmaximize_focused_prelight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/unmaximize_focused_pressed.svg b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/unmaximize_focused_pressed.svg new file mode 100644 index 00000000..5cea8b30 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/unmaximize_focused_pressed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/unmaximize_unfocused.svg b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/unmaximize_unfocused.svg new file mode 100644 index 00000000..a4cd2283 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/unmaximize_unfocused.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/unmaximize_unfocused_prelight.svg b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/unmaximize_unfocused_prelight.svg new file mode 100644 index 00000000..ea0ed866 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/unmaximize_unfocused_prelight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/unmaximize_unfocused_pressed.svg b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/unmaximize_unfocused_pressed.svg new file mode 100644 index 00000000..5cea8b30 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/metacity-1/unmaximize_unfocused_pressed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru/unity/close.svg b/releng/airootfs/etc/skel/.themes/Yaru/unity/close.svg new file mode 100644 index 00000000..9f9b360e --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/unity/close.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru/unity/close_dash.svg b/releng/airootfs/etc/skel/.themes/Yaru/unity/close_dash.svg new file mode 100644 index 00000000..9f9b360e --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/unity/close_dash.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru/unity/close_dash_disabled.svg b/releng/airootfs/etc/skel/.themes/Yaru/unity/close_dash_disabled.svg new file mode 100644 index 00000000..371a9be0 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/unity/close_dash_disabled.svg @@ -0,0 +1,4 @@ + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru/unity/close_dash_prelight.svg b/releng/airootfs/etc/skel/.themes/Yaru/unity/close_dash_prelight.svg new file mode 100644 index 00000000..b5560ade --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/unity/close_dash_prelight.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru/unity/close_dash_pressed.svg b/releng/airootfs/etc/skel/.themes/Yaru/unity/close_dash_pressed.svg new file mode 100644 index 00000000..74a24be6 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/unity/close_dash_pressed.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru/unity/close_focused_normal.svg b/releng/airootfs/etc/skel/.themes/Yaru/unity/close_focused_normal.svg new file mode 100644 index 00000000..9f9b360e --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/unity/close_focused_normal.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru/unity/close_focused_prelight.svg b/releng/airootfs/etc/skel/.themes/Yaru/unity/close_focused_prelight.svg new file mode 100644 index 00000000..b5560ade --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/unity/close_focused_prelight.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru/unity/close_focused_pressed.svg b/releng/airootfs/etc/skel/.themes/Yaru/unity/close_focused_pressed.svg new file mode 100644 index 00000000..74a24be6 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/unity/close_focused_pressed.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru/unity/close_unfocused.svg b/releng/airootfs/etc/skel/.themes/Yaru/unity/close_unfocused.svg new file mode 100644 index 00000000..3c1523f4 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/unity/close_unfocused.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru/unity/close_unfocused_prelight.svg b/releng/airootfs/etc/skel/.themes/Yaru/unity/close_unfocused_prelight.svg new file mode 100644 index 00000000..b5560ade --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/unity/close_unfocused_prelight.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru/unity/close_unfocused_pressed.svg b/releng/airootfs/etc/skel/.themes/Yaru/unity/close_unfocused_pressed.svg new file mode 100644 index 00000000..74a24be6 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/unity/close_unfocused_pressed.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru/unity/launcher_icon_back_150.svg b/releng/airootfs/etc/skel/.themes/Yaru/unity/launcher_icon_back_150.svg new file mode 100644 index 00000000..65c4a78a --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/unity/launcher_icon_back_150.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru/unity/launcher_icon_back_54.svg b/releng/airootfs/etc/skel/.themes/Yaru/unity/launcher_icon_back_54.svg new file mode 100644 index 00000000..fb6e75aa --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/unity/launcher_icon_back_54.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru/unity/launcher_icon_edge_150.svg b/releng/airootfs/etc/skel/.themes/Yaru/unity/launcher_icon_edge_150.svg new file mode 100644 index 00000000..f38d5d9c --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/unity/launcher_icon_edge_150.svg @@ -0,0 +1 @@ + diff --git a/releng/airootfs/etc/skel/.themes/Yaru/unity/launcher_icon_edge_54.svg b/releng/airootfs/etc/skel/.themes/Yaru/unity/launcher_icon_edge_54.svg new file mode 100644 index 00000000..f2e47381 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/unity/launcher_icon_edge_54.svg @@ -0,0 +1 @@ + diff --git a/releng/airootfs/etc/skel/.themes/Yaru/unity/launcher_icon_glow_200.svg b/releng/airootfs/etc/skel/.themes/Yaru/unity/launcher_icon_glow_200.svg new file mode 100644 index 00000000..60f97ff4 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/unity/launcher_icon_glow_200.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru/unity/launcher_icon_glow_62.svg b/releng/airootfs/etc/skel/.themes/Yaru/unity/launcher_icon_glow_62.svg new file mode 100644 index 00000000..18a62a1b --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/unity/launcher_icon_glow_62.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru/unity/launcher_icon_selected_back_150.svg b/releng/airootfs/etc/skel/.themes/Yaru/unity/launcher_icon_selected_back_150.svg new file mode 100644 index 00000000..65c7f229 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/unity/launcher_icon_selected_back_150.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru/unity/launcher_icon_selected_back_54.svg b/releng/airootfs/etc/skel/.themes/Yaru/unity/launcher_icon_selected_back_54.svg new file mode 100644 index 00000000..fb6e75aa --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/unity/launcher_icon_selected_back_54.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru/unity/launcher_icon_shadow_200.svg b/releng/airootfs/etc/skel/.themes/Yaru/unity/launcher_icon_shadow_200.svg new file mode 100644 index 00000000..820dca00 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/unity/launcher_icon_shadow_200.svg @@ -0,0 +1 @@ + diff --git a/releng/airootfs/etc/skel/.themes/Yaru/unity/launcher_icon_shadow_62.svg b/releng/airootfs/etc/skel/.themes/Yaru/unity/launcher_icon_shadow_62.svg new file mode 100644 index 00000000..35d2f72e --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/unity/launcher_icon_shadow_62.svg @@ -0,0 +1 @@ + diff --git a/releng/airootfs/etc/skel/.themes/Yaru/unity/launcher_icon_shine_150.svg b/releng/airootfs/etc/skel/.themes/Yaru/unity/launcher_icon_shine_150.svg new file mode 100644 index 00000000..a795586d --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/unity/launcher_icon_shine_150.svg @@ -0,0 +1 @@ + diff --git a/releng/airootfs/etc/skel/.themes/Yaru/unity/launcher_icon_shine_54.svg b/releng/airootfs/etc/skel/.themes/Yaru/unity/launcher_icon_shine_54.svg new file mode 100644 index 00000000..70f7e898 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/unity/launcher_icon_shine_54.svg @@ -0,0 +1 @@ + diff --git a/releng/airootfs/etc/skel/.themes/Yaru/unity/maximize.svg b/releng/airootfs/etc/skel/.themes/Yaru/unity/maximize.svg new file mode 100644 index 00000000..f69e72e7 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/unity/maximize.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru/unity/maximize_dash.svg b/releng/airootfs/etc/skel/.themes/Yaru/unity/maximize_dash.svg new file mode 100644 index 00000000..48da7a81 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/unity/maximize_dash.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru/unity/maximize_dash_disabled.svg b/releng/airootfs/etc/skel/.themes/Yaru/unity/maximize_dash_disabled.svg new file mode 100644 index 00000000..7677f90f --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/unity/maximize_dash_disabled.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru/unity/maximize_dash_prelight.svg b/releng/airootfs/etc/skel/.themes/Yaru/unity/maximize_dash_prelight.svg new file mode 100644 index 00000000..06317488 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/unity/maximize_dash_prelight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru/unity/maximize_dash_pressed.svg b/releng/airootfs/etc/skel/.themes/Yaru/unity/maximize_dash_pressed.svg new file mode 100644 index 00000000..908f6d0d --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/unity/maximize_dash_pressed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru/unity/maximize_focused_normal.svg b/releng/airootfs/etc/skel/.themes/Yaru/unity/maximize_focused_normal.svg new file mode 100644 index 00000000..f69e72e7 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/unity/maximize_focused_normal.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru/unity/maximize_focused_prelight.svg b/releng/airootfs/etc/skel/.themes/Yaru/unity/maximize_focused_prelight.svg new file mode 100644 index 00000000..06317488 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/unity/maximize_focused_prelight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru/unity/maximize_focused_pressed.svg b/releng/airootfs/etc/skel/.themes/Yaru/unity/maximize_focused_pressed.svg new file mode 100644 index 00000000..908f6d0d --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/unity/maximize_focused_pressed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru/unity/maximize_unfocused.svg b/releng/airootfs/etc/skel/.themes/Yaru/unity/maximize_unfocused.svg new file mode 100644 index 00000000..7b49a487 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/unity/maximize_unfocused.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru/unity/maximize_unfocused_prelight.svg b/releng/airootfs/etc/skel/.themes/Yaru/unity/maximize_unfocused_prelight.svg new file mode 100644 index 00000000..06317488 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/unity/maximize_unfocused_prelight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru/unity/maximize_unfocused_pressed.svg b/releng/airootfs/etc/skel/.themes/Yaru/unity/maximize_unfocused_pressed.svg new file mode 100644 index 00000000..908f6d0d --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/unity/maximize_unfocused_pressed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru/unity/minimize.svg b/releng/airootfs/etc/skel/.themes/Yaru/unity/minimize.svg new file mode 100644 index 00000000..34e27611 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/unity/minimize.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru/unity/minimize_dash.svg b/releng/airootfs/etc/skel/.themes/Yaru/unity/minimize_dash.svg new file mode 100644 index 00000000..f544f776 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/unity/minimize_dash.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru/unity/minimize_dash_disabled.svg b/releng/airootfs/etc/skel/.themes/Yaru/unity/minimize_dash_disabled.svg new file mode 100644 index 00000000..a1776bae --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/unity/minimize_dash_disabled.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru/unity/minimize_dash_prelight.svg b/releng/airootfs/etc/skel/.themes/Yaru/unity/minimize_dash_prelight.svg new file mode 100644 index 00000000..b379a220 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/unity/minimize_dash_prelight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru/unity/minimize_dash_pressed.svg b/releng/airootfs/etc/skel/.themes/Yaru/unity/minimize_dash_pressed.svg new file mode 100644 index 00000000..eb54e804 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/unity/minimize_dash_pressed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru/unity/minimize_focused_normal.svg b/releng/airootfs/etc/skel/.themes/Yaru/unity/minimize_focused_normal.svg new file mode 100644 index 00000000..34e27611 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/unity/minimize_focused_normal.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru/unity/minimize_focused_prelight.svg b/releng/airootfs/etc/skel/.themes/Yaru/unity/minimize_focused_prelight.svg new file mode 100644 index 00000000..b379a220 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/unity/minimize_focused_prelight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru/unity/minimize_focused_pressed.svg b/releng/airootfs/etc/skel/.themes/Yaru/unity/minimize_focused_pressed.svg new file mode 100644 index 00000000..eb54e804 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/unity/minimize_focused_pressed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru/unity/minimize_unfocused.svg b/releng/airootfs/etc/skel/.themes/Yaru/unity/minimize_unfocused.svg new file mode 100644 index 00000000..4fedbed4 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/unity/minimize_unfocused.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru/unity/minimize_unfocused_prelight.svg b/releng/airootfs/etc/skel/.themes/Yaru/unity/minimize_unfocused_prelight.svg new file mode 100644 index 00000000..b379a220 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/unity/minimize_unfocused_prelight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru/unity/minimize_unfocused_pressed.svg b/releng/airootfs/etc/skel/.themes/Yaru/unity/minimize_unfocused_pressed.svg new file mode 100644 index 00000000..eb54e804 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/unity/minimize_unfocused_pressed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru/unity/sheet_style_close_focused.svg b/releng/airootfs/etc/skel/.themes/Yaru/unity/sheet_style_close_focused.svg new file mode 100644 index 00000000..9f9b360e --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/unity/sheet_style_close_focused.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru/unity/sheet_style_close_focused_prelight.svg b/releng/airootfs/etc/skel/.themes/Yaru/unity/sheet_style_close_focused_prelight.svg new file mode 100644 index 00000000..b5560ade --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/unity/sheet_style_close_focused_prelight.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru/unity/sheet_style_close_focused_pressed.svg b/releng/airootfs/etc/skel/.themes/Yaru/unity/sheet_style_close_focused_pressed.svg new file mode 100644 index 00000000..74a24be6 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/unity/sheet_style_close_focused_pressed.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru/unity/unmaximize.svg b/releng/airootfs/etc/skel/.themes/Yaru/unity/unmaximize.svg new file mode 100644 index 00000000..a47f6122 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/unity/unmaximize.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru/unity/unmaximize_dash.svg b/releng/airootfs/etc/skel/.themes/Yaru/unity/unmaximize_dash.svg new file mode 100644 index 00000000..002db0d2 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/unity/unmaximize_dash.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru/unity/unmaximize_dash_disabled.svg b/releng/airootfs/etc/skel/.themes/Yaru/unity/unmaximize_dash_disabled.svg new file mode 100644 index 00000000..5822759f --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/unity/unmaximize_dash_disabled.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru/unity/unmaximize_dash_prelight.svg b/releng/airootfs/etc/skel/.themes/Yaru/unity/unmaximize_dash_prelight.svg new file mode 100644 index 00000000..ea0ed866 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/unity/unmaximize_dash_prelight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru/unity/unmaximize_dash_pressed.svg b/releng/airootfs/etc/skel/.themes/Yaru/unity/unmaximize_dash_pressed.svg new file mode 100644 index 00000000..5cea8b30 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/unity/unmaximize_dash_pressed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru/unity/unmaximize_focused_normal.svg b/releng/airootfs/etc/skel/.themes/Yaru/unity/unmaximize_focused_normal.svg new file mode 100644 index 00000000..a47f6122 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/unity/unmaximize_focused_normal.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru/unity/unmaximize_focused_prelight.svg b/releng/airootfs/etc/skel/.themes/Yaru/unity/unmaximize_focused_prelight.svg new file mode 100644 index 00000000..ea0ed866 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/unity/unmaximize_focused_prelight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru/unity/unmaximize_focused_pressed.svg b/releng/airootfs/etc/skel/.themes/Yaru/unity/unmaximize_focused_pressed.svg new file mode 100644 index 00000000..5cea8b30 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/unity/unmaximize_focused_pressed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru/unity/unmaximize_unfocused.svg b/releng/airootfs/etc/skel/.themes/Yaru/unity/unmaximize_unfocused.svg new file mode 100644 index 00000000..ce8ca93a --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/unity/unmaximize_unfocused.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/releng/airootfs/etc/skel/.themes/Yaru/unity/unmaximize_unfocused_prelight.svg b/releng/airootfs/etc/skel/.themes/Yaru/unity/unmaximize_unfocused_prelight.svg new file mode 100644 index 00000000..ea0ed866 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/unity/unmaximize_unfocused_prelight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru/unity/unmaximize_unfocused_pressed.svg b/releng/airootfs/etc/skel/.themes/Yaru/unity/unmaximize_unfocused_pressed.svg new file mode 100644 index 00000000..5cea8b30 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/unity/unmaximize_unfocused_pressed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/bottom-active.png b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/bottom-active.png new file mode 100644 index 00000000..8f23cac0 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/bottom-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/bottom-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/bottom-inactive.png new file mode 100644 index 00000000..3f58edc6 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/bottom-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/bottom-left-active.png b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/bottom-left-active.png new file mode 100644 index 00000000..1ec3b1a1 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/bottom-left-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/bottom-left-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/bottom-left-inactive.png new file mode 100644 index 00000000..68c33cd9 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/bottom-left-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/bottom-right-active.png b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/bottom-right-active.png new file mode 100644 index 00000000..2900b640 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/bottom-right-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/bottom-right-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/bottom-right-inactive.png new file mode 100644 index 00000000..f6fc7024 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/bottom-right-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/close-active.png b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/close-active.png new file mode 100644 index 00000000..f63264ee Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/close-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/close-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/close-inactive.png new file mode 100644 index 00000000..1d403803 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/close-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/close-prelight.png b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/close-prelight.png new file mode 100644 index 00000000..f5c7e1f4 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/close-prelight.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/close-pressed.png b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/close-pressed.png new file mode 100644 index 00000000..30eaf9ea Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/close-pressed.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/hide-active.png b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/hide-active.png new file mode 100644 index 00000000..65e7b84b Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/hide-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/hide-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/hide-inactive.png new file mode 100644 index 00000000..570dd8bc Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/hide-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/hide-prelight.png b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/hide-prelight.png new file mode 100644 index 00000000..e582923d Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/hide-prelight.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/hide-pressed.png b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/hide-pressed.png new file mode 100644 index 00000000..11526104 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/hide-pressed.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/left-active.png b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/left-active.png new file mode 100644 index 00000000..320405d2 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/left-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/left-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/left-inactive.png new file mode 100644 index 00000000..d47d0b8a Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/left-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/maximize-active.png b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/maximize-active.png new file mode 100644 index 00000000..1b3e4b2f Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/maximize-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/maximize-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/maximize-inactive.png new file mode 100644 index 00000000..a5e33a56 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/maximize-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/maximize-prelight.png b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/maximize-prelight.png new file mode 100644 index 00000000..0ab35b27 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/maximize-prelight.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/maximize-pressed.png b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/maximize-pressed.png new file mode 100644 index 00000000..70e823f3 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/maximize-pressed.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/maximize-toggled-active.png b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/maximize-toggled-active.png new file mode 100644 index 00000000..788e70c2 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/maximize-toggled-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/maximize-toggled-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/maximize-toggled-inactive.png new file mode 100644 index 00000000..34ed0da6 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/maximize-toggled-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/maximize-toggled-prelight.png b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/maximize-toggled-prelight.png new file mode 100644 index 00000000..265c313d Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/maximize-toggled-prelight.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/maximize-toggled-pressed.png b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/maximize-toggled-pressed.png new file mode 100644 index 00000000..31666033 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/maximize-toggled-pressed.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/menu-active.png b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/menu-active.png new file mode 100644 index 00000000..c80e9028 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/menu-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/menu-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/menu-inactive.png new file mode 100644 index 00000000..c78591e1 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/menu-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/menu-prelight.png b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/menu-prelight.png new file mode 100644 index 00000000..bfa3875c Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/menu-prelight.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/menu-pressed.png b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/menu-pressed.png new file mode 100644 index 00000000..40789c98 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/menu-pressed.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/right-active.png b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/right-active.png new file mode 100644 index 00000000..a4e53ce4 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/right-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/right-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/right-inactive.png new file mode 100644 index 00000000..6d612ba8 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/right-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/shade-active.png b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/shade-active.png new file mode 100644 index 00000000..54ae10c0 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/shade-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/shade-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/shade-inactive.png new file mode 100644 index 00000000..176f4c7c Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/shade-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/shade-prelight.png b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/shade-prelight.png new file mode 100644 index 00000000..755adf17 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/shade-prelight.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/shade-pressed.png b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/shade-pressed.png new file mode 100644 index 00000000..5eecd3b3 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/shade-pressed.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/shade-toggled-active.png b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/shade-toggled-active.png new file mode 100644 index 00000000..9e26a0fc Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/shade-toggled-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/shade-toggled-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/shade-toggled-inactive.png new file mode 100644 index 00000000..998c2369 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/shade-toggled-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/shade-toggled-prelight.png b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/shade-toggled-prelight.png new file mode 100644 index 00000000..3508b8c8 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/shade-toggled-prelight.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/shade-toggled-pressed.png b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/shade-toggled-pressed.png new file mode 100644 index 00000000..92e0f6fc Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/shade-toggled-pressed.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/stick-active.png b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/stick-active.png new file mode 100644 index 00000000..8d2d24bb Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/stick-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/stick-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/stick-inactive.png new file mode 100644 index 00000000..b078bcdf Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/stick-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/stick-prelight.png b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/stick-prelight.png new file mode 100644 index 00000000..394ef1e5 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/stick-prelight.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/stick-pressed.png b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/stick-pressed.png new file mode 100644 index 00000000..3cba4711 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/stick-pressed.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/stick-toggled-active.png b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/stick-toggled-active.png new file mode 100644 index 00000000..b4799552 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/stick-toggled-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/stick-toggled-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/stick-toggled-inactive.png new file mode 100644 index 00000000..e738da06 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/stick-toggled-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/stick-toggled-prelight.png b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/stick-toggled-prelight.png new file mode 100644 index 00000000..a8ee61dc Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/stick-toggled-prelight.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/stick-toggled-pressed.png b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/stick-toggled-pressed.png new file mode 100644 index 00000000..e100ddbf Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/stick-toggled-pressed.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/themerc b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/themerc new file mode 100644 index 00000000..8e5e9da5 --- /dev/null +++ b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/themerc @@ -0,0 +1,24 @@ +# Default values can be found here: +# https://git.xfce.org/xfce/xfwm4/tree/defaults/defaults +# or +# /usr/share/xfwm4/defaults + +active_text_color=#1d1d1d +active_text_shadow_color=#1d1d1d +inactive_text_color=#565656 +inactive_text_shadow_color=#565656 +title_shadow_active=false +title_shadow_inactive=false +full_width_title=true +title_vertical_offset_active=0 +title_vertical_offset_inactive=0 +button_offset=4 +maximized_offset=4 +button_spacing=0 +shadow_delta_height=2 +shadow_delta_width=0 +shadow_delta_x=0 +shadow_delta_y=-10 +shadow_opacity=50 +show_app_icon=false +show_popup_shadow=true diff --git a/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/title-1-active.png b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/title-1-active.png new file mode 100644 index 00000000..ca2dd488 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/title-1-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/title-1-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/title-1-inactive.png new file mode 100644 index 00000000..351553c4 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/title-1-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/title-2-active.png b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/title-2-active.png new file mode 100644 index 00000000..ca2dd488 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/title-2-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/title-2-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/title-2-inactive.png new file mode 100644 index 00000000..351553c4 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/title-2-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/title-3-active.png b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/title-3-active.png new file mode 100644 index 00000000..ca2dd488 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/title-3-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/title-3-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/title-3-inactive.png new file mode 100644 index 00000000..351553c4 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/title-3-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/title-4-active.png b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/title-4-active.png new file mode 100644 index 00000000..ca2dd488 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/title-4-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/title-4-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/title-4-inactive.png new file mode 100644 index 00000000..351553c4 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/title-4-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/title-5-active.png b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/title-5-active.png new file mode 100644 index 00000000..ca2dd488 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/title-5-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/title-5-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/title-5-inactive.png new file mode 100644 index 00000000..351553c4 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/title-5-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/top-left-active.png b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/top-left-active.png new file mode 100644 index 00000000..d9a57a38 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/top-left-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/top-left-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/top-left-inactive.png new file mode 100644 index 00000000..c9e23429 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/top-left-inactive.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/top-right-active.png b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/top-right-active.png new file mode 100644 index 00000000..42a941b6 Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/top-right-active.png differ diff --git a/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/top-right-inactive.png b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/top-right-inactive.png new file mode 100644 index 00000000..8211604b Binary files /dev/null and b/releng/airootfs/etc/skel/.themes/Yaru/xfwm4/top-right-inactive.png differ diff --git a/releng/airootfs/etc/systemd/system/display-manager.service b/releng/airootfs/etc/systemd/system/display-manager.service index 43e48b18..56f1df20 120000 --- a/releng/airootfs/etc/systemd/system/display-manager.service +++ b/releng/airootfs/etc/systemd/system/display-manager.service @@ -1 +1 @@ -/usr/lib/systemd/system/gdm.service \ No newline at end of file +/usr/lib/systemd/system/sddm.service \ No newline at end of file diff --git a/releng/airootfs/root/calamares-build/etc/calamares/branding/default/branding.desc b/releng/airootfs/root/calamares-build/etc/calamares/branding/default/branding.desc index 27325094..ed33d946 100644 --- a/releng/airootfs/root/calamares-build/etc/calamares/branding/default/branding.desc +++ b/releng/airootfs/root/calamares-build/etc/calamares/branding/default/branding.desc @@ -83,13 +83,13 @@ navigation: widget # nem pedig a globális megjelenési beállításokat. strings: - productName: RaveOS GNOME Gaming Linux 1.0 - shortProductName: RaveOS GNOME Gaming Linux 1.0 + productName: RaveOS GNOME Gaming Linux 1.1 + shortProductName: RaveOS GNOME Gaming Linux 1.1 version: 2025.02 shortVersion: 2025.02 - versionedName: RaveOS GNOME Gaming Linux 1.0 + versionedName: RaveOS GNOME Gaming Linux 1.1 shortVersionedName: ROSG - bootloaderEntryName: RaveOS GNOME Gaming Linux 1.0 + bootloaderEntryName: RaveOS GNOME Gaming Linux 1.1 images: productIcon: "raveos-icon.jpg" diff --git a/releng/airootfs/root/raveos-sddm/Main.qml b/releng/airootfs/root/raveos-sddm/Main.qml new file mode 100644 index 00000000..9d4f9f5b --- /dev/null +++ b/releng/airootfs/root/raveos-sddm/Main.qml @@ -0,0 +1,329 @@ +import QtQuick 2.15 +import QtQuick.Controls 2.15 +import QtQuick.Layouts 1.15 +import QtGraphicalEffects 1.15 +import org.kde.plasma.core 2.0 as PlasmaCore +import org.kde.plasma.components 3.0 as PlasmaComponents +import QtQuick.Window 2.15 + +Rectangle { + id: root + width: Window.width + height: Window.height + color: "black" + + // Property a kiválasztott felhasználónak + property string currentUser: userModel.lastUser || "" + property int defaultSession: { + // Keressük meg a Wayland session indexét + for (var i = 0; i < sessionModel.rowCount(); i++) { + var session = sessionModel.data(sessionModel.index(i, 0), Qt.UserRole + 4) // session file path + if (session.indexOf("wayland") !== -1) { + return i + } + } + return sessionModel.lastIndex // Ha nem találtunk wayland-et, használjuk az utolsót + } + + Component.onCompleted: { + // Alapértelmezett felhasználó és session beállítása + if (userModel.lastUser !== "") { + currentUser = userModel.lastUser + } else { + for (var i = 0; i < userModel.count; i++) { + var userName = userModel.data(userModel.index(i, 0), Qt.UserRole + 1) + if (userName && userName !== "") { + currentUser = userName + break + } + } + } + } + + // Háttérkép blur effekttel + Item { + id: backgroundItem + anchors.fill: parent + + Image { + id: backgroundImage + anchors.fill: parent + source: config.background || "background.png" + fillMode: Image.PreserveAspectCrop + asynchronous: true + cache: true + clip: true + mipmap: true + visible: false + } + + FastBlur { + anchors.fill: backgroundImage + source: backgroundImage + radius: 32 + cached: true + } + } + + // Power gombok konténere + Rectangle { + id: powerButtonsContainer + width: powerButton.width + restartButton.width + 20 + height: powerButton.height + color: "transparent" + anchors { + right: parent.right + bottom: parent.bottom + rightMargin: parent.width * 0.02 + bottomMargin: parent.height * 0.02 + } + + // Restart gomb + Rectangle { + id: restartButton + width: 40 + height: 40 + radius: width / 2 + color: Qt.rgba(255, 255, 255, 0.2) + border.color: Qt.rgba(255, 255, 255, 0.3) + border.width: 1 + anchors { + right: powerButton.left + rightMargin: 20 + } + + PlasmaCore.IconItem { + id: restartIcon + anchors.centerIn: parent + source: "system-reboot" + width: parent.width * 0.6 + height: width + colorGroup: PlasmaCore.Theme.ComplementaryColorGroup + } + + MouseArea { + anchors.fill: parent + hoverEnabled: true + onClicked: sddm.reboot() + onEntered: parent.color = Qt.rgba(255, 255, 255, 0.3) + onExited: parent.color = Qt.rgba(255, 255, 255, 0.2) + } + + layer.enabled: true + layer.effect: DropShadow { + horizontalOffset: 0 + verticalOffset: 0 + radius: 8.0 + samples: 17 + color: "#80000000" + } + } + + // Power gomb + Rectangle { + id: powerButton + width: 40 + height: 40 + radius: width / 2 + color: Qt.rgba(255, 255, 255, 0.2) + border.color: Qt.rgba(255, 255, 255, 0.3) + border.width: 1 + anchors.right: parent.right + + PlasmaCore.IconItem { + id: powerIcon + anchors.centerIn: parent + source: "system-shutdown" + width: parent.width * 0.6 + height: width + colorGroup: PlasmaCore.Theme.ComplementaryColorGroup + } + + MouseArea { + anchors.fill: parent + hoverEnabled: true + onClicked: sddm.powerOff() + onEntered: parent.color = Qt.rgba(255, 255, 255, 0.3) + onExited: parent.color = Qt.rgba(255, 255, 255, 0.2) + } + + layer.enabled: true + layer.effect: DropShadow { + horizontalOffset: 0 + verticalOffset: 0 + radius: 8.0 + samples: 17 + color: "#80000000" + } + } + } + + // Fő bejelentkező konténer + Item { + id: mainLoginContainer + anchors.horizontalCenter: parent.horizontalCenter + anchors.bottom: parent.bottom + anchors.bottomMargin: parent.height * 0.15 + width: Math.min(parent.width * 0.3, 400) + height: loginBox.height + passwordContainer.height + 40 + + // Profilkép és felhasználónév konténer + Rectangle { + id: loginBox + width: parent.width + height: profileContainer.height + usernameText.height + 20 + color: "transparent" + anchors.bottom: passwordContainer.top + anchors.bottomMargin: 20 + + Rectangle { + id: profileContainer + width: 90 + height: width + radius: width/2 + anchors.horizontalCenter: parent.horizontalCenter + anchors.top: parent.top + color: "transparent" + + Image { + id: profileImage + anchors.fill: parent + source: config.face || "face.png" + fillMode: Image.PreserveAspectCrop + layer.enabled: true + layer.effect: OpacityMask { + maskSource: Rectangle { + width: profileImage.width + height: profileImage.height + radius: width/2 + } + } + } + + layer.enabled: true + layer.effect: DropShadow { + horizontalOffset: 0 + verticalOffset: 0 + radius: 8.0 + samples: 17 + color: "#80000000" + } + } + + Text { + id: usernameText + anchors.top: profileContainer.bottom + anchors.topMargin: 10 + anchors.horizontalCenter: parent.horizontalCenter + text: currentUser + color: "white" + font.family: "SF Pro Display" + font.pointSize: 14 + opacity: 0.9 + } + } + + // Jelszó mező konténer + Rectangle { + id: passwordContainer + anchors.bottom: parent.bottom + anchors.horizontalCenter: parent.horizontalCenter + width: 200 + height: 36 + radius: height / 2 + color: Qt.rgba(255, 255, 255, 0.2) + border.color: Qt.rgba(255, 255, 255, 0.3) + border.width: 1 + + TextField { + id: passwordField + anchors.fill: parent + anchors.margins: 2 + verticalAlignment: TextInput.AlignVCenter + horizontalAlignment: TextInput.AlignHCenter + echoMode: TextInput.Password + placeholderText: "Enter Password" + font.family: "SF Pro Display" + font.pointSize: 12 + focus: true + + background: Rectangle { + color: "transparent" + radius: parent.height / 2 + } + + color: "white" + + onAccepted: { + if (currentUser !== "") { + // Használjuk az alapértelmezett wayland session-t + sddm.login(currentUser, text, defaultSession) + } + } + + Component.onCompleted: { + forceActiveFocus() + } + } + } + } + + // OS Logo + Image { + id: osLogo + source: config["os-logo"] || "rave-os-2.png" + width: 150 + height: 50 + fillMode: Image.PreserveAspectFit + anchors { + horizontalCenter: parent.horizontalCenter + top: mainLoginContainer.bottom + topMargin: parent.height * 0.05 + } + antialiasing: true + } + + // Felső óra és dátum + Column { + id: timeColumn + anchors { + horizontalCenter: parent.horizontalCenter + bottom: mainLoginContainer.top + bottomMargin: parent.height * 0.02 + } + spacing: 5 + + Text { + id: dateText + text: Qt.formatDateTime(new Date(), "dddd, MMMM d") + color: Qt.rgba(1, 1, 1, 0.7) + font.pointSize: 18 + font.family: "SF Pro Display" + font.weight: Font.Bold + anchors.horizontalCenter: parent.horizontalCenter + } + + Text { + id: timeText + text: Qt.formatDateTime(new Date(), "HH:mm") + color: Qt.rgba(1, 1, 1, 0.7) + font.pointSize: 66 + font.family: "SF Pro Display" + font.weight: Font.Bold + anchors.horizontalCenter: parent.horizontalCenter + renderType: Text.QtRendering + smooth: true + antialiasing: true + } + } + + Timer { + interval: 1000 + running: true + repeat: true + onTriggered: { + timeText.text = Qt.formatDateTime(new Date(), "HH:mm") + dateText.text = Qt.formatDateTime(new Date(), "dddd, MMMM d") + } + } +} diff --git a/releng/airootfs/root/raveos-sddm/background.png b/releng/airootfs/root/raveos-sddm/background.png new file mode 100644 index 00000000..477c3e12 Binary files /dev/null and b/releng/airootfs/root/raveos-sddm/background.png differ diff --git a/releng/airootfs/root/raveos-sddm/face.png b/releng/airootfs/root/raveos-sddm/face.png new file mode 100644 index 00000000..138f1247 Binary files /dev/null and b/releng/airootfs/root/raveos-sddm/face.png differ diff --git a/releng/airootfs/root/raveos-sddm/rave-os-2.png b/releng/airootfs/root/raveos-sddm/rave-os-2.png new file mode 100644 index 00000000..e0a6f862 Binary files /dev/null and b/releng/airootfs/root/raveos-sddm/rave-os-2.png differ diff --git a/releng/airootfs/root/raveos-sddm/theme.conf b/releng/airootfs/root/raveos-sddm/theme.conf new file mode 100644 index 00000000..1b2442ee --- /dev/null +++ b/releng/airootfs/root/raveos-sddm/theme.conf @@ -0,0 +1,6 @@ +[General] +background=background.png +type=image +backgroundSize=fill +face=face.png +os-logo=rave-os-2.png diff --git a/releng/airootfs/root/raveos-sddm/theme.directory b/releng/airootfs/root/raveos-sddm/theme.directory new file mode 100644 index 00000000..d2b704e9 --- /dev/null +++ b/releng/airootfs/root/raveos-sddm/theme.directory @@ -0,0 +1,6 @@ +[Desktop Entry] +Name=RaveOS Theme +Comment=SDDM RaveOS theme code by Airmancooma design by RavePriest1 +Type=Theme +Version=1.0 +Author=Airmancooma, RavePriest1 diff --git a/releng/airootfs/root/ros-settings.sh b/releng/airootfs/root/ros-settings.sh index 06c03835..1209797a 100644 --- a/releng/airootfs/root/ros-settings.sh +++ b/releng/airootfs/root/ros-settings.sh @@ -11,6 +11,8 @@ mv "${SOURCE_DIR}/archlinux-logo-text-dark.svg" /usr/share/pixmaps/ cp "${SOURCE_DIR}/view-app-grid-symbolic.svg" /usr/share/icons/Yaru/scalable/actions/ mv "${SOURCE_DIR}/view-app-grid-symbolic.svg" /home/$USER/.icons/Yaru/scalable/actions/ +mv "${SOURCE_DIR}/raveos-sddm" /usr/share/sddm/themes/ + chmod 755 /usr/share/pixmaps/raveos-logo.svg chmod 755 /usr/share/pixmaps/archlinux-logo-text.svg chmod 755 /usr/share/pixmaps/archlinux-logo-text-dark.svg @@ -19,6 +21,8 @@ chmod 755 /usr/share/pixmaps/faces/rave-pp.png chmod 755 /usr/share/icons/Yaru/scalable/actions/view-app-grid-symbolic.svg chmod 755 /home/$USER/.icons/Yaru/scalable/actions/ +chmod 755 /usr/share/sddm/themes/raveos-sddm + systemctl mask sleep.target suspend.target hibernate.target hybrid-sleep.target geoclue.service curl -Ls https://links.rp1.hu/progsgui -o /usr/local/bin/progs/3progs.sh @@ -45,10 +49,3 @@ rm /usr/share/applications/cmake-gui.desktop rm /usr/share/applications/lftp.desktop rm /usr/share/applications/stoken.desktop rm /usr/share/applications/stoken-gui.desktop - -#echo "[User] -#Session= -#Icon=/usr/share/pixmaps/faces/rave-pp.png -#SystemAccount=false" | tee /var/lib/AccountsService/users/$USER - - diff --git a/releng/airootfs/usr/local/bin/base-install b/releng/airootfs/usr/local/bin/base-install index 0b6a428a..6ed0e01e 100755 --- a/releng/airootfs/usr/local/bin/base-install +++ b/releng/airootfs/usr/local/bin/base-install @@ -142,7 +142,7 @@ EOF # Nem kezeljük a BTRFS + LUKS kombinációt, áttérünk a nem titkosított btrfs kezelésre cat > /boot/loader/entries/raveos.conf << EOF -title RaveOS GNOME Gaming 1.0 +title RaveOS GNOME Gaming 1.1 linux /vmlinuz-linux-zen $CPU_UCODE initrd /initramfs-linux-zen.img @@ -152,7 +152,7 @@ EOF # Ez csak ext4 vagy más fájlrendszer + LUKS esetén fut le echo "EXT4 + LUKS konfiguráció létrehozása" cat > /boot/loader/entries/raveos.conf << EOF -title RaveOS GNOME Gaming 1.0 - LUKS+EXT4 +title RaveOS GNOME Gaming 1.1 - LUKS+EXT4 linux /vmlinuz-linux-zen $CPU_UCODE initrd /initramfs-linux-zen.img @@ -164,7 +164,7 @@ EOF if [ "$FS_TYPE" = "btrfs" ]; then echo "BTRFS konfiguráció létrehozása (nem titkosított)" cat > /boot/loader/entries/raveos.conf << EOF -title RaveOS GNOME Gaming 1.0 +title RaveOS GNOME Gaming 1.1 linux /vmlinuz-linux-zen $CPU_UCODE initrd /initramfs-linux-zen.img @@ -173,7 +173,7 @@ EOF else echo "Alapértelmezett konfiguráció létrehozása (nem titkosított)" cat > /boot/loader/entries/raveos.conf << EOF -title RaveOS GNOME Gaming 1.0 +title RaveOS GNOME Gaming 1.1 linux /vmlinuz-linux-zen $CPU_UCODE initrd /initramfs-linux-zen.img @@ -189,7 +189,7 @@ EOF # Bootentry létrehozása echo "Bootentry létrehozása az EFI firmware-ben: $EFI_DISK, partíció: $EFI_PART" efibootmgr --create --disk "$EFI_DISK" --part "$EFI_PART" \ - --loader /EFI/systemd/systemd-bootx64.efi --label "RaveOS GNOME Gaming" \ + --loader /EFI/systemd/systemd-bootx64.efi --label "RaveOS GNOME Gaming 1.1" \ --verbose echo "Systemd-boot telepítése sikeres" @@ -279,7 +279,7 @@ else echo "GRUB telepítése..." pacman -S grub --noconfirm grub-install --target=i386-pc --recheck /dev/sda - sed -i 's/GRUB_DISTRIBUTOR=.*$/GRUB_DISTRIBUTOR="RaveOS GNOME Gaming Linux"/' /etc/default/grub + sed -i 's/GRUB_DISTRIBUTOR=.*$/GRUB_DISTRIBUTOR="RaveOS GNOME Gaming 1.1 Linux"/' /etc/default/grub # GRUB konfiguráció generálása echo "GRUB konfiguráció generálása..." diff --git a/releng/airootfs/usr/local/bin/displaymanager-check b/releng/airootfs/usr/local/bin/displaymanager-check deleted file mode 100755 index 28087992..00000000 --- a/releng/airootfs/usr/local/bin/displaymanager-check +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/bash -#set -e - -# Base scripts Author : Erik Dubois -# Website : https://www.erikdubois.be -# Website : https://www.arcolinux.info -# Website : https://www.arcolinux.com -# Website : https://www.arcolinuxd.com -# Website : https://www.arcolinuxb.com -# Website : https://www.arcolinuxiso.com -# Website : https://www.arcolinuxforum.com - -package=sddm -if pacman -Qs $package > /dev/null ; then - ln -sf /usr/lib/systemd/system/sddm.service /etc/systemd/system/display-manager.service -fi -package=gdm -if pacman -Qs $package > /dev/null ; then - ln -sf /usr/lib/systemd/system/gdm.service /etc/systemd/system/display-manager.service -fi -package=lxdm -if pacman -Qs $package > /dev/null ; then - ln -sf /usr/lib/systemd/system/lxdm.service /etc/systemd/system/display-manager.service -fi -package=lightdm -if pacman -Qs $package > /dev/null ; then - ln -sf /usr/lib/systemd/system/lightdm.service /etc/systemd/system/display-manager.service -fi diff --git a/releng/airootfs/usr/local/bin/fix-keys b/releng/airootfs/usr/local/bin/fix-keys deleted file mode 100755 index e8bccc44..00000000 --- a/releng/airootfs/usr/local/bin/fix-keys +++ /dev/null @@ -1,116 +0,0 @@ -#!/bin/bash -#set -e -################################################################################################################## -# Author : Erik Dubois -# Website : https://www.erikdubois.be -# Website : https://www.alci.online -# Website : https://www.arcolinux.info -# Website : https://www.arcolinux.com -# Website : https://www.arcolinuxd.com -# Website : https://www.arcolinuxb.com -# Website : https://www.arcolinuxiso.com -# Website : https://www.arcolinuxforum.com -################################################################################################################## -# -# DO NOT JUST RUN THIS. EXAMINE AND JUDGE. RUN AT YOUR OWN RISK. -# -################################################################################################################## -#tput setaf 0 = black -#tput setaf 1 = red -#tput setaf 2 = green -#tput setaf 3 = yellow -#tput setaf 4 = dark blue -#tput setaf 5 = purple -#tput setaf 6 = cyan -#tput setaf 7 = gray -#tput setaf 8 = light blue -################################################################################################################## - -Online=0 - -function check_connectivity() { - - local test_ip - local test_count - - test_ip="8.8.8.8" - test_count=1 - - if ping -c ${test_count} ${test_ip} > /dev/null; then - tput setaf 2 - echo - echo "You are online" - echo - tput sgr0 - Online=1 - else - tput setaf 1 - echo - echo "You are not connected to the internet" - echo "We can not download the latest archlinux-keyring package" - echo - echo "Make sure you are online to retrieve packages" - echo - tput sgr0 - Online=0 - fi - } - -check_connectivity - -if [ $Online -eq 1 ] ; then - tput setaf 2 - echo - echo "Installing the latest archlinux-keyring package from the internet" - echo - tput sgr0 - pacman -Sy archlinux-keyring --noconfirm - echo -fi - -echo "###############################################################################" -echo "Removing the pacman databases at /var/lib/pacman/sync/*" -echo "###############################################################################" -echo -rm /var/lib/pacman/sync/* -echo - -echo "###############################################################################" -echo "Removing /etc/pacman.d/gnupg folder" -echo "###############################################################################" -echo -rm -rf /etc/pacman.d/gnupg/* -echo - -echo "###############################################################################" -echo "Initialize pacman keys with pacman-key --init" -echo "###############################################################################" -echo -pacman-key --init -echo - -echo "###############################################################################" -echo "Populating keyring with pacman-key --populate" -echo "###############################################################################" -echo -pacman-key --populate -echo - -echo "###############################################################################" -echo "Adding Ubuntu keyserver to /etc/pacman.d/gnupg/gpg.conf" -echo "###############################################################################" -echo -echo " -keyserver hkp://keyserver.ubuntu.com:80" | tee --append /etc/pacman.d/gnupg/gpg.conf - -echo -echo "###############################################################################" -echo "Getting new databases with pacman -Sy" -echo "###############################################################################" -echo -pacman -Sy -echo - -echo "###############################################################################" -echo "### DONE - YOU CAN CLOSE THIS WINDOW ####" -echo "###############################################################################" \ No newline at end of file diff --git a/releng/airootfs/usr/local/bin/virtual-machine-check b/releng/airootfs/usr/local/bin/virtual-machine-check deleted file mode 100755 index 4612ae22..00000000 --- a/releng/airootfs/usr/local/bin/virtual-machine-check +++ /dev/null @@ -1,188 +0,0 @@ -#!/bin/bash -#set -e - -# Base scripts Author : Erik Dubois -# Website : https://www.erikdubois.be -# Website : https://www.arcolinux.info -# Website : https://www.arcolinux.com -# Website : https://www.arcolinuxd.com -# Website : https://www.arcolinuxb.com -# Website : https://www.arcolinuxiso.com -# Website : https://www.arcolinuxforum.com - -echo "###########################################" -echo "Start virtual machine check" -echo "###########################################" - -result=$(systemd-detect-virt) - -pacman -Sy - -while [ -e "/var/lib/pacman/db.lck" ]; -do - echo 'Pacman is not ready yet. Will try again in 5 seconds.' - seconds=$(($seconds + 5)) - sleep 5 - if [[ "$seconds" == "30" ]]; then - echo 'Warning: removing pacman db.lck!' - rm /var/lib/pacman/db.lck - fi -done - -echo "You are working on "$result - -if [ $result = "oracle" ]; - then - #remove vmware - if [ -f /etc/xdg/autostart/vmware-user.desktop ]; then - rm /etc/xdg/autostart/vmware-user.desktop - echo "Removed vmware-user.desktop" - fi - - if pacman -Qi open-vm-tools &> /dev/null; then - systemctl disable vmware-vmblock-fuse.service - systemctl disable vmtoolsd.service - echo "Disabled vmtoolsd.service" - pacman -Rns open-vm-tools --noconfirm - echo "Removed open-vm-tools" - fi - - if pacman -Qi xf86-video-vmware &> /dev/null; then - pacman -Rns xf86-video-vmware --noconfirm - echo "Removed xf86-video-vmware" - fi - - if [ -f /etc/systemd/system/multi-user.target.wants/vmtoolsd.service ]; then - rm /etc/systemd/system/multi-user.target.wants/vmtoolsd.service - echo "Removed vmtoolsd.service if still exists" - fi - - #remove qemu - if pacman -Qi qemu-guest-agent &> /dev/null; then - systemctl disable qemu-guest-agent.service - pacman -Rns qemu-guest-agent --noconfirm - echo "Removed qemu-guest-agent" - fi -fi - -if [ $result = "kvm" ]; - then - #remove vmware - if [ -f /etc/xdg/autostart/vmware-user.desktop ]; then - rm /etc/xdg/autostart/vmware-user.desktop - echo "Removed vmware-user.desktop" - fi - - if pacman -Qi open-vm-tools &> /dev/null; then - systemctl disable vmware-vmblock-fuse.service - systemctl disable vmtoolsd.service - echo "Disabled vmtoolsd.service" - pacman -Rns open-vm-tools --noconfirm - echo "Removed open-vm-tools" - fi - - if pacman -Qi xf86-video-vmware &> /dev/null; then - pacman -Rns xf86-video-vmware --noconfirm - echo "Removed xf86-video-vmware" - fi - - if [ -f /etc/systemd/system/multi-user.target.wants/vmtoolsd.service ]; then - rm /etc/systemd/system/multi-user.target.wants/vmtoolsd.service - echo "Removed vmtoolsd.service if still exists" - fi - - #remove virtualbox - if pacman -Qi virtualbox-guest-utils &> /dev/null; then - systemctl disable vboxservice.service - pacman -Rns virtualbox-guest-utils --noconfirm - echo "Removed virtualbox-guest-utils" - fi - if pacman -Qi virtualbox-guest-utils-nox &> /dev/null; then - systemctl disable vboxservice.service - pacman -Rns virtualbox-guest-utils-nox --noconfirm - echo "Removed virtualbox-guest-utils-nox" - fi -fi - -if [ $result = "vmware" ]; - then - #remove virtualbox - if pacman -Qi virtualbox-guest-utils &> /dev/null; then - systemctl disable vboxservice.service - pacman -Rns virtualbox-guest-utils --noconfirm - echo "Removed virtualbox-guest-utils" - fi - if pacman -Qi virtualbox-guest-utils-nox &> /dev/null; then - systemctl disable vboxservice.service - pacman -Rns virtualbox-guest-utils-nox --noconfirm - echo "Removed virtualbox-guest-utils-nox" - fi - - #remove qemu - if pacman -Qi qemu-guest-agent &> /dev/null; then - systemctl disable qemu-guest-agent.service - pacman -Rns qemu-guest-agent --noconfirm - echo "Removed qemu-guest-agent" - fi -fi - -if [ $result = "none" ]; - then - #remove virtualbox - if pacman -Qi virtualbox-guest-utils &> /dev/null; then - systemctl disable vboxservice.service - pacman -Rns virtualbox-guest-utils --noconfirm - echo "Removed virtualbox-guest-utils" - fi - - if pacman -Qi virtualbox-guest-utils-nox &> /dev/null; then - systemctl disable vboxservice.service - pacman -Rns virtualbox-guest-utils-nox --noconfirm - echo "Removed virtualbox-guest-utils-nox" - fi - - #remove vmware - if [ -f /etc/xdg/autostart/vmware-user.desktop ]; then - rm /etc/xdg/autostart/vmware-user.desktop - echo "Removed vmware-user.desktop" - fi - - if pacman -Qi open-vm-tools &> /dev/null; then - systemctl disable vmware-vmblock-fuse.service - systemctl disable vmtoolsd.service - echo "Disabled vmtoolsd.service" - pacman -Rns open-vm-tools --noconfirm - echo "Removed open-vm-tools" - fi - - if pacman -Qi xf86-video-vmware &> /dev/null; then - pacman -Rns xf86-video-vmware --noconfirm - echo "Removed xf86-video-vmware" - fi - - if [ -f /etc/systemd/system/multi-user.target.wants/vmtoolsd.service ]; then - rm /etc/systemd/system/multi-user.target.wants/vmtoolsd.service - echo "Removed vmtoolsd.service if still exists" - fi - - #remove qemu - if pacman -Qi qemu-guest-agent &> /dev/null; then - systemctl disable qemu-guest-agent.service - pacman -Rns qemu-guest-agent --noconfirm - echo "Removed qemu-guest-agent" - fi - - if [ -f /usr/local/bin/arcolinux-virtual-machine-check ]; then - rm /usr/local/bin/arcolinux-virtual-machine-check - echo "Removed avm-check script" - fi - - if [ -L /etc/systemd/system/multi-user.target.wants/virtual-machine-check.service ]; then - rm /etc/systemd/system/multi-user.target.wants/virtual-machine-check.service - echo "Removed avm-check script" - fi -fi - -echo "########################################" -echo "End virtual machine check" -echo "########################################" diff --git a/releng/airootfs/usr/local/share/applications/rp-backup-restore.desktop b/releng/airootfs/usr/local/share/applications/rp-backup-restore.desktop new file mode 100644 index 00000000..d47ce28e --- /dev/null +++ b/releng/airootfs/usr/local/share/applications/rp-backup-restore.desktop @@ -0,0 +1,15 @@ +[Desktop Entry] +Type=Application +Hidden=false +NoDisplay=false +Terminal=true +Name[en_GB]=RP-Backup-Restore +Name[hu_HU]=RP-Backup-Restore +Name=RP-Backup-Restore +Comment[en_GB]= +Comment[hu_HU]= +Comment= +Icon=/usr/share/backgrounds/backup-restore.png +Exec=/usr/local/bin/progs/ros-backup-restore.sh + + diff --git a/releng/airootfs/usr/local/share/applications/rp-colour-change.desktop b/releng/airootfs/usr/local/share/applications/rp-colour-change.desktop new file mode 100644 index 00000000..f6f2b966 --- /dev/null +++ b/releng/airootfs/usr/local/share/applications/rp-colour-change.desktop @@ -0,0 +1,13 @@ +[Desktop Entry] +Type=Application +Hidden=false +NoDisplay=false +Terminal=true +Name[en_GB]=RP-Colour-Change +Name[hu_HU]=RP-Szinvalto +Name=RP-Colour-Change +Comment[en_GB]= +Comment[hu_HU]= +Comment= +Icon=/usr/share/backgrounds/rp-colour-change-icon.png +Exec=/usr/share/themes/RosColours/ros-yaru.sh diff --git a/releng/airootfs/usr/local/share/applications/rp-programscript.desktop b/releng/airootfs/usr/local/share/applications/rp-programscript.desktop new file mode 100644 index 00000000..9dadbd3f --- /dev/null +++ b/releng/airootfs/usr/local/share/applications/rp-programscript.desktop @@ -0,0 +1,15 @@ +[Desktop Entry] +Type=Application +Hidden=false +NoDisplay=false +Terminal=true +Name[en_GB]=RP-ProgramScript +Name[hu_HU]=RP-ProgramScript +Name=RP-ProgramScript +Comment[en_GB]= +Comment[hu_HU]= +Comment= +Icon=/usr/share/backgrounds/rave-pp.png +Exec=/usr/local/bin/progs/3progs.sh + + diff --git a/releng/airootfs/usr/local/share/backgrounds/backup-restore.png b/releng/airootfs/usr/local/share/backgrounds/backup-restore.png new file mode 100644 index 00000000..f9297630 Binary files /dev/null and b/releng/airootfs/usr/local/share/backgrounds/backup-restore.png differ diff --git a/releng/airootfs/usr/local/share/backgrounds/rave-pp.png b/releng/airootfs/usr/local/share/backgrounds/rave-pp.png new file mode 100644 index 00000000..138f1247 Binary files /dev/null and b/releng/airootfs/usr/local/share/backgrounds/rave-pp.png differ diff --git a/releng/airootfs/usr/local/share/backgrounds/raveos-bg.png b/releng/airootfs/usr/local/share/backgrounds/raveos-bg.png new file mode 100644 index 00000000..477c3e12 Binary files /dev/null and b/releng/airootfs/usr/local/share/backgrounds/raveos-bg.png differ diff --git a/releng/airootfs/usr/local/share/backgrounds/rp-colour-change-icon.png b/releng/airootfs/usr/local/share/backgrounds/rp-colour-change-icon.png new file mode 100644 index 00000000..424dcf7e Binary files /dev/null and b/releng/airootfs/usr/local/share/backgrounds/rp-colour-change-icon.png differ diff --git a/releng/airootfs/usr/local/share/gnome-background-properties/rosbg.xml b/releng/airootfs/usr/local/share/gnome-background-properties/rosbg.xml new file mode 100644 index 00000000..520d020b --- /dev/null +++ b/releng/airootfs/usr/local/share/gnome-background-properties/rosbg.xml @@ -0,0 +1,12 @@ + + + + + RaveOS Background by DanyHolder + /usr/share/backgrounds/raveos-bg.png + zoom + solid + #ffffff + #000000 + + diff --git a/releng/airootfs/usr/share/gnome-shell/extensions/Vitals@CoreCoding.com/schemas/gschemas.compiled b/releng/airootfs/usr/share/gnome-shell/extensions/Vitals@CoreCoding.com/schemas/gschemas.compiled old mode 100755 new mode 100644 diff --git a/releng/airootfs/usr/share/gnome-shell/extensions/blur-my-shell@aunetx/schemas/gschemas.compiled b/releng/airootfs/usr/share/gnome-shell/extensions/blur-my-shell@aunetx/schemas/gschemas.compiled old mode 100755 new mode 100644 diff --git a/releng/airootfs/usr/share/gnome-shell/extensions/burn-my-windows@schneegans.github.com/schemas/gschemas.compiled b/releng/airootfs/usr/share/gnome-shell/extensions/burn-my-windows@schneegans.github.com/schemas/gschemas.compiled old mode 100755 new mode 100644 diff --git a/releng/airootfs/usr/share/gnome-shell/extensions/dash-to-dock@micxgx.gmail.com/schemas/gschemas.compiled b/releng/airootfs/usr/share/gnome-shell/extensions/dash-to-dock@micxgx.gmail.com/schemas/gschemas.compiled old mode 100755 new mode 100644 diff --git a/releng/airootfs/usr/share/gnome-shell/extensions/notification-timeout@chlumskyvaclav.gmail.com/schemas/gschemas.compiled b/releng/airootfs/usr/share/gnome-shell/extensions/notification-timeout@chlumskyvaclav.gmail.com/schemas/gschemas.compiled old mode 100755 new mode 100644 diff --git a/releng/airootfs/usr/share/gnome-shell/extensions/rounded-window-corners@fxgn/schemas/gschemas.compiled b/releng/airootfs/usr/share/gnome-shell/extensions/rounded-window-corners@fxgn/schemas/gschemas.compiled old mode 100755 new mode 100644 diff --git a/releng/airootfs/usr/share/gnome-shell/extensions/user-theme@gnome-shell-extensions.gcampax.github.com/schemas/gschemas.compiled b/releng/airootfs/usr/share/gnome-shell/extensions/user-theme@gnome-shell-extensions.gcampax.github.com/schemas/gschemas.compiled old mode 100755 new mode 100644 diff --git a/releng/efiboot/loader/entries/02-archiso-x86_64-speech-linux.conf b/releng/efiboot/loader/entries/02-archiso-x86_64-speech-linux.conf new file mode 100644 index 00000000..c0cb1c88 --- /dev/null +++ b/releng/efiboot/loader/entries/02-archiso-x86_64-speech-linux.conf @@ -0,0 +1,5 @@ +title Arch Linux install medium (x86_64, UEFI) with speech +sort-key 02 +linux /%INSTALL_DIR%/boot/x86_64/vmlinuz-linux +initrd /%INSTALL_DIR%/boot/x86_64/initramfs-linux.img +options archisobasedir=%INSTALL_DIR% archisosearchuuid=%ARCHISO_UUID% accessibility=on diff --git a/releng/efiboot/loader/entries/03-archiso-x86_64-memtest86+.conf b/releng/efiboot/loader/entries/03-archiso-x86_64-memtest86+.conf new file mode 100644 index 00000000..d0b305c9 --- /dev/null +++ b/releng/efiboot/loader/entries/03-archiso-x86_64-memtest86+.conf @@ -0,0 +1,3 @@ +title Memtest86+ +sort-key 03 +efi /boot/memtest86+/memtest.efi diff --git a/releng/packages.x86_64 b/releng/packages.x86_64 index 2b9a595e..9d74dafb 100644 --- a/releng/packages.x86_64 +++ b/releng/packages.x86_64 @@ -15,6 +15,7 @@ mkinitcpio-archiso mkinitcpio-nfs-utils pacman-mirrorlist archlinux-keyring +apparmor # Firmware és driverek amd-ucode @@ -164,7 +165,8 @@ noto-fonts-extra ttf-ubuntu-font-family # GUI és GNOME (Xorg-alapú) -gdm +#gdm +sddm gnome-shell gnome-session gnome-settings-daemon diff --git a/releng/pacman.conf b/releng/pacman.conf index bd4d019f..0f41618f 100644 --- a/releng/pacman.conf +++ b/releng/pacman.conf @@ -35,6 +35,7 @@ Architecture = auto # We cannot check disk space from within a chroot environment #CheckSpace #VerbosePkgLists +ILoveCandy ParallelDownloads = 5 #DownloadUser = alpm #DisableSandbox @@ -90,17 +91,12 @@ Include = /etc/pacman.d/mirrorlist #[multilib-testing] #Include = /etc/pacman.d/mirrorlist -[multilib] -Include = /etc/pacman.d/mirrorlist +#[multilib] +#Include = /etc/pacman.d/mirrorlist # An example of a custom package repository. See the pacman manpage for # tips on creating your own repositories. [custom] SigLevel = Optional TrustAll -#Server = file:///home/rave/RaveOS/RaveOS-GUI/RaveOS11/pkgs -Server = file:///home/airmancooma/Documents/OSs/RaveOS12/pkgs - - - - - +#Server = file:///home/custompkgs +Server = file:///build/build/pkgs diff --git a/releng/profiledef.sh b/releng/profiledef.sh index 8773f2e4..842a4c73 100644 --- a/releng/profiledef.sh +++ b/releng/profiledef.sh @@ -35,5 +35,5 @@ file_permissions=( ["/usr/share/applications/calamares.desktop"]="0:0:755" ["/usr/local/bin/rave"]="0:0:755" ["/etc/bash_completion.d/rave-comp.sh"]="0:0:755" - ["/root/ros-settings/custom.db"]="0:0:755" + ["/root/ros-settings"]="0:0:755" ) diff --git a/releng/syslinux/archiso_pxe-linux.cfg b/releng/syslinux/archiso_pxe-linux.cfg index 7f62f4e3..5d0f7414 100644 --- a/releng/syslinux/archiso_pxe-linux.cfg +++ b/releng/syslinux/archiso_pxe-linux.cfg @@ -4,8 +4,8 @@ Boot the Arch Linux install medium using NBD. It allows you to install Arch Linux or perform system maintenance. ENDTEXT MENU LABEL Arch Linux install medium (x86_64, NBD) -LINUX ::/%INSTALL_DIR%/boot/x86_64/vmlinuz-linux-zen -INITRD ::/%INSTALL_DIR%/boot/x86_64/initramfs-linux-zen.img +LINUX ::/%INSTALL_DIR%/boot/x86_64/vmlinuz-linux +INITRD ::/%INSTALL_DIR%/boot/x86_64/initramfs-linux.img APPEND archisobasedir=%INSTALL_DIR% archisosearchuuid=%ARCHISO_UUID% archiso_nbd_srv=${pxeserver} cms_verify=y SYSAPPEND 3 @@ -15,8 +15,8 @@ Boot the Arch Linux live medium using NFS. It allows you to install Arch Linux or perform system maintenance. ENDTEXT MENU LABEL Arch Linux install medium (x86_64, NFS) -LINUX ::/%INSTALL_DIR%/boot/x86_64/vmlinuz-linux-zen -INITRD ::/%INSTALL_DIR%/boot/x86_64/initramfs-linux-zen.img +LINUX ::/%INSTALL_DIR%/boot/x86_64/vmlinuz-linux +INITRD ::/%INSTALL_DIR%/boot/x86_64/initramfs-linux.img APPEND archisobasedir=%INSTALL_DIR% archiso_nfs_srv=${pxeserver}:/run/archiso/bootmnt cms_verify=y SYSAPPEND 3 @@ -26,7 +26,7 @@ Boot the Arch Linux live medium using HTTP. It allows you to install Arch Linux or perform system maintenance. ENDTEXT MENU LABEL Arch Linux install medium (x86_64, HTTP) -LINUX ::/%INSTALL_DIR%/boot/x86_64/vmlinuz-linux-zen -INITRD ::/%INSTALL_DIR%/boot/x86_64/initramfs-linux-zen.img +LINUX ::/%INSTALL_DIR%/boot/x86_64/vmlinuz-linux +INITRD ::/%INSTALL_DIR%/boot/x86_64/initramfs-linux.img APPEND archisobasedir=%INSTALL_DIR% archiso_http_srv=http://${pxeserver}/ cms_verify=y SYSAPPEND 3 diff --git a/releng/syslinux/archiso_sys-linux.cfg b/releng/syslinux/archiso_sys-linux.cfg index ed461463..919e1587 100644 --- a/releng/syslinux/archiso_sys-linux.cfg +++ b/releng/syslinux/archiso_sys-linux.cfg @@ -4,9 +4,9 @@ Boot the Arch Linux install medium on BIOS. It allows you to install Arch Linux or perform system maintenance. ENDTEXT MENU LABEL Arch Linux install medium (x86_64, BIOS) -LINUX /%INSTALL_DIR%/boot/x86_64/vmlinuz-linux-zen -INITRD /%INSTALL_DIR%/boot/x86_64/initramfs-linux-zen.img -APPEND archisobasedir=%INSTALL_DIR% archisosearchuuid=%ARCHISO_UUID% cow_spacesize=4G copytoram=n +LINUX /%INSTALL_DIR%/boot/x86_64/vmlinuz-linux +INITRD /%INSTALL_DIR%/boot/x86_64/initramfs-linux.img +APPEND archisobasedir=%INSTALL_DIR% archisosearchuuid=%ARCHISO_UUID% # Accessibility boot option LABEL arch64speech @@ -15,6 +15,6 @@ Boot the Arch Linux install medium on BIOS with speakup screen reader. It allows you to install Arch Linux or perform system maintenance with speech feedback. ENDTEXT MENU LABEL Arch Linux install medium (x86_64, BIOS) with ^speech -LINUX /%INSTALL_DIR%/boot/x86_64/vmlinuz-linux-zen -INITRD /%INSTALL_DIR%/boot/x86_64/initramfs-linux-zen.img -APPEND archisobasedir=%INSTALL_DIR% archisosearchuuid=%ARCHISO_UUID% accessibility=on cow_spacesize=4G copytoram=n +LINUX /%INSTALL_DIR%/boot/x86_64/vmlinuz-linux +INITRD /%INSTALL_DIR%/boot/x86_64/initramfs-linux.img +APPEND archisobasedir=%INSTALL_DIR% archisosearchuuid=%ARCHISO_UUID% accessibility=on diff --git a/releng/syslinux/splash.png b/releng/syslinux/splash.png index c14138f7..64b959a6 100644 Binary files a/releng/syslinux/splash.png and b/releng/syslinux/splash.png differ