diff --git a/.gitignore b/.gitignore index 2d1c41a..4a4c306 100644 --- a/.gitignore +++ b/.gitignore @@ -1,10 +1,11 @@ -/make_iso/.vscode -/make_iso/airootfs/opt/extra-drivers/*.pkg.tar.* -/make_iso/airootfs/root/packages/*.pkg.tar.* -/make_iso/airootfs/usr/share/packages/*.pkg.tar.* /boot/fd/* /boot/iso/* /boot/qcow2/* /boot/txt/* /boot/shell_scripts +/make_iso/.vscode +/make_iso/airootfs/opt/extra-drivers/*.pkg.tar.* +/make_iso/airootfs/root/packages/*.pkg.tar.* +/make_iso/airootfs/usr/share/packages/*.pkg.tar.* +/sf/* /work/* diff --git a/boot/melawy1-grub2.sh b/boot/melawy1-grub2.sh index eb60784..24acb62 100755 --- a/boot/melawy1-grub2.sh +++ b/boot/melawy1-grub2.sh @@ -14,26 +14,32 @@ if [[ $mem -lt 6144 ]]; then mem=6144 fi +if [[ $mem -gt 8192 ]]; then + mem=8192 +fi + fd="$name-OVMF_VARS.fd" if [ ! -f "./fd/$fd" ]; then cp -av -- '/usr/share/edk2-ovmf/x64/OVMF_VARS.fd' "./fd/$fd" fi -iso=$(find ./iso -name "*.iso" | grep -i "melawy" | tail -n 1) +iso=$(find ../sf -name "*.iso" | grep -i "melawy" | tail -n 1) qcow2="$name.qcow2" if [ ! -f "./qcow2/$qcow2" ]; then - qemu-img create -f qcow2 "./qcow2/$qcow2" 50G + qemu-img create -f qcow2 "./qcow2/$qcow2" 100G fi echo "CPU: $virt_cpu; MEM: $mem; ISO: $iso; DISK: $qcow2; NVRAM: $fd" random_num=$((1 + $RANDOM % 100)) +ssh_port=$(shuf -i 60000-61000 -n 1) + qemu-system-x86_64 \ --name MelawyLinux_$random_num,process=archiso_$random_num,guest=MelawyLinux_$random_num,debug-threads=on \ +-name MelawyLinux_${random_num}_ssh_port_${ssh_port},process=MelawyLinux_${random_num}_ssh_port_${ssh_port},guest=MelawyLinux_${random_num}_ssh_port_${ssh_port},debug-threads=on \ -drive "if=pflash,format=raw,unit=0,file=/usr/share/edk2-ovmf/x64/OVMF_CODE.fd,read-only=on" \ -drive "if=pflash,format=raw,unit=1,file=./fd/$fd" \ -global "driver=cfi.pflash01,property=secure,value=off" \ @@ -54,7 +60,7 @@ qemu-system-x86_64 \ -device ich9-intel-hda \ -device hda-output,audiodev=snd0 \ -device virtio-net-pci,romfile=,netdev=net0 \ --netdev user,id=net0,hostfwd=tcp::60022-:22 \ +-netdev user,id=net0,hostfwd=tcp::${ssh_port}-:22 \ -machine type=pc-q35-8.1,smm=on,accel=kvm,usb=on,vmport=off,dump-guest-core=off,hpet=off,acpi=on,pcspk-audiodev=snd0 \ -enable-kvm \ -msg timestamp=on diff --git a/boot/melawy1-refind.sh b/boot/melawy1-refind.sh index eb60784..24acb62 100755 --- a/boot/melawy1-refind.sh +++ b/boot/melawy1-refind.sh @@ -14,26 +14,32 @@ if [[ $mem -lt 6144 ]]; then mem=6144 fi +if [[ $mem -gt 8192 ]]; then + mem=8192 +fi + fd="$name-OVMF_VARS.fd" if [ ! -f "./fd/$fd" ]; then cp -av -- '/usr/share/edk2-ovmf/x64/OVMF_VARS.fd' "./fd/$fd" fi -iso=$(find ./iso -name "*.iso" | grep -i "melawy" | tail -n 1) +iso=$(find ../sf -name "*.iso" | grep -i "melawy" | tail -n 1) qcow2="$name.qcow2" if [ ! -f "./qcow2/$qcow2" ]; then - qemu-img create -f qcow2 "./qcow2/$qcow2" 50G + qemu-img create -f qcow2 "./qcow2/$qcow2" 100G fi echo "CPU: $virt_cpu; MEM: $mem; ISO: $iso; DISK: $qcow2; NVRAM: $fd" random_num=$((1 + $RANDOM % 100)) +ssh_port=$(shuf -i 60000-61000 -n 1) + qemu-system-x86_64 \ --name MelawyLinux_$random_num,process=archiso_$random_num,guest=MelawyLinux_$random_num,debug-threads=on \ +-name MelawyLinux_${random_num}_ssh_port_${ssh_port},process=MelawyLinux_${random_num}_ssh_port_${ssh_port},guest=MelawyLinux_${random_num}_ssh_port_${ssh_port},debug-threads=on \ -drive "if=pflash,format=raw,unit=0,file=/usr/share/edk2-ovmf/x64/OVMF_CODE.fd,read-only=on" \ -drive "if=pflash,format=raw,unit=1,file=./fd/$fd" \ -global "driver=cfi.pflash01,property=secure,value=off" \ @@ -54,7 +60,7 @@ qemu-system-x86_64 \ -device ich9-intel-hda \ -device hda-output,audiodev=snd0 \ -device virtio-net-pci,romfile=,netdev=net0 \ --netdev user,id=net0,hostfwd=tcp::60022-:22 \ +-netdev user,id=net0,hostfwd=tcp::${ssh_port}-:22 \ -machine type=pc-q35-8.1,smm=on,accel=kvm,usb=on,vmport=off,dump-guest-core=off,hpet=off,acpi=on,pcspk-audiodev=snd0 \ -enable-kvm \ -msg timestamp=on diff --git a/boot/melawy1-systemd-boot.sh b/boot/melawy1-systemd-boot.sh index eb60784..24acb62 100755 --- a/boot/melawy1-systemd-boot.sh +++ b/boot/melawy1-systemd-boot.sh @@ -14,26 +14,32 @@ if [[ $mem -lt 6144 ]]; then mem=6144 fi +if [[ $mem -gt 8192 ]]; then + mem=8192 +fi + fd="$name-OVMF_VARS.fd" if [ ! -f "./fd/$fd" ]; then cp -av -- '/usr/share/edk2-ovmf/x64/OVMF_VARS.fd' "./fd/$fd" fi -iso=$(find ./iso -name "*.iso" | grep -i "melawy" | tail -n 1) +iso=$(find ../sf -name "*.iso" | grep -i "melawy" | tail -n 1) qcow2="$name.qcow2" if [ ! -f "./qcow2/$qcow2" ]; then - qemu-img create -f qcow2 "./qcow2/$qcow2" 50G + qemu-img create -f qcow2 "./qcow2/$qcow2" 100G fi echo "CPU: $virt_cpu; MEM: $mem; ISO: $iso; DISK: $qcow2; NVRAM: $fd" random_num=$((1 + $RANDOM % 100)) +ssh_port=$(shuf -i 60000-61000 -n 1) + qemu-system-x86_64 \ --name MelawyLinux_$random_num,process=archiso_$random_num,guest=MelawyLinux_$random_num,debug-threads=on \ +-name MelawyLinux_${random_num}_ssh_port_${ssh_port},process=MelawyLinux_${random_num}_ssh_port_${ssh_port},guest=MelawyLinux_${random_num}_ssh_port_${ssh_port},debug-threads=on \ -drive "if=pflash,format=raw,unit=0,file=/usr/share/edk2-ovmf/x64/OVMF_CODE.fd,read-only=on" \ -drive "if=pflash,format=raw,unit=1,file=./fd/$fd" \ -global "driver=cfi.pflash01,property=secure,value=off" \ @@ -54,7 +60,7 @@ qemu-system-x86_64 \ -device ich9-intel-hda \ -device hda-output,audiodev=snd0 \ -device virtio-net-pci,romfile=,netdev=net0 \ --netdev user,id=net0,hostfwd=tcp::60022-:22 \ +-netdev user,id=net0,hostfwd=tcp::${ssh_port}-:22 \ -machine type=pc-q35-8.1,smm=on,accel=kvm,usb=on,vmport=off,dump-guest-core=off,hpet=off,acpi=on,pcspk-audiodev=snd0 \ -enable-kvm \ -msg timestamp=on diff --git a/boot/melawy2-grub2.sh b/boot/melawy2-grub2-net.sh similarity index 81% rename from boot/melawy2-grub2.sh rename to boot/melawy2-grub2-net.sh index eb60784..24acb62 100755 --- a/boot/melawy2-grub2.sh +++ b/boot/melawy2-grub2-net.sh @@ -14,26 +14,32 @@ if [[ $mem -lt 6144 ]]; then mem=6144 fi +if [[ $mem -gt 8192 ]]; then + mem=8192 +fi + fd="$name-OVMF_VARS.fd" if [ ! -f "./fd/$fd" ]; then cp -av -- '/usr/share/edk2-ovmf/x64/OVMF_VARS.fd' "./fd/$fd" fi -iso=$(find ./iso -name "*.iso" | grep -i "melawy" | tail -n 1) +iso=$(find ../sf -name "*.iso" | grep -i "melawy" | tail -n 1) qcow2="$name.qcow2" if [ ! -f "./qcow2/$qcow2" ]; then - qemu-img create -f qcow2 "./qcow2/$qcow2" 50G + qemu-img create -f qcow2 "./qcow2/$qcow2" 100G fi echo "CPU: $virt_cpu; MEM: $mem; ISO: $iso; DISK: $qcow2; NVRAM: $fd" random_num=$((1 + $RANDOM % 100)) +ssh_port=$(shuf -i 60000-61000 -n 1) + qemu-system-x86_64 \ --name MelawyLinux_$random_num,process=archiso_$random_num,guest=MelawyLinux_$random_num,debug-threads=on \ +-name MelawyLinux_${random_num}_ssh_port_${ssh_port},process=MelawyLinux_${random_num}_ssh_port_${ssh_port},guest=MelawyLinux_${random_num}_ssh_port_${ssh_port},debug-threads=on \ -drive "if=pflash,format=raw,unit=0,file=/usr/share/edk2-ovmf/x64/OVMF_CODE.fd,read-only=on" \ -drive "if=pflash,format=raw,unit=1,file=./fd/$fd" \ -global "driver=cfi.pflash01,property=secure,value=off" \ @@ -54,7 +60,7 @@ qemu-system-x86_64 \ -device ich9-intel-hda \ -device hda-output,audiodev=snd0 \ -device virtio-net-pci,romfile=,netdev=net0 \ --netdev user,id=net0,hostfwd=tcp::60022-:22 \ +-netdev user,id=net0,hostfwd=tcp::${ssh_port}-:22 \ -machine type=pc-q35-8.1,smm=on,accel=kvm,usb=on,vmport=off,dump-guest-core=off,hpet=off,acpi=on,pcspk-audiodev=snd0 \ -enable-kvm \ -msg timestamp=on diff --git a/boot/melawy2-refind.sh b/boot/melawy2-refind-net.sh similarity index 81% rename from boot/melawy2-refind.sh rename to boot/melawy2-refind-net.sh index eb60784..24acb62 100755 --- a/boot/melawy2-refind.sh +++ b/boot/melawy2-refind-net.sh @@ -14,26 +14,32 @@ if [[ $mem -lt 6144 ]]; then mem=6144 fi +if [[ $mem -gt 8192 ]]; then + mem=8192 +fi + fd="$name-OVMF_VARS.fd" if [ ! -f "./fd/$fd" ]; then cp -av -- '/usr/share/edk2-ovmf/x64/OVMF_VARS.fd' "./fd/$fd" fi -iso=$(find ./iso -name "*.iso" | grep -i "melawy" | tail -n 1) +iso=$(find ../sf -name "*.iso" | grep -i "melawy" | tail -n 1) qcow2="$name.qcow2" if [ ! -f "./qcow2/$qcow2" ]; then - qemu-img create -f qcow2 "./qcow2/$qcow2" 50G + qemu-img create -f qcow2 "./qcow2/$qcow2" 100G fi echo "CPU: $virt_cpu; MEM: $mem; ISO: $iso; DISK: $qcow2; NVRAM: $fd" random_num=$((1 + $RANDOM % 100)) +ssh_port=$(shuf -i 60000-61000 -n 1) + qemu-system-x86_64 \ --name MelawyLinux_$random_num,process=archiso_$random_num,guest=MelawyLinux_$random_num,debug-threads=on \ +-name MelawyLinux_${random_num}_ssh_port_${ssh_port},process=MelawyLinux_${random_num}_ssh_port_${ssh_port},guest=MelawyLinux_${random_num}_ssh_port_${ssh_port},debug-threads=on \ -drive "if=pflash,format=raw,unit=0,file=/usr/share/edk2-ovmf/x64/OVMF_CODE.fd,read-only=on" \ -drive "if=pflash,format=raw,unit=1,file=./fd/$fd" \ -global "driver=cfi.pflash01,property=secure,value=off" \ @@ -54,7 +60,7 @@ qemu-system-x86_64 \ -device ich9-intel-hda \ -device hda-output,audiodev=snd0 \ -device virtio-net-pci,romfile=,netdev=net0 \ --netdev user,id=net0,hostfwd=tcp::60022-:22 \ +-netdev user,id=net0,hostfwd=tcp::${ssh_port}-:22 \ -machine type=pc-q35-8.1,smm=on,accel=kvm,usb=on,vmport=off,dump-guest-core=off,hpet=off,acpi=on,pcspk-audiodev=snd0 \ -enable-kvm \ -msg timestamp=on diff --git a/boot/melawy2-systemd-boot.sh b/boot/melawy2-systemd-boot-net.sh similarity index 81% rename from boot/melawy2-systemd-boot.sh rename to boot/melawy2-systemd-boot-net.sh index eb60784..24acb62 100755 --- a/boot/melawy2-systemd-boot.sh +++ b/boot/melawy2-systemd-boot-net.sh @@ -14,26 +14,32 @@ if [[ $mem -lt 6144 ]]; then mem=6144 fi +if [[ $mem -gt 8192 ]]; then + mem=8192 +fi + fd="$name-OVMF_VARS.fd" if [ ! -f "./fd/$fd" ]; then cp -av -- '/usr/share/edk2-ovmf/x64/OVMF_VARS.fd' "./fd/$fd" fi -iso=$(find ./iso -name "*.iso" | grep -i "melawy" | tail -n 1) +iso=$(find ../sf -name "*.iso" | grep -i "melawy" | tail -n 1) qcow2="$name.qcow2" if [ ! -f "./qcow2/$qcow2" ]; then - qemu-img create -f qcow2 "./qcow2/$qcow2" 50G + qemu-img create -f qcow2 "./qcow2/$qcow2" 100G fi echo "CPU: $virt_cpu; MEM: $mem; ISO: $iso; DISK: $qcow2; NVRAM: $fd" random_num=$((1 + $RANDOM % 100)) +ssh_port=$(shuf -i 60000-61000 -n 1) + qemu-system-x86_64 \ --name MelawyLinux_$random_num,process=archiso_$random_num,guest=MelawyLinux_$random_num,debug-threads=on \ +-name MelawyLinux_${random_num}_ssh_port_${ssh_port},process=MelawyLinux_${random_num}_ssh_port_${ssh_port},guest=MelawyLinux_${random_num}_ssh_port_${ssh_port},debug-threads=on \ -drive "if=pflash,format=raw,unit=0,file=/usr/share/edk2-ovmf/x64/OVMF_CODE.fd,read-only=on" \ -drive "if=pflash,format=raw,unit=1,file=./fd/$fd" \ -global "driver=cfi.pflash01,property=secure,value=off" \ @@ -54,7 +60,7 @@ qemu-system-x86_64 \ -device ich9-intel-hda \ -device hda-output,audiodev=snd0 \ -device virtio-net-pci,romfile=,netdev=net0 \ --netdev user,id=net0,hostfwd=tcp::60022-:22 \ +-netdev user,id=net0,hostfwd=tcp::${ssh_port}-:22 \ -machine type=pc-q35-8.1,smm=on,accel=kvm,usb=on,vmport=off,dump-guest-core=off,hpet=off,acpi=on,pcspk-audiodev=snd0 \ -enable-kvm \ -msg timestamp=on diff --git a/make_iso/01_rank_mirrorlist.sh b/make_iso/01_rank_mirrorlist.sh index 8b875bf..bf8d664 100755 --- a/make_iso/01_rank_mirrorlist.sh +++ b/make_iso/01_rank_mirrorlist.sh @@ -2,7 +2,7 @@ sudo sed -i -e "s/#Server/Server/g" /etc/pacman.d/mirrorlist.pacnew sudo cp /etc/pacman.d/mirrorlist.pacnew /etc/pacman.d/mirrorlist -sudo reflector --save /etc/pacman.d/mirrorlist -c "CA,FI,FR,DE,IS,IE,IT,JP,KZ,LV,LU,NZ,NO,PL,PT,RU,SG,ES,SE,CH,TW,TH, " --protocol https,http,rsync --latest 50 --fastest 50 --sort rate +sudo reflector --save /etc/pacman.d/mirrorlist -c "CA,FI,FR,DE,IS,IE,IT,JP,KZ,LV,LU,NZ,NO,PL,PT,RU,SG,ES,SE,CH,TW,TH, " --protocol https --latest 50 --fastest 50 --sort rate cp -vf "/etc/pacman.d/mirrorlist" "./airootfs/etc/pacman.d/" diff --git a/make_iso/02_prepare.sh b/make_iso/02_prepare.sh index f349ccf..0c8b849 100755 --- a/make_iso/02_prepare.sh +++ b/make_iso/02_prepare.sh @@ -6,6 +6,8 @@ sudo pacman -Sy sudo pacman -Sw --config pacman_sys.conf --noconfirm --cachedir "./airootfs/opt/extra-drivers" r8168 +sudo mv -vf "./airootfs/opt/extra-drivers/linux"* "./airootfs/usr/share/packages/" + packs=( dracut grub-dracut @@ -36,6 +38,8 @@ done sudo paccache -rvk 1 --cachedir "./airootfs/opt/extra-drivers" sudo paccache -rvk 1 --cachedir "./airootfs/usr/share/packages" +# sudo rm "./airootfs/opt/extra-drivers/linux"* + notify-send -a "$(basename $(pwd)): Prepare" -t 999999999 "finished" "$(date '+%Y.%m.%d %H:%M:%S')" echo "Ready" diff --git a/make_iso/04_make.sh b/make_iso/04_make.sh index a113d17..c3ecc1d 100755 --- a/make_iso/04_make.sh +++ b/make_iso/04_make.sh @@ -1,23 +1,24 @@ #!/bin/bash -sudo ./mkarchiso_last_my -v "." - date_tag=$(date +%Y.%m.%d) iso_name="Melawy-linux-${date_tag}-x86_64.iso" -cp "../work/iso/arch/pkglist.x86_64.txt" "../boot/txt/Melawy-linux-${date_tag}-pkglist.txt" +mkdir -p ../sf/${date_tag} +sudo ./mkarchiso_last_my -v "." -echo "Sign ../boot/txt/${iso_name}.sig ../boot/iso/${iso_name}" -gpg --detach-sign --local-user BC8B600E8DDA1F4CB77B10D2BA803A261A5EE6B8 --output "../boot/txt/${iso_name}.sig" "../boot/iso/${iso_name}" +cp -vf "../work/iso/arch/pkglist.x86_64.txt" "../sf/${date_tag}/Melawy-linux-${date_tag}-pkglist.txt" + +echo "Sign ../sf/${date_tag}/${iso_name}.sig ../sf/${date_tag}/${iso_name}" +gpg --detach-sign --local-user BC8B600E8DDA1F4CB77B10D2BA803A261A5EE6B8 --output "../sf/${date_tag}/${iso_name}.sig" "../sf/${date_tag}/${iso_name}" -cd "../boot/iso/" +cd "../sf/${date_tag}" echo "sha1sum ${iso_name}" -sha1sum "${iso_name}" > "../../boot/txt/${iso_name}.sha1" +sha1sum "${iso_name}" > "${iso_name}.sha1" echo "sha256sum ${iso_name}" -sha256sum "${iso_name}" > "../../boot/txt/${iso_name}.sha256" +sha256sum "${iso_name}" > "${iso_name}.sha256" notify-send -a "$(basename $(pwd)): Make" -t 999999999 "finished" "$(date '+%Y.%m.%d %H:%M:%S')" diff --git a/make_iso/05_sign.sh b/make_iso/05_sign.sh index ce51e52..ae68ec3 100755 --- a/make_iso/05_sign.sh +++ b/make_iso/05_sign.sh @@ -1,24 +1,25 @@ #!/bin/bash - - date_tag=$(date +%Y.%m.%d) iso_name="Melawy-linux-${date_tag}-x86_64.iso" -cp "../work/iso/arch/pkglist.x86_64.txt" "../boot/txt/Melawy-linux-${date_tag}-pkglist.txt" - -echo "Sign ../boot/txt/${iso_name}.sig ../boot/iso/${iso_name}" -gpg --detach-sign --local-user BC8B600E8DDA1F4CB77B10D2BA803A261A5EE6B8 --output "../boot/txt/${iso_name}.sig" "../boot/iso/${iso_name}" -cd "../boot/iso/" + +cp -vf "../work/iso/arch/pkglist.x86_64.txt" "../sf/${date_tag}/Melawy-linux-${date_tag}-pkglist.txt" + +echo "Sign ../sf/${date_tag}/${iso_name}.sig ../sf/${date_tag}/${iso_name}" +gpg --detach-sign --local-user BC8B600E8DDA1F4CB77B10D2BA803A261A5EE6B8 --output "../sf/${date_tag}/${iso_name}.sig" "../sf/${date_tag}/${iso_name}" + + +cd "../sf/${date_tag}" echo "sha1sum ${iso_name}" -sha1sum "${iso_name}" > "../../boot/txt/${iso_name}.sha1" +sha1sum "${iso_name}" > "${iso_name}.sha1" echo "sha256sum ${iso_name}" -sha256sum "${iso_name}" > "../../boot/txt/${iso_name}.sha256" +sha256sum "${iso_name}" > "${iso_name}.sha256" -notify-send -a "$(basename $(pwd)): Make" -t 999999999 "finished" "$(date '+%Y.%m.%d %H:%M:%S')" +notify-send -a "$(basename $(pwd)): Sign" -t 999999999 "finished" "$(date '+%Y.%m.%d %H:%M:%S')" echo "Ready" diff --git a/make_iso/06_chown.sh b/make_iso/06_chown.sh index 21195e8..2fea8e1 100755 --- a/make_iso/06_chown.sh +++ b/make_iso/06_chown.sh @@ -1,5 +1,5 @@ #!/bin/bash -sudo chown -R 1000:1000 ../boot +sudo chown -R 1000:1000 ../sf echo "Ready" diff --git a/make_iso/README.md b/make_iso/README.md new file mode 100644 index 0000000..403f1e5 --- /dev/null +++ b/make_iso/README.md @@ -0,0 +1,2 @@ +# archiso-config +shell, config and profile files for making LiveDVD diff --git a/make_iso/airootfs/etc/dracut.conf.d/plymouth.conf b/make_iso/airootfs/etc/dracut.conf.d/plymouth.conf new file mode 100644 index 0000000..3d019a5 --- /dev/null +++ b/make_iso/airootfs/etc/dracut.conf.d/plymouth.conf @@ -0,0 +1 @@ +install_items+=" /usr/lib/plymouth/label.so /usr/lib/plymouth/text.so /etc/fonts/fonts.conf /usr/share/fonts/noto/NotoSansMono-Black.ttf /usr/share/fonts/noto/NotoSansMono-Bold.ttf /usr/share/fonts/noto/NotoSansMono-Light.ttf /usr/share/fonts/noto/NotoSansMono-Medium.ttf /usr/share/fonts/noto/NotoSansMono-Regular.ttf /usr/share/fonts/noto/NotoSansMono-Thin.ttf /usr/share/fonts/noto/NotoSans-BlackItalic.ttf /usr/share/fonts/noto/NotoSans-Black.ttf /usr/share/fonts/noto/NotoSans-BoldItalic.ttf /usr/share/fonts/noto/NotoSans-Bold.ttf /usr/share/fonts/noto/NotoSans-Italic.ttf /usr/share/fonts/noto/NotoSans-LightItalic.ttf /usr/share/fonts/noto/NotoSans-Light.ttf /usr/share/fonts/noto/NotoSans-MediumItalic.ttf /usr/share/fonts/noto/NotoSans-Medium.ttf /usr/share/fonts/noto/NotoSans-Regular.ttf /usr/share/fonts/noto/NotoSans-ThinItalic.ttf /usr/share/fonts/noto/NotoSans-Thin.ttf " diff --git a/make_iso/airootfs/etc/dracut.conf.d/resume-from-hibernate.conf b/make_iso/airootfs/etc/dracut.conf.d/resume-from-hibernate.conf new file mode 100644 index 0000000..e1b73c2 --- /dev/null +++ b/make_iso/airootfs/etc/dracut.conf.d/resume-from-hibernate.conf @@ -0,0 +1 @@ +add_dracutmodules+=" resume " diff --git a/make_iso/airootfs/etc/pacman.d/mirrorlist b/make_iso/airootfs/etc/pacman.d/mirrorlist index dae19b0..c90752a 100644 --- a/make_iso/airootfs/etc/pacman.d/mirrorlist +++ b/make_iso/airootfs/etc/pacman.d/mirrorlist @@ -2,59 +2,59 @@ ################# Arch Linux mirrorlist generated by Reflector ################# ################################################################################ -# With: reflector --save /etc/pacman.d/mirrorlist -c 'CA,FI,FR,DE,IS,IE,IT,JP,KZ,LV,LU,NZ,NO,PL,PT,RU,SG,ES,SE,CH,TW,TH, ' --protocol https,http,rsync --latest 50 --fastest 50 --sort rate -# When: 2023-11-04 21:36:16 UTC +# With: reflector --save /etc/pacman.d/mirrorlist -c 'CA,FI,FR,DE,IS,IE,IT,JP,KZ,LV,LU,NZ,NO,PL,PT,RU,SG,ES,SE,CH,TW,TH, ' --protocol https --latest 50 --fastest 50 --sort rate +# When: 2023-11-20 14:33:34 UTC # From: https://archlinux.org/mirrors/status/json/ -# Retrieved: 2023-11-04 21:34:31 UTC -# Last Check: 2023-11-04 21:17:09 UTC +# Retrieved: 2023-11-20 14:33:34 UTC +# Last Check: 2023-11-20 14:25:53 UTC -Server = http://arch.mirror.far.fi/$repo/os/$arch -Server = https://mirror.yal.sl-chat.ru/archlinux/$repo/os/$arch +Server = https://mirror.surf/archlinux/$repo/os/$arch +Server = https://arch.midov.pl/arch/$repo/os/$arch +Server = https://mirror.juniorjpdj.pl/archlinux/$repo/os/$arch +Server = https://mirror.wuki.li/archlinux/$repo/os/$arch +Server = https://arch.yhtez.xyz/$repo/os/$arch Server = https://mirror.kumi.systems/archlinux/$repo/os/$arch -Server = https://mirror.osbeck.com/archlinux/$repo/os/$arch -Server = https://mirror.hel.sl-chat.ru/archlinux/$repo/os/$arch Server = https://mirror.sunred.org/archlinux/$repo/os/$arch -Server = https://ftp.myrveln.se/pub/linux/archlinux/$repo/os/$arch +Server = https://mirror.osbeck.com/archlinux/$repo/os/$arch Server = https://pkg.adfinis.com/archlinux/$repo/os/$arch -Server = http://ftp.myrveln.se/pub/linux/archlinux/$repo/os/$arch -Server = http://pkg.adfinis.com/archlinux/$repo/os/$arch -Server = http://mirror.cyberbits.eu/archlinux/$repo/os/$arch +Server = https://mirror.yal.sl-chat.ru/archlinux/$repo/os/$arch +Server = https://ftp.myrveln.se/pub/linux/archlinux/$repo/os/$arch +Server = https://mirror.nw-sys.ru/archlinux/$repo/os/$arch +Server = https://mirror.pseudoform.org/$repo/os/$arch Server = https://mirror.cyberbits.eu/archlinux/$repo/os/$arch -Server = https://mirrors.janbruckner.de/archlinux/$repo/os/$arch -Server = http://mirror.ubrco.de/archlinux/$repo/os/$arch +Server = https://mirrors.niyawe.de/archlinux/$repo/os/$arch +Server = https://archlinux.homeinfo.de/$repo/os/$arch +Server = https://mirror.iusearchbtw.nl/$repo/os/$arch +Server = https://arch.mirror.zachlge.org/$repo/os/$arch +Server = https://mirror.archlinux.no/$repo/os/$arch +Server = https://mirror.thekinrar.fr/archlinux/$repo/os/$arch +Server = https://mirror.hel.sl-chat.ru/archlinux/$repo/os/$arch +Server = https://mirrors.celianvdb.fr/archlinux/$repo/os/$arch +Server = https://pkg.fef.moe/archlinux/$repo/os/$arch Server = https://mirror.theo546.fr/archlinux/$repo/os/$arch -Server = http://mirror.sunred.org/archlinux/$repo/os/$arch -Server = https://archlinux.mailtunnel.eu/$repo/os/$arch -Server = http://mirror.f4st.host/archlinux/$repo/os/$arch Server = https://mirror.srv.fail/archlinux/$repo/os/$arch -Server = https://de.arch.mirror.kescher.at/$repo/os/$arch -Server = http://mirrors.janbruckner.de/archlinux/$repo/os/$arch -Server = https://mirror.f4st.host/archlinux/$repo/os/$arch -Server = http://mirror.theo546.fr/archlinux/$repo/os/$arch -Server = http://arch.phinau.de/$repo/os/$arch -Server = https://archlinux.thaller.ws/$repo/os/$arch -Server = http://archlinux.mailtunnel.eu/$repo/os/$arch -Server = https://arch.phinau.de/$repo/os/$arch -Server = http://mirror.kumi.systems/archlinux/$repo/os/$arch -Server = http://mirror.moson.org/arch/$repo/os/$arch -Server = https://mirror.moson.org/arch/$repo/os/$arch -Server = rsync://mirror.yal.sl-chat.ru/archlinux/$repo/os/$arch -Server = http://archlinux.thaller.ws/$repo/os/$arch +Server = https://ftp.acc.umu.se/mirror/archlinux/$repo/os/$arch Server = https://nox.panibrez.com/archlinux/$repo/os/$arch -Server = rsync://mirror.hel.sl-chat.ru/archlinux/$repo/os/$arch -Server = rsync://de.arch.mirror.kescher.at/mirror/arch/$repo/os/$arch -Server = http://arch.sakamoto.pl/$repo/os/$arch -Server = https://arch.sakamoto.pl/$repo/os/$arch -Server = rsync://mirrors.janbruckner.de/archlinux/$repo/os/$arch -Server = rsync://rsync.cyberbits.eu/archlinux/$repo/os/$arch -Server = rsync://mirror.ubrco.de/archlinux/$repo/os/$arch -Server = rsync://sync.mirror.sunred.org/archlinux/$repo/os/$arch -Server = rsync://rsync.myrveln.se/pub/linux/archlinux/$repo/os/$arch -Server = rsync://archlinux.thaller.ws/archlinux/$repo/os/$arch -Server = rsync://archlinux.mailtunnel.eu/archlinux/$repo/os/$arch -Server = rsync://mirror.f4st.host/archlinux/$repo/os/$arch -Server = rsync://mirror.moson.org/arch/$repo/os/$arch -Server = rsync://rsync.eloteam.tk/archlinux/$repo/os/$arch +Server = https://ftp.ludd.ltu.se/mirrors/archlinux/$repo/os/$arch +Server = https://mirrors.n-ix.net/archlinux/$repo/os/$arch +Server = https://mirror.f4st.host/archlinux/$repo/os/$arch +Server = https://archlinux.thaller.ws/$repo/os/$arch +Server = https://arch.phinau.de/$repo/os/$arch +Server = https://mirror.fra10.de.leaseweb.net/archlinux/$repo/os/$arch +Server = https://archlinux.mailtunnel.eu/$repo/os/$arch +Server = https://arch.jensgutermuth.de/$repo/os/$arch +Server = https://dist-mirror.fem.tu-ilmenau.de/archlinux/$repo/os/$arch +Server = https://mirror.quantum5.ca/archlinux/$repo/os/$arch +Server = https://theswissbay.ch/archlinux/$repo/os/$arch Server = https://mirror.ubrco.de/archlinux/$repo/os/$arch -Server = rsync://mirror.kumi.systems/archlinux/$repo/os/$arch -Server = rsync://arch.mirror.far.fi/archlinux/$repo/os/$arch +Server = https://mirror.selfnet.de/archlinux/$repo/os/$arch +Server = https://ftp.fau.de/archlinux/$repo/os/$arch +Server = https://ftp.psnc.pl/linux/archlinux/$repo/os/$arch +Server = https://arch.sakamoto.pl/$repo/os/$arch +Server = https://mirror.cyberbits.asia/archlinux/$repo/os/$arch +Server = https://mirror.jingk.ai/archlinux/$repo/os/$arch +Server = https://mirror.fsmg.org.nz/archlinux/$repo/os/$arch +Server = https://repo.jing.rocks/archlinux/$repo/os/$arch +Server = https://mirror.2degrees.nz/archlinux/$repo/os/$arch +Server = https://mirror.moson.org/arch/$repo/os/$arch +Server = https://archmirror.it/repos/$repo/os/$arch diff --git a/make_iso/airootfs/usr/local/bin/copy-refind-theme_v1 b/make_iso/airootfs/usr/local/bin/copy-refind-theme_v1 index 1185984..abd6ca4 100755 --- a/make_iso/airootfs/usr/local/bin/copy-refind-theme_v1 +++ b/make_iso/airootfs/usr/local/bin/copy-refind-theme_v1 @@ -31,6 +31,7 @@ __find_esp__() { readonly ESP } + __has_esp__() { __find_esp__ @@ -40,6 +41,8 @@ __has_esp__() { THEME_NAME="melawy-nier-a2" +install_dir="/usr/share/refind/themes" + echo "Searching rEFInd installation in EFI partition..." if ! __has_esp__; then @@ -47,6 +50,7 @@ if ! __has_esp__; then exit 1 fi + REFIND_DIR=$(find "$ESP" -type d -iname refind) if ! [[ -d "${REFIND_DIR}" ]]; then echo "rEFInd not installed in $ESP" >&2 @@ -54,9 +58,58 @@ if ! [[ -d "${REFIND_DIR}" ]]; then fi echo "Found rEFInd in ${REFIND_DIR}" + +EFI_BOOT_DIR=$(find "$ESP" -type d -iname boot) +if ! [[ -d "${EFI_BOOT_DIR}" ]]; then + EFI_BOOT_DIR=$(find "$ESP" -type d -iname Boot) + if ! [[ -d "${EFI_BOOT_DIR}" ]]; then + EFI_BOOT_DIR=$(find "$ESP" -type d -iname BOOT) + if ! [[ -d "${EFI_BOOT_DIR}" ]]; then + mkdir -p "$(dirname ${REFIND_DIR})/boot" + EFI_BOOT_DIR="$(dirname ${REFIND_DIR})/boot" + fi + fi +fi + + echo "Installing themes in ${REFIND_DIR}" -cp -vrf "/usr/share/refind/themes" "${REFIND_DIR}/" +mkdir -p "${REFIND_DIR}/themes" +mkdir -p "${EFI_BOOT_DIR}/themes" + +cp -vrf "$install_dir/." "${REFIND_DIR}/themes/." +cp -vrf "$install_dir/." "${EFI_BOOT_DIR}/themes/." + +if [ -f "${REFIND_DIR}/refind_x64.efi" ]; then + # # Remove all from "${EFI_BOOT_DIR}" except "themes" + # f_list=$(ls -1 "${EFI_BOOT_DIR}" | grep -v "themes") + # + # for i in ${f_list[@]} + # do + # rm -vr "${EFI_BOOT_DIR}/${i}" + # done + # + # unset f_list + # + # # Copy all from "${REFIND_DIR}" to "${EFI_BOOT_DIR}" except "themes" + # f_list=$(ls -1 "${REFIND_DIR}" | grep -v "themes") + # + # for i in ${f_list[@]} + # do + # if [ -f ${REFIND_DIR}/${i} ]; then + # cp -vf "${REFIND_DIR}/${i}" "${EFI_BOOT_DIR}/${i}" + # fi + # + # if [ -d ${REFIND_DIR}/${i} ]; then + # cp -vrf "${REFIND_DIR}/${i}" "${EFI_BOOT_DIR}/${i}" + # fi + # done + # + # unset f_list + + cp -vf "${REFIND_DIR}/refind_x64.efi" "${EFI_BOOT_DIR}/bootx64.efi" +fi + REFIND_CONF_PATH="${REFIND_DIR}/refind.conf" @@ -77,4 +130,4 @@ else fi fi -echo "calamares yes" > /etc/refind-menu-generator/install_refind_theme.status +cp -vf "${REFIND_DIR}/refind.conf" "${EFI_BOOT_DIR}/refind.conf" diff --git a/make_iso/airootfs/usr/local/bin/copy-refind-theme_v2 b/make_iso/airootfs/usr/local/bin/copy-refind-theme_v2 index 2970922..b5cad0d 100755 --- a/make_iso/airootfs/usr/local/bin/copy-refind-theme_v2 +++ b/make_iso/airootfs/usr/local/bin/copy-refind-theme_v2 @@ -1,5 +1,7 @@ #!/bin/bash +exit 0 + if [ -d '/boot/EFI/refind/' ] && [ -d /usr/share/refind/themes ]; then cp -vrf /usr/share/refind/themes /boot/EFI/refind/ fi diff --git a/make_iso/cleanup.sh b/make_iso/cleanup.sh new file mode 100755 index 0000000..cb4c124 --- /dev/null +++ b/make_iso/cleanup.sh @@ -0,0 +1,19 @@ +#!/bin/bash + +mv .git/config config + +rm -rf .git + +git init -b main + +mv config .git/config + +git add --all . + +git commit -m "cleanup" + +git push origin main --force + +echo "################################################################" +echo "################### cleanup Done ######################" +echo "################################################################" diff --git a/make_iso/generate_packages.x86_64_from_netinstall.py b/make_iso/generate_packages.x86_64_from_netinstall.py index fe7bc8e..8263c41 100755 --- a/make_iso/generate_packages.x86_64_from_netinstall.py +++ b/make_iso/generate_packages.x86_64_from_netinstall.py @@ -178,7 +178,7 @@ clonezilla ddrescue gpart grsync -melawy-calamares-qt5 +melawy-calamares-qt6 melawy-skel-liveuser memtest86+ mkinitcpio-archiso diff --git a/make_iso/generate_packages.x86_64_from_netinstall_min.py b/make_iso/generate_packages.x86_64_from_netinstall_min.py new file mode 100755 index 0000000..605af95 --- /dev/null +++ b/make_iso/generate_packages.x86_64_from_netinstall_min.py @@ -0,0 +1,251 @@ +#!/usr/bin/env python3 + +import os +import yaml + + +""" +документ = набор диктов + +набор диктов = текстовые элементы + список + +список может содержать текстовые элементы или дикт +""" + +def deep_deep(group: dict, all_elements: bool = True): + """Рекурсивный обход структуры yaml + + Args: + group (dict): _description_ + all_elements (bool, optional): _description_. Defaults to True. + + Returns: + _type_: _description_ + """ + + packages = [] + packages_x86_64_new = [] + + if isinstance(group, dict): + + for item in group: + + if all_elements: + pass + + else: + if 'selected' in group: + if group['selected'] == True: + pass + + else: + continue + + if isinstance(group[item], list): + if 'name' in group: + packages_x86_64_new.append(f"\n## {group['name']}") + + if 'packages' in group: + for package in sorted(group['packages']): + package = package.replace("$LOCALE", LOCALE) + packages.append(package) + packages_x86_64_new.append(package) + + for element in group[item]: + if isinstance(element, dict): + res = deep_deep(element, all_elements) + packages += res[0] + packages_x86_64_new += res[1] + + return packages, packages_x86_64_new + + +def deep(doc: dict, all_elements: bool = True): + """Функция проверки объекта что он словарь и запуск рекурсии для получения данных + + Args: + doc (dict): _description_ + all_elements (bool, optional): _description_. Defaults to True. + + Returns: + _type_: _description_ + """ + + packages = [] + packages_x86_64_new = [] + + for group in doc: + if isinstance(group, dict): + res = deep_deep(group, all_elements) + packages += res[0] + packages_x86_64_new += res[1] + + return packages, packages_x86_64_new + + +def get_packages(filename): + """Функция для packages.x86_64 + + Args: + filename (_type_): _description_ + + Returns: + _type_: _description_ + """ + + with open(filename, mode="rt") as f: + lines = f.readlines() + + packages = [] + + for line in lines: + if line.startswith("#") or len(line) <= 1: + continue + else: + package = line.strip().replace("\n", "") + packages.append(package) + + packages = set(packages) + + packages = sorted(packages) + + return packages + + +def get_packages_v2(filename): + """Функция для netinstall_min.yaml + + Args: + filename (_type_): _description_ + + Returns: + _type_: _description_ + """ + with open(filename, 'rt') as f: + doc = yaml.safe_load(f) + + res = deep(doc, all_elements = False) + packages = res[0] + packages_x86_64_new = res[1] + + packages = set(packages) + + packages = sorted(packages) + + packages_v2 = [] + for package in packages: + packages_v2.append(package) + + packages = packages_v2 + + return packages, packages_x86_64_new + + +def write_new_packages_x86_64(filename, packages_x86_64_new: list): + + with open(filename, mode="wt+") as f: + + if isinstance(packages_x86_64_new, list): + packages_x86_64_new[0] = packages_x86_64_new[0].replace("\n#", "") + for item in packages_x86_64_new: + if "## ARCHISO PACKAGES" in item: + item = f"\n{item}" + f.write(f"{item}\n") + +##################################################################################### + +LOCALE = os.environ.get('LANG')[0:2] +filename1='packages.x86_64' +filename2='netinstall_min.yaml' +filename3='packages.x86_64' + + +list_of_packages = get_packages(filename1) +length_list_of_packages = len(list_of_packages) + +result_netinstall = get_packages_v2(filename2) + +list_of_packages_v2 = result_netinstall[0] +length_list_of_packages_v2 = len(list_of_packages_v2) + +list_of_packages_v3 = result_netinstall[1] + + +packages_extend = """ +## ARCHISO PACKAGES +archiso +clonezilla +ddrescue +gpart +grsync +melawy-calamares-qt6 +melawy-skel-liveuser +memtest86+ +mkinitcpio-archiso +mkinitcpio-nfs-utils +os-prober +partclone +parted +partimage +rate-mirrors +syslinux +""" + +packages_extend = packages_extend.splitlines() + +list_of_packages_v3.extend(packages_extend) +list_of_packages_v3_1 = [] + +for item in list_of_packages_v3: + if len(item) <= 1: + continue + else: + list_of_packages_v3_1.append(item) + +list_of_packages_v3 = list_of_packages_v3_1 + + +write_new_packages_x86_64(filename3, list_of_packages_v3) + + +set_list_of_packages_v3 = set() + +for item in list_of_packages_v3: + if item.startswith("\n#") or item.startswith("#") or len(item) <= 1: + continue + else: + set_list_of_packages_v3.add(item) + +length_list_of_packages_v3 = len(set_list_of_packages_v3) + + +difference1 = sorted(list(set(list_of_packages_v2).difference(list_of_packages))) + +difference2 = sorted(list(set(list_of_packages).difference(list_of_packages_v2))) + +##################################################################################### + +print('-------------------------------------------') +print("Разница в списках") +print('-------------------------------------------') +print(f"Количество пакетов в {filename1}: {length_list_of_packages}") + +print(f"Количество пакетов в {filename2}: {length_list_of_packages_v2}") + +print(f"Количество пакетов сгенерированных для {filename1}: {length_list_of_packages_v3}") + +print('-------------------------------------------') +print(f"Пакеты, отсутствующие в {filename1}:") +print('-------------------------------------------') + +for item in difference1: + print(item) + +print('-------------------------------------------') +print(f"Пакеты, отсутствующие в {filename2}:") +print('-------------------------------------------') + +for item in difference2: + print(item) + +print('-------------------------------------------') diff --git a/make_iso/netinstall.yaml b/make_iso/netinstall.yaml index 87ddb9f..32b6c67 100644 --- a/make_iso/netinstall.yaml +++ b/make_iso/netinstall.yaml @@ -36,7 +36,6 @@ - pacman-contrib - pacman-mirrorlist - plymouth - - plymouth-kcm - refind - systemd-ukify - xf86-input-elographics @@ -48,244 +47,100 @@ - fwupd - fwupd-efi -- name: "Virtual machines" - description: "Required if OS run in virtual environment" +- name: "Terminal-Base + Common packages" + description: "Recommended. Don't change unless you know what you're doing." hidden: true expanded: false selected: true critical: true - packages: - - bridge-utils - - edk2-shell - - hyperv - - libvirt - - open-vm-tools - - qemu-desktop - - qemu-guest-agent - - spice-vdagent - - virt-manager - - virt-viewer - - virtualbox-guest-utils - - xf86-input-vmmouse - - xf86-video-qxl - - xf86-video-vmware - -- name: "Booting process: Refind integration" - description: "Boot loader screen" - hidden: false - expanded: false - selected: true - critical: true - packages: - - melawy-refind-theme-fenek - - melawy-refind-theme-lera-sugar - - melawy-refind-theme-nier-a2 - -- name: "Booting process: Plymouth integration" - description: "Boot screen" - hidden: false - expanded: false - selected: true - critical: true - subgroups: - - name: "Nier A2 theme" - selected: true - packages: - - melawy-plymouth-theme-hard-install-nier-a2 - - name: "Lera sugar theme" - selected: false - packages: - - melawy-plymouth-theme-hard-install-lera-sugar - - name: "Fenek theme" - selected: false - packages: - - melawy-plymouth-theme-hard-install-fenek - -- name: "Melawy Linux Packages" - description: "needed Melawy Linux packages" - hidden: false - expanded: false - selected: true - critical: true subgroups: - - name: "Plymouth" - selected: true - packages: - - melawy-plymouth-theme-fenek - - melawy-plymouth-theme-lera-sugar - - melawy-plymouth-theme-nier-a2 + - name: "CPU specific microcode update packages" + description: "Microcode update image for AMD and Intel CPUs" + selected: true + critical: true + packages: + - amd-ucode + - intel-ucode - - name: "SDDM" - selected: true - packages: - - melawy-sddm-theme-fenek - - melawy-sddm-theme-lera-sugar - - melawy-sddm-theme-nier-a2 - - - name: "Cursors" - selected: true - packages: - - melawy-purple-dark-cursors - - melawy-purple-dark-default-cursors - - melawy-purple-light-cursors - - melawy-purple-light-default-cursors - - melawy-red-dark-cursors - - melawy-red-dark-default-cursors - - melawy-red-light-cursors - - melawy-red-light-default-cursors - - - name: "Updater" - selected: true - packages: - - melawy-arch-linux-updater - - melawy-plasma-plasmoid-archupdate - - - name: "Start menu" - selected: true - packages: - - melawy-plasma-plasmoid-DittoMenu - - melawy-plasma-plasmoid-Menu11 - - melawy-plasma-plasmoid-OnzeMenuKDE - - - name: "Desktop theme" - selected: true - packages: - - fluent-gtk-theme-git - - fluent-kde-theme-git - - win11-icon-theme-git - - win11-icon-theme-special-git - - win11-icon-theme-white-git - - win11os-kde-git - - win12os-kde-git - - - name: "Decor" - selected: true - packages: - - melawy-color-scheme - - melawy-color-scheme-konsole - - melawy-icon-theme - - melawy-plasma-desktop-theme - - - name: "look-and-feel" - selected: true - packages: - - melawy-plasma-look-and-feel-fenek - - melawy-plasma-look-and-feel-lera-sugar - - melawy-plasma-look-and-feel-nier-a2 - - - name: "Wallpapers" - selected: true - packages: - - melawy-wallpaper-fenek - - melawy-wallpaper-lera-sugar - - melawy-wallpaper-nier-a2 - -- name: "Desktop-Base + Common packages" - description: "Recommended. Don't change unless you know what you're doing." - hidden: false - expanded: false - selected: true - critical: true - subgroups: - - - name: "X11-system" - description: "Default X11 system" + - name: "Virtual machines" + description: "Required if OS run in virtual environment" selected: true packages: - - libwnck3 - - mesa - - mesa-utils - - xf86-input-libinput - - xorg-server - - xorg-xdpyinfo - - xorg-xhost - - xorg-xinit - - xorg-xinput - - xorg-xkill - - xorg-xrandr - - xorg-xrdb + - hyperv + - libvirt + - open-vm-tools + - qemu-guest-agent + - spice-vdagent + - virtualbox-guest-utils + - xf86-input-vmmouse + - xf86-video-qxl + - xf86-video-vmware - - name: "GPU Intel drivers" - description: "Graphics hardware drivers" + - name: "Filesystem" + description: "Filesystem tools and applications" selected: true packages: - - libva-intel-driver - - libva-utils + - btrfs-progs + - dosfstools + - e2fsprogs + - efibootmgr + - efitools + - exfatprogs + - f2fs-tools + - haveged + - jfsutils + - lvm2 + - nfs-utils + - nilfs-utils + - ntfs-3g + - reiserfsprogs + - samba-support + - sbsigntools + - smartmontools + - xfsprogs - - name: "GPU AMD drivers" - description: "Graphics hardware drivers" + - name: "BTRFS filesystem" + description: "BTRFS filesystem tools and applications" selected: true packages: - - xf86-video-amdgpu - - xf86-video-ati + - btrfs-assistant + - btrfs-snapshots + - timeshift + - timeshift-autosnap - - name: "GPU NVIDIA drivers - Latest (202X)" - description: "NVIDIA graphics hardware drivers: GeForce GTX TITAN X - NVIDIA GeForce RTX X090" + - name: "Hardware" + description: "Hardware support libs and firmware" selected: true packages: - - nvidia-dkms - - nvidia-settings - - nvidia-utils + - dmidecode + - dmraid + - hdparm + - hwdetect + - lsscsi + - mtools + - sg3_utils + - sof-firmware - - name: "GPU NVIDIA drivers - 525 (2023)" - description: "NVIDIA graphics hardware drivers: NVS 810 - NVIDIA RTX 6000 Ada Generation" - selected: false - packages: - - nvidia-525xx-dkms - - nvidia-525xx-settings - - nvidia-525xx-utils - - - name: "GPU NVIDIA drivers - 470 (2021)" - description: "NVIDIA graphics hardware drivers: NVS 510 - NVIDIA RTX A6000" - selected: false - packages: - - nvidia-470xx-dkms - - nvidia-470xx-settings - - nvidia-470xx-utils - - - name: "GPU NVIDIA drivers - 390 (2018)" - description: "NVIDIA graphics hardware drivers: GeForce GTX TITAN Z - GeForce GTX 1080 Ti)" - selected: false - packages: - - nvidia-390-settings - - nvidia-390xx-dkms - - nvidia-390xx-utils - - - name: "GPU NVIDIA drivers - 340 (2014)" - description: "NVIDIA graphics hardware drivers: GeForce 8200M - GeForce GTX 880M" - selected: false - packages: - - nvidia-340xx-dkms - - nvidia-340xx-settings - - nvidia-340xx-utils - - # - name: "ZFS drivers" - # description: "ZFS filesystem drivers" - # selected: true - # packages: - # - zfs-dkms-git - # - zfs-utils-git - - - name: "V4L2 drivers" - description: "V4L2 video, webcamera drivers" + - name: "Power" + description: "Powermanagement support" selected: true packages: - - v4l2loopback-dkms + - cpupower + - power-profiles-daemon + - upower - - name: "Recommended applications selection" - description: "General tools and applications" + - name: "Terminal applications" + description: "General terminal tools and applications" selected: true packages: + - bash-completion - beep - - browsh - btop - cryptsetup - device-mapper - - dialog - diffutils - duf - - elinks - expect - fastfetch - find-the-command @@ -296,6 +151,7 @@ - gpm - htop - hwinfo + - iftop - inetutils - inxi - iotop @@ -308,17 +164,12 @@ - man-pages - mc - mdadm - - meld - - micro + - mlocate - nano - nano-syntax-highlighting - neofetch - - neovim - - neovim-lsp_signature - - neovim-lspconfig - - neovim-nvim-treesitter - - neovim-qt - nmap + - ntp - openbsd-netcat - powerline - powerline-common @@ -346,25 +197,14 @@ - tpm2-tss - tree - ttf-terminus-nerd + - unrar + - unzip - usbutils - vi - - w3m - wget - which - - xterm - yad - - name: "Spell" - description: "Spell apps" - selected: true - packages: - - aspell - - aspell-$LOCALE - - aspell-en - - hunspell - - hunspell-$LOCALE - - hunspell-en_us - - name: "Network" description: "Network apps drivers and tools" selected: true @@ -404,39 +244,249 @@ - wpa_supplicant - xl2tpd - - name: "Package management" - description: "Packages tools" + - name: "Audio" + description: "Audio handling tools apps and libs" selected: true packages: - - appimagelauncher - # - discover - - downgrade - - flatpak - - flatpak-kcm - - ocs-url - - octopi - - pace - - pamac-cli - - pamac-gtk - - libpamac - - libpamac-flatpak-plugin - - libpamac-snap-plugin - - paru - - pkgfile - - rebuild-detector - - reflector - - reflector-simple - - snapd - - snapd-glib - - yay + - alsa-firmware + - alsa-plugins + - alsa-utils + - pavucontrol + - pipewire-alsa + - pipewire-jack + - pipewire-pulse + - pipewire-support + - rtkit + - wireplumber - - name: "Desktop integration" - description: "Useful helper tools and libs for desktop usage" + - name: "X11-system" + description: "Default X11 system" + selected: true + packages: + - libwnck3 + - mesa + - mesa-utils + - xf86-input-libinput + - xorg-server + - xorg-xdpyinfo + - xorg-xhost + - xorg-xinit + - xorg-xinput + - xorg-xkill + - xorg-xrandr + - xorg-xrdb + - xsettingsd + + - name: "V4L2 drivers" + description: "V4L2 video, webcamera drivers" + selected: true + packages: + - v4l2loopback-dkms + + - name: "Firewall" + description: "Firewall installed and enabled" + selected: true + critical: true + packages: + - firewalld + - python-capng + - python-pyqt5 + + - name: "Fonts" + description: "Melawy Linux font selection" + selected: true + packages: + - adobe-source-code-pro-fonts + - adobe-source-han-sans-cn-fonts + - adobe-source-han-sans-jp-fonts + - adobe-source-han-sans-kr-fonts + - awesome-terminal-fonts + - cantarell-fonts + - freetype2 + - noto-color-emoji-fontconfig + - noto-fonts + - noto-fonts-cjk + - noto-fonts-emoji + - otf-fira-mono + - otf-fira-sans + - otf-firamono-nerd + - ttf-bitstream-vera + - ttf-dejavu + - ttf-dejavu-nerd + - ttf-fira-code + - ttf-fira-sans + - ttf-firacode-nerd + - ttf-hack + - ttf-hack-nerd + - ttf-jetbrains-mono + - ttf-jetbrains-mono-nerd + - ttf-liberation + - ttf-liberation-mono-nerd + - ttf-ms-fonts + - ttf-nerd-fonts-symbols + - ttf-nerd-fonts-symbols-common + - ttf-nerd-fonts-symbols-mono + - ttf-noto-nerd + - ttf-opensans + - ttf-roboto + - ttf-roboto-mono + - ttf-roboto-mono-nerd + - ttf-sourcecodepro-nerd + - ttf-twemoji + - ttf-ubuntu-font-family + - ttf-ubuntu-mono-nerd + - ttf-ubuntu-nerd + + - name: "Spell" + description: "Spell apps" + selected: true + packages: + - aspell + - aspell-$LOCALE + - aspell-en + - hunspell + - hunspell-$LOCALE + - hunspell-en_us + +- name: "Melawy Linux branding" + description: "Needed Melawy Linux packages" + hidden: true + selected: true + subgroups: + + - name: "Refind" + description: "Boot loader screen" + selected: true + packages: + - melawy-refind-theme-fenek + - melawy-refind-theme-lera-sugar + - melawy-refind-theme-nier-a2 + + - name: "Plymouth" + description: "Boot screen" + selected: true + packages: + - melawy-plymouth-theme-fenek + - melawy-plymouth-theme-lera-sugar + - melawy-plymouth-theme-nier-a2 + + - name: "Plymouth select (1 from list)" + description: "Boot screen" + selected: true + subgroups: + + - name: "Nier A2 theme" + selected: true + packages: + - melawy-plymouth-theme-hard-install-nier-a2 + - melawy-refind-theme-hard-install-nier-a2 + + - name: "Lera sugar theme" + selected: false + packages: + - melawy-plymouth-theme-hard-install-lera-sugar + - melawy-refind-theme-hard-install-lera-sugar + + - name: "Fenek theme" + selected: false + packages: + - melawy-plymouth-theme-hard-install-fenek + - melawy-refind-theme-hard-install-fenek + + - name: "Base desktop theme" + selected: true + packages: + - melawy-icon-theme + - melawy-theme + + - name: "Desktop theme Win11" + selected: true + packages: + - melawy-win11-icon-theme + - melawy-win11-icon-theme-special + - melawy-win11-icon-theme-white + - melawy-kde-theme-win11 + - melawy-kde-theme-win12 + + - name: "Desktop theme Colloid" + selected: true + packages: + - colloid-cursors-git + - colloid-icon-theme-git + - colloid-gtk-theme-git + - colloid-kde-theme-git + + - name: "SDDM, KDE Plasma Look-and-feel, Wallpapers" + selected: true + packages: + - melawy-kde-theme-nier-a2 + - melawy-kde-theme-lera-sugar + - melawy-kde-theme-fenek + + - name: "Cursors" + selected: true + packages: + - melawy-purple-dark-cursors + - melawy-purple-dark-default-cursors + - melawy-purple-light-cursors + - melawy-purple-light-default-cursors + - melawy-red-dark-cursors + - melawy-red-dark-default-cursors + - melawy-red-light-cursors + - melawy-red-light-default-cursors + + - name: "Start menu" + selected: true + packages: + - melawy-plasma-plasmoid-DittoMenu + - melawy-plasma-plasmoid-Menu11 + - melawy-plasma-plasmoid-OnzeMenuKDE + + - name: "Plasmoids" + selected: true + packages: + - melawy-plasma-plasmoid-presentwindows + - melawy-plasma-plasmoid-win7showdesktop + + # - name: "Wallpapers YouTube" + # selected: true + # packages: + # - melawy-wallpapers-from-youtube + + - name: "Updater" + selected: true + packages: + - melawy-arch-linux-updater + - melawy-plasma-plasmoid-archupdate + +- name: "Desktop integration" + description: "Useful helper tools and libs for desktop usage" + expanded: true + selected: true + subgroups: + + - name: "Fix applications style" + description: "Desktop environment" + selected: true + packages: + - kde-gtk-config + - gnome-settings-daemon + - gsettings-desktop-schemas + - gsettings-qt + - gtk-engine-murrine + - xdg-desktop-portal + - xdg-desktop-portal-kde + - gnome-themes-extra + # - adwaita-qt5 + # - adwaita-qt6 + - lxappearance-gtk3 + + - name: "KDE Plasma" + description: "Desktop environment" selected: true packages: - accountsservice - ark - - bash-completion - bluedevil - breeze-gtk - dolphin @@ -445,13 +495,13 @@ - ffmpegthumbnailer - ffmpegthumbs - file-roller - - filezilla + - flatpak-kcm - glfw-wayland - - gnome-keyring - gnome-firmware + - gnome-keyring - gparted - - gstreamer-meta - gst-plugin-pipewire + - gstreamer-meta - gwenview - karchive5 - kate @@ -459,6 +509,7 @@ - kde-gtk-config - kdeconnect - kdegraphics-thumbnailers + - kdenetwork-filesharing - kdeplasma-addons - kgamma5 - khotkeys @@ -476,10 +527,6 @@ - kwalletmanager - kwin-effect-rounded-corners-git - kwin-effects-sliding-notifications - - libdvdcss - - libgsf - - libopenraw - - mlocate - network-manager-applet - okular - partitionmanager @@ -497,6 +544,7 @@ - plasma-wayland-session - plasma-workspace - plasma-workspace-wallpapers + - plymouth-kcm - polkit-kde-agent - poppler-glib - powerdevil @@ -511,401 +559,495 @@ - xdg-user-dirs - xdg-user-dirs-gtk - xdg-utils - - xsettingsd - - name: "Filesystem" - description: "Filesystem tools and applications" + - name: "Package management" + description: "Packages tools" selected: true packages: - - btrfs-progs - - dosfstools - - e2fsprogs - - efibootmgr - - efitools - - exfatprogs - - f2fs-tools - - haveged - - jfsutils - - kdenetwork-filesharing - - lvm2 - - nfs-utils - - nilfs-utils - - ntfs-3g - - ntp - - reiserfsprogs - - samba-support - - sbsigntools - - smartmontools - - unrar - - unzip - - xfsprogs - - xz + - appimagelauncher + - downgrade + - flatpak + - ocs-url + - pace + - pamac-cli + - pamac-gtk + - libpamac + - libpamac-flatpak-plugin + - libpamac-snap-plugin + - paru + - pkgfile + - rebuild-detector + - reflector + - reflector-simple + - snapd + - snapd-glib + - yay - - name: "BTRFS filesystem" - description: "BTRFS filesystem tools and applications" + - name: "Browsers and language package" + description: "Add firefox and language pack if possible and other browsers" + expanded: true + selected: true + subgroups: + + - name: "Firefox" + description: "Add firefox and language pack" + selected: true + packages: + - firefox + - firefox-i18n-$LOCALE + - firefox-developer-edition + - firefox-developer-edition-i18n-$LOCALE + - profile-sync-daemon + + - name: "Other" + description: "Add browsers" + selected: true + packages: + - google-chrome + - brave-bin + - profile-sync-daemon + + - name: "Other other ..." + description: "Add browsers" + selected: true + packages: + - opera + - vivaldi + - profile-sync-daemon + + - name: "Office" + description: "Add the office applications" + expanded: true + selected: true + subgroups: + + - name: "FreeOffice" + selected: true + packages: + - freeoffice + + - name: "LibreOffice" + selected: false + packages: + - libreoffice-fresh + - libreoffice-fresh-$LOCALE + - libreoffice-extension-languagetool + + - name: "OnlyOffice" + selected: false + packages: + - onlyoffice-bin + + - name: "Media players" + description: "Add the audio players" selected: true packages: - - btrfs-assistant - - btrfs-snapshots - - timeshift - - timeshift-autosnap + - audacious + - elisa + - haruna + - mpv + - vlc-luajit - - name: "Fonts" - description: "Melawy Linux font selection" + - name: "Picture editors" + description: "Add the photo and picture editors" selected: true packages: - - adobe-source-code-pro-fonts - - adobe-source-han-sans-cn-fonts - - adobe-source-han-sans-jp-fonts - - adobe-source-han-sans-kr-fonts - - awesome-terminal-fonts - - cantarell-fonts - - freetype2 - - noto-color-emoji-fontconfig - - noto-fonts - - noto-fonts-cjk - - noto-fonts-emoji - - opendesktop-fonts - - otf-fira-mono - - otf-fira-sans - - otf-firamono-nerd - - ttf-bitstream-vera - - ttf-dejavu - - ttf-dejavu-nerd - - ttf-fira-code - - ttf-fira-sans - - ttf-firacode-nerd - - ttf-hack - - ttf-hack-nerd - - ttf-jetbrains-mono - - ttf-jetbrains-mono-nerd - - ttf-liberation - - ttf-liberation-mono-nerd - - ttf-meslo-nerd - - ttf-ms-fonts - - ttf-nerd-fonts-symbols - - ttf-nerd-fonts-symbols-common - - ttf-nerd-fonts-symbols-mono - - ttf-noto-nerd - - ttf-opensans - - ttf-roboto - - ttf-roboto-mono - - ttf-roboto-mono-nerd - - ttf-sourcecodepro-nerd - - ttf-twemoji - - ttf-ubuntu-font-family - - ttf-ubuntu-mono-nerd - - ttf-ubuntu-nerd + - gimp + - gimp-help-$LOCALE + - inkscape + - gvfs + - gvfs-afc + - gvfs-gphoto2 + - gvfs-mtp + - gvfs-nfs + - gvfs-smb + - libdvdcss + - libgsf + - libopenraw - - name: "Audio" - description: "Audio handling tools apps and libs" + - name: "Audio recorder" + description: "Add the audio recorders" selected: true packages: - - alsa-firmware - - alsa-plugins - - alsa-utils - - pavucontrol - - pipewire-alsa - - pipewire-jack - - pipewire-pulse - - pipewire-support - - rtkit - - wireplumber + - audacity + - audio-recorder - - name: "Hardware" - description: "Hardware support libs and firmware" + - name: "Video editors" + description: "Add the video editors" selected: true packages: - - dmidecode - - dmraid - - hdparm - - hwdetect - - lsscsi - - mtools - - sg3_utils - - sof-firmware + - avidemux-cli + - avidemux-qt - - name: "Power" - description: "Powermanagement support" - selected: true - packages: - - cpupower - - power-profiles-daemon - - upower - - - name: "CPU specific microcode update packages" - description: "Microcode update image for AMD and Intel CPUs" - hidden: false - selected: true - critical: true - packages: - - amd-ucode - - intel-ucode - -- name: "Browsers and language package" - description: "Add firefox and language pack if possible and other browsers" - hidden: false - expanded: false - selected: true - critical: false - packages: - - brave-bin - - firefox - - firefox-developer-edition - - firefox-developer-edition-i18n-$LOCALE - - firefox-i18n-$LOCALE - - google-chrome - - profile-sync-daemon - -- name: "Desktop environment" - description: "Add the desktop applications" - hidden: false - expanded: false - selected: true - critical: false - packages: - - anydesk-bin - - avidemux-cli - - avidemux-qt - - corectrl - - discord - - gwe - - keepassxc - - kleopatra - - mailspring - - obs-studio-tytan652 - - qbittorrent - - skypeforlinux-stable-bin - - telegram-desktop - - thunderbird - - yakuake - - yandex-disk - - yandex-disk-indicator - - zoom - -- name: "Desktop environment (non required)" - description: "Add the desktop applications" - hidden: false - expanded: false - selected: false - critical: false - packages: - - alacritty - - alacritty-themes - - blender - - kitty - - kitty-shell-integration - - kitty-terminfo - -- name: "Office" - description: "Add the office applications" - hidden: false - expanded: false - selected: true - critical: false - subgroups: - - - name: "FreeOffice" - selected: true - packages: - - freeoffice - - - name: "LibreOffice" + - name: "Media editors" + description: "Add the photo and picture editors" selected: false packages: - - libreoffice-fresh - - libreoffice-fresh-$LOCALE - - libreoffice-extension-languagetool + - pitivi + - kdenlive + - openshot + - blender + - krita + - pinta - - name: "OnlyOffice" + - name: "Code IDE and programming language package" + description: "Add Code IDE and programming language package" + selected: true + packages: + - ansible-language-server + - base-devel + - bash-language-server + - boost + - boost-libs + - ccache + - clang + - cmake + - codelldb + - dbeaver + - doxygen + - eslint-language-server + - extra-cmake-modules + - fakeroot + - gcc + - gcc-libs + - gdb + - git + - git-lfs + - github-cli + - github-desktop + - icu69-bin + - jdk-openjdk + - lld + - lldb + - llvm + - llvm-libs + - lua-language-server + - make + - python-lsp-server + - rust-analyzer + - rustup + - sccache + - sqlitebrowser + - tailwindcss-language-server + - typescript + - typescript-language-server + - visual-studio-code-bin + - vscode-json-languageserver + - vue-language-server + - yaml-language-server + + - name: "Mail applications" + description: "Add the mail applications" + expanded: true + selected: true + subgroups: + + - name: "Mailspring" + description: "Add the mailspring" + selected: true + packages: + - mailspring + + - name: "Thunderbird" + description: "Add the thunderbird" + selected: true + packages: + - thunderbird + - thunderbird-i18n-$LOCALE + + - name: "Chat applications" + description: "Add the mail applications" + selected: true + packages: + - telegram-desktop + - discord + - zoom + - skypeforlinux-stable-bin + + - name: "Passwords / keys applications" + description: "Add the mail applications" + selected: true + packages: + - keepassxc + - kleopatra + + - name: "Desktop applications" + description: "Add the desktop applications" + selected: true + packages: + - corectrl + - gwe + - obs-studio-tytan652 + - qbittorrent + - yakuake + - yandex-disk + - yandex-disk-indicator + - anydesk-bin + - filezilla + - meld + + - name: "Bluetooth" + description: "Bluetooth support" + selected: true + packages: + - bluetooth-support + - bluez + - bluez-hid2hci + - bluez-libs + - bluez-utils + + - name: "Printing support" + description: "Support for printing (Cups)" selected: false packages: - - onlyoffice-bin + - cups + - cups-browsed + - cups-filters + - cups-pdf + - foomatic-db + - foomatic-db-engine + - foomatic-db-gutenprint-ppds + - foomatic-db-nonfree + - foomatic-db-nonfree-ppds + - foomatic-db-ppds + - ghostscript + - gsfonts + - gutenprint + - print-manager + - printer-support + - splix + - system-config-printer -- name: "Media players" - description: "Add the video and audio players" - hidden: false - expanded: false - selected: true - critical: false - packages: - - audacious - - audacity - - elisa - - haruna - - mpv - - vlc-luajit + - name: "HP printer/scanner support" + description: "Packages for HP printer/scanner" + selected: false + packages: + - cups + - cups-browsed + - cups-filters + - cups-pdf + - hplip + - hplip-plugin + - python-pyqt5 + - python-reportlab + - scanner-support + - xsane -- name: "Picture Editors" - description: "Add the photo and picture editors" - hidden: false - expanded: false - selected: true - critical: false - packages: - - gimp - - gimp-help-$LOCALE - - gvfs - - gvfs-afc - - gvfs-gphoto2 - - gvfs-mtp - - gvfs-nfs - - gvfs-smb - - inkscape - - krita + - name: "Containers" + description: "Add the Docker, etc" + expanded: true + selected: true + subgroups: -- name: "Code IDE and programming language package" - description: "Add Code IDE and programming language package" - hidden: false - expanded: false - selected: true - critical: false - packages: - - ansible-language-server - - base-devel - - bash-language-server - - boost - - boost-libs - - ccache - - clang - - cmake - - codelldb - - dbeaver - - doxygen - - eslint-language-server - - extra-cmake-modules - - fakeroot - - gcc - - gcc-libs - - gdb - - git - - git-lfs - - github-cli - - github-desktop - - icu69-bin - - jdk-openjdk - - lld - - lldb - - llvm - - llvm-libs - - lua-language-server - - make - - python-lsp-server - - rust-analyzer - - rustup - - sccache - - sqlitebrowser - - tailwindcss-language-server - - typescript - - typescript-language-server - - visual-studio-code-bin - - vscode-json-languageserver - - vue-language-server - - yaml-language-server + - name: "QEMU" + description: "Add the Docker, etc" + selected: true + packages: + - qemu-desktop + - virt-manager + - virt-viewer + - edk2-shell + - bridge-utils + - udisks2 + - networkmanager + - firewalld -- name: "Firewall" - description: "Firewall installed and enabled" - hidden: false - expanded: false + - name: "Docker" + description: "Add the Docker, etc" + selected: true + packages: + - docker + - docker-compose + - docker-machine + - docker-scan + - docker-buildx + - bridge-utils + - udisks2 + - networkmanager + - firewalld + + - name: "Portainer" + description: "Add the Docker, etc" + selected: false + packages: + - portainer-bin + - udisks2 + - networkmanager + - firewalld + + - name: "Containers" + description: "Add the Docker, etc" + selected: false + packages: + - podman + - podman-dnsname + - podman-compose + - podman-docker + - buildah + - cni-plugins + - netavark + - fuse-overlayfs + - udisks2 + - networkmanager + - firewalld + + - name: "VirtualBox" + description: "Add the Docker, etc" + selected: false + packages: + - virtualbox + - virtualbox-host-dkms + - virtualbox-host-modules-arch + + - name: "Vagrant" + description: "Add the Docker, etc" + selected: false + packages: + - vagrant + - udisks2 + - networkmanager + - firewalld + + - name: "Cockpit" + description: "Admin panel" + selected: false + packages: + - cockpit + - cockpit-machines + - cockpit-pcp + - cockpit-podman + - cockpit-storaged + - udisks2 + - networkmanager + - firewalld + + - name: "Support" + description: "Packages for other support" + selected: true + packages: + - input-devices-support + - laptop-detect + +- name: "GPU drivers" + description: "Recommended. Don't change unless you know what you're doing." + expanded: true selected: true critical: true - packages: - - firewalld - - python-capng - - python-pyqt5 + subgroups: -- name: "Kernel in addition" - description: "Adding kernel in addition to main one" - hidden: false - expanded: false + - name: "Intel drivers" + description: "Graphics hardware drivers" + selected: true + packages: + - libva-intel-driver + - libva-utils + + - name: "AMD drivers" + description: "Graphics hardware drivers" + selected: true + packages: + - xf86-video-amdgpu + - xf86-video-ati + + - name: "NVIDIA drivers - Latest (202X)" + description: "NVIDIA graphics hardware drivers: GeForce GTX TITAN X - NVIDIA GeForce RTX X090" + selected: true + packages: + - nvidia-dkms + - nvidia-settings + - nvidia-utils + + - name: "NVIDIA drivers - 525 (2023)" + description: "NVIDIA graphics hardware drivers: NVS 810 - NVIDIA RTX 6000 Ada Generation" + selected: false + packages: + - nvidia-525xx-dkms + - nvidia-525xx-settings + - nvidia-525xx-utils + + - name: "NVIDIA drivers - 470 (2021)" + description: "NVIDIA graphics hardware drivers: NVS 510 - NVIDIA RTX A6000" + selected: false + packages: + - nvidia-470xx-dkms + - nvidia-470xx-settings + - nvidia-470xx-utils + + - name: "NVIDIA drivers - 390 (2018)" + description: "NVIDIA graphics hardware drivers: GeForce GTX TITAN Z - GeForce GTX 1080 Ti)" + selected: false + packages: + - nvidia-390-settings + - nvidia-390xx-dkms + - nvidia-390xx-utils + + - name: "NVIDIA drivers - 340 (2014)" + description: "NVIDIA graphics hardware drivers: GeForce 8200M - GeForce GTX 880M" + selected: false + packages: + - nvidia-340xx-dkms + - nvidia-340xx-settings + - nvidia-340xx-utils + +- name: "Additional packages" + description: "Additional packages" + expanded: true selected: false - critical: false - packages: - - linux - - linux-headers - - linux-hardened - - linux-hardened-headers - - linux-lqx - - linux-lqx-headers - - linux-lts - - linux-lts-headers - - linux-xanmod - - linux-xanmod-headers - - linux-xanmod-lts - - linux-xanmod-lts-headers - - linux-zen - - linux-zen-headers + subgroups: -- name: "Printing support" - description: "Support for printing (Cups)" - hidden: false - expanded: false - selected: false - critical: false - packages: - - cups - - cups-browsed - - cups-filters - - cups-pdf - - foomatic-db - - foomatic-db-engine - - foomatic-db-gutenprint-ppds - - foomatic-db-nonfree - - foomatic-db-nonfree-ppds - - foomatic-db-ppds - - ghostscript - - gsfonts - - gutenprint - - print-manager - - printer-support - - splix - - system-config-printer + - name: "Kernel in addition" + description: "Adding kernel in addition to main one" + selected: false + critical: true + packages: + - linux + - linux-headers + - linux-hardened + - linux-hardened-headers + - linux-lqx + - linux-lqx-headers + - linux-lts + - linux-lts-headers + - linux-xanmod + - linux-xanmod-headers + - linux-xanmod-lts + - linux-xanmod-lts-headers + - linux-zen + - linux-zen-headers -- name: "HP printer/scanner support" - description: "Packages for HP printer/scanner" - hidden: false - expanded: false - selected: false - critical: false - packages: - - cups - - cups-browsed - - cups-filters - - cups-pdf - - hplip - - hplip-plugin - - python-pyqt5 - - python-reportlab - - scanner-support - - xsane + - name: "Desktop terminal" + description: "Add the desktop applications" + selected: false + packages: + - alacritty + - alacritty-themes + - kitty + - kitty-shell-integration + - kitty-terminfo -- name: "Bluetooth" - description: "Bluetooth support" - hidden: false - expanded: false - selected: true - critical: false - packages: - - bluetooth-support - - bluez - - bluez-hid2hci - - bluez-libs - - bluez-utils + - name: "Terminal applications" + description: "General terminal tools and applications" + selected: false + packages: + - browsh + - elinks + - links + - w3m + - dialog + - glances + - micro + - xterm -- name: "Support" - description: "Packages for other support" - hidden: false - expanded: false - selected: true - critical: false - packages: - - input-devices-support - - laptop-detect + - name: "Package management" + description: "Packages tools" + selected: false + packages: + - discover + - octopi + - octopi-notifier-frameworks - name: "Accessibility Tools" description: "Screen reader and mouse tweaks (impaired vision)" - hidden: false - expanded: false selected: false critical: true packages: diff --git a/make_iso/netinstall_min.yaml b/make_iso/netinstall_min.yaml new file mode 100644 index 0000000..bb692cf --- /dev/null +++ b/make_iso/netinstall_min.yaml @@ -0,0 +1,1056 @@ +- name: "Melawy Linux required (hidden)" + description: "needed Melawy Linux packages" + hidden: true + expanded: false + selected: true + critical: true + packages: + - archlinux-keyring + - arcolinux-keyring + - arcolinux-mirrorlist-git + - base + - base-devel + - busybox + - chaotic-keyring + - chaotic-mirrorlist + - chwd + - chwd-db + - dracut + - gptfdisk + - iptables-nft + - linux-firmware + - linux-firmware-marvell + - linux-xanmod-anbox + - linux-xanmod-anbox-headers + - melawy-branding + - melawy-check-reboot-required + - melawy-dracut-initramfs + - melawy-dracut-ukify + - melawy-etc-skel-std-powerman-kvantum + - melawy-skel-root + - melawy-linux-keyring + - melawy-linux-mirrorlist + - melawy-refind-menu-generator + - melawy-welcome + - pacman + - pacman-contrib + - pacman-mirrorlist + - plymouth + - refind + - systemd-ukify + - xf86-input-elographics + - xf86-input-evdev + - xf86-input-synaptics + - xf86-input-void + - xf86-video-fbdev + - xf86-video-openchrome + - fwupd + - fwupd-efi + +- name: "Terminal-Base + Common packages" + description: "Recommended. Don't change unless you know what you're doing." + hidden: true + expanded: false + selected: true + critical: true + subgroups: + + - name: "CPU specific microcode update packages" + description: "Microcode update image for AMD and Intel CPUs" + selected: true + critical: true + packages: + - amd-ucode + - intel-ucode + + - name: "Virtual machines" + description: "Required if OS run in virtual environment" + selected: true + packages: + - hyperv + - libvirt + - open-vm-tools + - qemu-guest-agent + - spice-vdagent + - virtualbox-guest-utils + - xf86-input-vmmouse + - xf86-video-qxl + - xf86-video-vmware + + - name: "Filesystem" + description: "Filesystem tools and applications" + selected: true + packages: + - btrfs-progs + - dosfstools + - e2fsprogs + - efibootmgr + - efitools + - exfatprogs + - f2fs-tools + - haveged + - jfsutils + - lvm2 + - nfs-utils + - nilfs-utils + - ntfs-3g + - reiserfsprogs + - samba-support + - sbsigntools + - smartmontools + - xfsprogs + + - name: "BTRFS filesystem" + description: "BTRFS filesystem tools and applications" + selected: true + packages: + - btrfs-assistant + - btrfs-snapshots + - timeshift + - timeshift-autosnap + + - name: "Hardware" + description: "Hardware support libs and firmware" + selected: true + packages: + - dmidecode + - dmraid + - hdparm + - hwdetect + - lsscsi + - mtools + - sg3_utils + - sof-firmware + + - name: "Power" + description: "Powermanagement support" + selected: true + packages: + - cpupower + - power-profiles-daemon + - upower + + - name: "Terminal applications" + description: "General terminal tools and applications" + selected: true + packages: + - bash-completion + - beep + - btop + - cryptsetup + - device-mapper + - diffutils + - duf + - expect + - fastfetch + - find-the-command + - findutils + - fsarchiver + - git + - glances + - gpm + - htop + - hwinfo + - iftop + - inetutils + - inxi + - iotop + - less + - logrotate + - lolcat + - lsb-release + - lynx + - man-db + - man-pages + - mc + - mdadm + - mlocate + - nano + - nano-syntax-highlighting + - neofetch + - nmap + - ntp + - openbsd-netcat + - powerline + - powerline-common + - powerline-fonts + - procps-ng + - pv + - python-defusedxml + - python-packaging + - ripgrep + - rsync + - s-nail + - screen + - screenfetch + - sed + - sshpass + - sudo + - sysfsutils + - syslog-ng + - tcpdump + - terminus-font + - texinfo + - tldr + - tmux + - tpm2-tools + - tpm2-tss + - tree + - ttf-terminus-nerd + - unrar + - unzip + - usbutils + - vi + - wget + - which + - yad + + - name: "Network" + description: "Network apps drivers and tools" + selected: true + packages: + - b43-fwcutter + - bridge-utils + - broadcom-wl-dkms + - dhclient + - dhcpcd + - dnsmasq + - dnsutils + - ethtool + - iwd + - modemmanager + - nbd + - ndisc6 + - net-tools + - netctl + - networkmanager + - networkmanager-openconnect + - networkmanager-openvpn + - nss-mdns + - openconnect + - openssh + - openvpn + - ppp + - pptpclient + - rp-pppoe + - systemd-resolvconf + - traceroute + - usb_modeswitch + - vpnc + - whois + - wireguard-tools + - wireless-regdb + - wireless_tools + - wpa_supplicant + - xl2tpd + + - name: "Audio" + description: "Audio handling tools apps and libs" + selected: true + packages: + - alsa-firmware + - alsa-plugins + - alsa-utils + - pavucontrol + - pipewire-alsa + - pipewire-jack + - pipewire-pulse + - pipewire-support + - rtkit + - wireplumber + + - name: "X11-system" + description: "Default X11 system" + selected: true + packages: + - libwnck3 + - mesa + - mesa-utils + - xf86-input-libinput + - xorg-server + - xorg-xdpyinfo + - xorg-xhost + - xorg-xinit + - xorg-xinput + - xorg-xkill + - xorg-xrandr + - xorg-xrdb + - xsettingsd + + - name: "V4L2 drivers" + description: "V4L2 video, webcamera drivers" + selected: true + packages: + - v4l2loopback-dkms + + - name: "Firewall" + description: "Firewall installed and enabled" + selected: true + critical: true + packages: + - firewalld + - python-capng + - python-pyqt5 + + - name: "Fonts" + description: "Melawy Linux font selection" + selected: true + packages: + - adobe-source-code-pro-fonts + - adobe-source-han-sans-cn-fonts + - adobe-source-han-sans-jp-fonts + - adobe-source-han-sans-kr-fonts + - awesome-terminal-fonts + - cantarell-fonts + - freetype2 + - noto-color-emoji-fontconfig + - noto-fonts + - noto-fonts-cjk + - noto-fonts-emoji + - otf-fira-mono + - otf-fira-sans + - otf-firamono-nerd + - ttf-bitstream-vera + - ttf-dejavu + - ttf-dejavu-nerd + - ttf-fira-code + - ttf-fira-sans + - ttf-firacode-nerd + - ttf-hack + - ttf-hack-nerd + - ttf-jetbrains-mono + - ttf-jetbrains-mono-nerd + - ttf-liberation + - ttf-liberation-mono-nerd + - ttf-ms-fonts + - ttf-nerd-fonts-symbols + - ttf-nerd-fonts-symbols-common + - ttf-nerd-fonts-symbols-mono + - ttf-noto-nerd + - ttf-opensans + - ttf-roboto + - ttf-roboto-mono + - ttf-roboto-mono-nerd + - ttf-sourcecodepro-nerd + - ttf-twemoji + - ttf-ubuntu-font-family + - ttf-ubuntu-mono-nerd + - ttf-ubuntu-nerd + + - name: "Spell" + description: "Spell apps" + selected: true + packages: + - aspell + - aspell-$LOCALE + - aspell-en + - hunspell + - hunspell-$LOCALE + - hunspell-en_us + +- name: "Melawy Linux branding" + description: "Needed Melawy Linux packages" + hidden: true + selected: true + subgroups: + + - name: "Refind" + description: "Boot loader screen" + selected: true + packages: + - melawy-refind-theme-fenek + - melawy-refind-theme-lera-sugar + - melawy-refind-theme-nier-a2 + + - name: "Plymouth" + description: "Boot screen" + selected: true + packages: + - melawy-plymouth-theme-fenek + - melawy-plymouth-theme-lera-sugar + - melawy-plymouth-theme-nier-a2 + + - name: "Plymouth select (1 from list)" + description: "Boot screen" + selected: true + subgroups: + + - name: "Nier A2 theme" + selected: true + packages: + - melawy-plymouth-theme-hard-install-nier-a2 + - melawy-refind-theme-hard-install-nier-a2 + + - name: "Lera sugar theme" + selected: false + packages: + - melawy-plymouth-theme-hard-install-lera-sugar + - melawy-refind-theme-hard-install-lera-sugar + + - name: "Fenek theme" + selected: false + packages: + - melawy-plymouth-theme-hard-install-fenek + - melawy-refind-theme-hard-install-fenek + + - name: "Base desktop theme" + selected: true + packages: + - melawy-icon-theme + - melawy-theme + + - name: "Desktop theme Win11" + selected: true + packages: + - melawy-win11-icon-theme + - melawy-win11-icon-theme-special + - melawy-win11-icon-theme-white + - melawy-kde-theme-win11 + - melawy-kde-theme-win12 + + - name: "Desktop theme Colloid" + selected: true + packages: + - colloid-cursors-git + - colloid-icon-theme-git + - colloid-gtk-theme-git + - colloid-kde-theme-git + + - name: "SDDM, KDE Plasma Look-and-feel, Wallpapers" + selected: true + packages: + - melawy-kde-theme-nier-a2 + - melawy-kde-theme-lera-sugar + - melawy-kde-theme-fenek + + - name: "Cursors" + selected: true + packages: + - melawy-purple-dark-cursors + - melawy-purple-dark-default-cursors + - melawy-purple-light-cursors + - melawy-purple-light-default-cursors + - melawy-red-dark-cursors + - melawy-red-dark-default-cursors + - melawy-red-light-cursors + - melawy-red-light-default-cursors + + - name: "Start menu" + selected: true + packages: + - melawy-plasma-plasmoid-DittoMenu + - melawy-plasma-plasmoid-Menu11 + - melawy-plasma-plasmoid-OnzeMenuKDE + + - name: "Plasmoids" + selected: true + packages: + - melawy-plasma-plasmoid-presentwindows + - melawy-plasma-plasmoid-win7showdesktop + + # - name: "Wallpapers YouTube" + # selected: false + # packages: + # - melawy-wallpapers-from-youtube + + - name: "Updater" + selected: true + packages: + - melawy-arch-linux-updater + - melawy-plasma-plasmoid-archupdate + +- name: "Desktop integration" + description: "Useful helper tools and libs for desktop usage" + expanded: true + selected: true + subgroups: + + - name: "Fix applications style" + description: "Desktop environment" + selected: true + packages: + - kde-gtk-config + - gnome-settings-daemon + - gsettings-desktop-schemas + - gsettings-qt + - gtk-engine-murrine + - xdg-desktop-portal + - xdg-desktop-portal-kde + - gnome-themes-extra + # - adwaita-qt5 + # - adwaita-qt6 + - lxappearance-gtk3 + + - name: "KDE Plasma" + description: "Desktop environment" + selected: true + packages: + - accountsservice + - ark + - bluedevil + - breeze-gtk + - dolphin + - dolphin-plugins + - drkonqi + - ffmpegthumbnailer + - ffmpegthumbs + - file-roller + - flatpak-kcm + - glfw-wayland + - gnome-firmware + - gnome-keyring + - gparted + - gst-plugin-pipewire + - gstreamer-meta + - gwenview + - karchive5 + - kate + - kcalc + - kde-gtk-config + - kdeconnect + - kdegraphics-thumbnailers + - kdenetwork-filesharing + - kdeplasma-addons + - kgamma5 + - khotkeys + - kimageformats5 + - kinfocenter + - kinit + - kio-fuse + - konsole + - kscreen + - ksshaskpass + - ksysguard + - ksystemlog + - kvantum + - kwallet-pam + - kwalletmanager + - kwin-effect-rounded-corners-git + - kwin-effects-sliding-notifications + - network-manager-applet + - okular + - partitionmanager + - plasma-browser-integration + - plasma-desktop + - plasma-disks + - plasma-firewall + - plasma-integration + - plasma-nm + - plasma-pa + - plasma-systemmonitor + - plasma-thunderbolt + - plasma-vault + - plasma-wayland-protocols + - plasma-wayland-session + - plasma-workspace + - plasma-workspace-wallpapers + - plymouth-kcm + - polkit-kde-agent + - poppler-glib + - powerdevil + - qt5-imageformats + - qt5ct + - qt6-imageformats + - sddm + - sddm-kcm + - spectacle + - xdg-desktop-portal + - xdg-desktop-portal-kde + - xdg-user-dirs + - xdg-user-dirs-gtk + - xdg-utils + + - name: "Package management" + description: "Packages tools" + selected: true + packages: + - appimagelauncher + - downgrade + - flatpak + - ocs-url + - pace + - pamac-cli + - pamac-gtk + - libpamac + - libpamac-flatpak-plugin + - libpamac-snap-plugin + - paru + - pkgfile + - rebuild-detector + - reflector + - reflector-simple + - snapd + - snapd-glib + - yay + + - name: "Browsers and language package" + description: "Add firefox and language pack if possible and other browsers" + expanded: true + selected: true + subgroups: + + - name: "Firefox" + description: "Add firefox and language pack" + selected: true + packages: + - firefox + - firefox-i18n-$LOCALE + - firefox-developer-edition + - firefox-developer-edition-i18n-$LOCALE + - profile-sync-daemon + + - name: "Other" + description: "Add browsers" + selected: false + packages: + - google-chrome + - brave-bin + - profile-sync-daemon + + - name: "Other other ..." + description: "Add browsers" + selected: false + packages: + - opera + - vivaldi + - profile-sync-daemon + + - name: "Office" + description: "Add the office applications" + expanded: true + selected: true + subgroups: + + - name: "FreeOffice" + selected: true + packages: + - freeoffice + + - name: "LibreOffice" + selected: false + packages: + - libreoffice-fresh + - libreoffice-fresh-$LOCALE + - libreoffice-extension-languagetool + + - name: "OnlyOffice" + selected: false + packages: + - onlyoffice-bin + + - name: "Media players" + description: "Add the audio players" + selected: true + packages: + - audacious + - elisa + - haruna + - mpv + - vlc-luajit + + - name: "Picture editors" + description: "Add the photo and picture editors" + selected: true + packages: + - gimp + - gimp-help-$LOCALE + - inkscape + - gvfs + - gvfs-afc + - gvfs-gphoto2 + - gvfs-mtp + - gvfs-nfs + - gvfs-smb + - libdvdcss + - libgsf + - libopenraw + + - name: "Audio recorder" + description: "Add the audio recorders" + selected: true + packages: + - audacity + - audio-recorder + + - name: "Video editors" + description: "Add the video editors" + selected: true + packages: + - avidemux-cli + - avidemux-qt + + - name: "Media editors" + description: "Add the photo and picture editors" + selected: false + packages: + - pitivi + - kdenlive + - openshot + - blender + - krita + - pinta + + - name: "Code IDE and programming language package" + description: "Add Code IDE and programming language package" + selected: true + packages: + - ansible-language-server + - base-devel + - bash-language-server + - boost + - boost-libs + - ccache + - clang + - cmake + - codelldb + - dbeaver + - doxygen + - eslint-language-server + - extra-cmake-modules + - fakeroot + - gcc + - gcc-libs + - gdb + - git + - git-lfs + - github-cli + - github-desktop + - icu69-bin + - jdk-openjdk + - lld + - lldb + - llvm + - llvm-libs + - lua-language-server + - make + - python-lsp-server + - rust-analyzer + - rustup + - sccache + - sqlitebrowser + - tailwindcss-language-server + - typescript + - typescript-language-server + - visual-studio-code-bin + - vscode-json-languageserver + - vue-language-server + - yaml-language-server + + - name: "Mail applications" + description: "Add the mail applications" + expanded: true + selected: true + subgroups: + + - name: "Mailspring" + description: "Add the mailspring" + selected: true + packages: + - mailspring + + - name: "Thunderbird" + description: "Add the thunderbird" + selected: false + packages: + - thunderbird + - thunderbird-i18n-$LOCALE + + - name: "Chat applications" + description: "Add the mail applications" + selected: true + packages: + - telegram-desktop + - discord + - zoom + - skypeforlinux-stable-bin + + - name: "Passwords / keys applications" + description: "Add the mail applications" + selected: true + packages: + - keepassxc + - kleopatra + + - name: "Desktop applications" + description: "Add the desktop applications" + selected: true + packages: + - corectrl + - gwe + - obs-studio-tytan652 + - qbittorrent + - yakuake + - yandex-disk + - yandex-disk-indicator + - anydesk-bin + - filezilla + - meld + + - name: "Bluetooth" + description: "Bluetooth support" + selected: true + packages: + - bluetooth-support + - bluez + - bluez-hid2hci + - bluez-libs + - bluez-utils + + - name: "Printing support" + description: "Support for printing (Cups)" + selected: false + packages: + - cups + - cups-browsed + - cups-filters + - cups-pdf + - foomatic-db + - foomatic-db-engine + - foomatic-db-gutenprint-ppds + - foomatic-db-nonfree + - foomatic-db-nonfree-ppds + - foomatic-db-ppds + - ghostscript + - gsfonts + - gutenprint + - print-manager + - printer-support + - splix + - system-config-printer + + - name: "HP printer/scanner support" + description: "Packages for HP printer/scanner" + selected: false + packages: + - cups + - cups-browsed + - cups-filters + - cups-pdf + - hplip + - hplip-plugin + - python-pyqt5 + - python-reportlab + - scanner-support + - xsane + + - name: "Containers" + description: "Add the Docker, etc" + expanded: true + selected: true + subgroups: + + - name: "QEMU" + description: "Add the Docker, etc" + selected: true + packages: + - qemu-desktop + - virt-manager + - virt-viewer + - edk2-shell + - bridge-utils + - udisks2 + - networkmanager + - firewalld + + - name: "Docker" + description: "Add the Docker, etc" + selected: true + packages: + - docker + - docker-compose + - docker-machine + - docker-scan + - docker-buildx + - bridge-utils + - udisks2 + - networkmanager + - firewalld + + - name: "Portainer" + description: "Add the Docker, etc" + selected: false + packages: + - portainer-bin + - udisks2 + - networkmanager + - firewalld + + - name: "Containers" + description: "Add the Docker, etc" + selected: false + packages: + - podman + - podman-dnsname + - podman-compose + - podman-docker + - buildah + - cni-plugins + - netavark + - fuse-overlayfs + - udisks2 + - networkmanager + - firewalld + + - name: "VirtualBox" + description: "Add the Docker, etc" + selected: false + packages: + - virtualbox + - virtualbox-host-dkms + - virtualbox-host-modules-arch + + - name: "Vagrant" + description: "Add the Docker, etc" + selected: false + packages: + - vagrant + - udisks2 + - networkmanager + - firewalld + + - name: "Cockpit" + description: "Admin panel" + selected: false + packages: + - cockpit + - cockpit-machines + - cockpit-pcp + - cockpit-podman + - cockpit-storaged + - udisks2 + - networkmanager + - firewalld + + - name: "Support" + description: "Packages for other support" + selected: true + packages: + - input-devices-support + - laptop-detect + +- name: "GPU drivers" + description: "Recommended. Don't change unless you know what you're doing." + expanded: true + selected: true + critical: true + subgroups: + + - name: "Intel drivers" + description: "Graphics hardware drivers" + selected: true + packages: + - libva-intel-driver + - libva-utils + + - name: "AMD drivers" + description: "Graphics hardware drivers" + selected: true + packages: + - xf86-video-amdgpu + - xf86-video-ati + + - name: "NVIDIA drivers - Latest (202X)" + description: "NVIDIA graphics hardware drivers: GeForce GTX TITAN X - NVIDIA GeForce RTX X090" + selected: true + packages: + - nvidia-dkms + - nvidia-settings + - nvidia-utils + + - name: "NVIDIA drivers - 525 (2023)" + description: "NVIDIA graphics hardware drivers: NVS 810 - NVIDIA RTX 6000 Ada Generation" + selected: false + packages: + - nvidia-525xx-dkms + - nvidia-525xx-settings + - nvidia-525xx-utils + + - name: "NVIDIA drivers - 470 (2021)" + description: "NVIDIA graphics hardware drivers: NVS 510 - NVIDIA RTX A6000" + selected: false + packages: + - nvidia-470xx-dkms + - nvidia-470xx-settings + - nvidia-470xx-utils + + - name: "NVIDIA drivers - 390 (2018)" + description: "NVIDIA graphics hardware drivers: GeForce GTX TITAN Z - GeForce GTX 1080 Ti)" + selected: false + packages: + - nvidia-390-settings + - nvidia-390xx-dkms + - nvidia-390xx-utils + + - name: "NVIDIA drivers - 340 (2014)" + description: "NVIDIA graphics hardware drivers: GeForce 8200M - GeForce GTX 880M" + selected: false + packages: + - nvidia-340xx-dkms + - nvidia-340xx-settings + - nvidia-340xx-utils + +- name: "Additional packages" + description: "Additional packages" + expanded: true + selected: false + subgroups: + + - name: "Kernel in addition" + description: "Adding kernel in addition to main one" + selected: false + critical: true + packages: + - linux + - linux-headers + - linux-hardened + - linux-hardened-headers + - linux-lqx + - linux-lqx-headers + - linux-lts + - linux-lts-headers + - linux-xanmod + - linux-xanmod-headers + - linux-xanmod-lts + - linux-xanmod-lts-headers + - linux-zen + - linux-zen-headers + + - name: "Desktop terminal" + description: "Add the desktop applications" + selected: false + packages: + - alacritty + - alacritty-themes + - kitty + - kitty-shell-integration + - kitty-terminfo + + - name: "Terminal applications" + description: "General terminal tools and applications" + selected: false + packages: + - browsh + - elinks + - links + - w3m + - dialog + - glances + - micro + - xterm + + - name: "Package management" + description: "Packages tools" + selected: false + packages: + - discover + - octopi + - octopi-notifier-frameworks + +- name: "Accessibility Tools" + description: "Screen reader and mouse tweaks (impaired vision)" + selected: false + critical: true + packages: + - espeak-ng + - mousetweaks + - orca diff --git a/make_iso/packages.x86_64 b/make_iso/packages.x86_64 index 404704f..688591c 100644 --- a/make_iso/packages.x86_64 +++ b/make_iso/packages.x86_64 @@ -32,7 +32,6 @@ pacman pacman-contrib pacman-mirrorlist plymouth -plymouth-kcm refind systemd-ukify xf86-input-elographics @@ -42,130 +41,72 @@ xf86-input-void xf86-video-fbdev xf86-video-openchrome +## Terminal-Base + Common packages + +## CPU specific microcode update packages +amd-ucode +intel-ucode + ## Virtual machines -bridge-utils -edk2-shell hyperv libvirt open-vm-tools -qemu-desktop qemu-guest-agent spice-vdagent -virt-manager -virt-viewer virtualbox-guest-utils xf86-input-vmmouse xf86-video-qxl xf86-video-vmware -## Booting process: Refind integration -melawy-refind-theme-fenek -melawy-refind-theme-lera-sugar -melawy-refind-theme-nier-a2 +## Filesystem +btrfs-progs +dosfstools +e2fsprogs +efibootmgr +efitools +exfatprogs +f2fs-tools +haveged +jfsutils +lvm2 +nfs-utils +nilfs-utils +ntfs-3g +reiserfsprogs +samba-support +sbsigntools +smartmontools +xfsprogs -## Booting process: Plymouth integration +## BTRFS filesystem +btrfs-assistant +btrfs-snapshots +timeshift +timeshift-autosnap -## Nier A2 theme -melawy-plymouth-theme-hard-install-nier-a2 +## Hardware +dmidecode +dmraid +hdparm +hwdetect +lsscsi +mtools +sg3_utils +sof-firmware -## Melawy Linux Packages +## Power +cpupower +power-profiles-daemon +upower -## Plymouth -melawy-plymouth-theme-fenek -melawy-plymouth-theme-lera-sugar -melawy-plymouth-theme-nier-a2 - -## SDDM -melawy-sddm-theme-fenek -melawy-sddm-theme-lera-sugar -melawy-sddm-theme-nier-a2 - -## Cursors -melawy-purple-dark-cursors -melawy-purple-dark-default-cursors -melawy-purple-light-cursors -melawy-purple-light-default-cursors -melawy-red-dark-cursors -melawy-red-dark-default-cursors -melawy-red-light-cursors -melawy-red-light-default-cursors - -## Updater -melawy-arch-linux-updater -melawy-plasma-plasmoid-archupdate - -## Start menu -melawy-plasma-plasmoid-DittoMenu -melawy-plasma-plasmoid-Menu11 -melawy-plasma-plasmoid-OnzeMenuKDE - -## Desktop theme -fluent-gtk-theme-git -fluent-kde-theme-git -win11-icon-theme-git -win11-icon-theme-special-git -win11-icon-theme-white-git -win11os-kde-git -win12os-kde-git - -## Decor -melawy-color-scheme -melawy-color-scheme-konsole -melawy-icon-theme -melawy-plasma-desktop-theme - -## look-and-feel -melawy-plasma-look-and-feel-fenek -melawy-plasma-look-and-feel-lera-sugar -melawy-plasma-look-and-feel-nier-a2 - -## Wallpapers -melawy-wallpaper-fenek -melawy-wallpaper-lera-sugar -melawy-wallpaper-nier-a2 - -## Desktop-Base + Common packages - -## X11-system -libwnck3 -mesa -mesa-utils -xf86-input-libinput -xorg-server -xorg-xdpyinfo -xorg-xhost -xorg-xinit -xorg-xinput -xorg-xkill -xorg-xrandr -xorg-xrdb - -## GPU Intel drivers -libva-intel-driver -libva-utils - -## GPU AMD drivers -xf86-video-amdgpu -xf86-video-ati - -## GPU NVIDIA drivers - Latest (202X) -nvidia-dkms -nvidia-settings -nvidia-utils - -## V4L2 drivers -v4l2loopback-dkms - -## Recommended applications selection +## Terminal applications +bash-completion beep -browsh btop cryptsetup device-mapper -dialog diffutils duf -elinks expect fastfetch find-the-command @@ -176,6 +117,7 @@ glances gpm htop hwinfo +iftop inetutils inxi iotop @@ -188,17 +130,12 @@ man-db man-pages mc mdadm -meld -micro +mlocate nano nano-syntax-highlighting neofetch -neovim -neovim-lsp_signature -neovim-lspconfig -neovim-nvim-treesitter -neovim-qt nmap +ntp openbsd-netcat powerline powerline-common @@ -226,22 +163,14 @@ tpm2-tools tpm2-tss tree ttf-terminus-nerd +unrar +unzip usbutils vi -w3m wget which -xterm yad -## Spell -aspell -aspell-ru -aspell-en -hunspell -hunspell-ru -hunspell-en_us - ## Network b43-fwcutter bridge-utils @@ -278,32 +207,170 @@ wireless_tools wpa_supplicant xl2tpd -## Package management -appimagelauncher -downgrade -flatpak -flatpak-kcm -libpamac -libpamac-flatpak-plugin -libpamac-snap-plugin -ocs-url -octopi -pace -pamac-cli -pamac-gtk -paru -pkgfile -rebuild-detector -reflector -reflector-simple -snapd -snapd-glib -yay +## Audio +alsa-firmware +alsa-plugins +alsa-utils +pavucontrol +pipewire-alsa +pipewire-jack +pipewire-pulse +pipewire-support +rtkit +wireplumber + +## X11-system +libwnck3 +mesa +mesa-utils +xf86-input-libinput +xorg-server +xorg-xdpyinfo +xorg-xhost +xorg-xinit +xorg-xinput +xorg-xkill +xorg-xrandr +xorg-xrdb +xsettingsd + +## V4L2 drivers +v4l2loopback-dkms + +## Firewall +firewalld +python-capng +python-pyqt5 + +## Fonts +adobe-source-code-pro-fonts +adobe-source-han-sans-cn-fonts +adobe-source-han-sans-jp-fonts +adobe-source-han-sans-kr-fonts +awesome-terminal-fonts +cantarell-fonts +freetype2 +noto-color-emoji-fontconfig +noto-fonts +noto-fonts-cjk +noto-fonts-emoji +otf-fira-mono +otf-fira-sans +otf-firamono-nerd +ttf-bitstream-vera +ttf-dejavu +ttf-dejavu-nerd +ttf-fira-code +ttf-fira-sans +ttf-firacode-nerd +ttf-hack +ttf-hack-nerd +ttf-jetbrains-mono +ttf-jetbrains-mono-nerd +ttf-liberation +ttf-liberation-mono-nerd +ttf-ms-fonts +ttf-nerd-fonts-symbols +ttf-nerd-fonts-symbols-common +ttf-nerd-fonts-symbols-mono +ttf-noto-nerd +ttf-opensans +ttf-roboto +ttf-roboto-mono +ttf-roboto-mono-nerd +ttf-sourcecodepro-nerd +ttf-twemoji +ttf-ubuntu-font-family +ttf-ubuntu-mono-nerd +ttf-ubuntu-nerd + +## Spell +aspell +aspell-ru +aspell-en +hunspell +hunspell-ru +hunspell-en_us + +## Melawy Linux branding + +## Refind +melawy-refind-theme-fenek +melawy-refind-theme-lera-sugar +melawy-refind-theme-nier-a2 + +## Plymouth +melawy-plymouth-theme-fenek +melawy-plymouth-theme-lera-sugar +melawy-plymouth-theme-nier-a2 + +## Plymouth select (1 from list) + +## Nier A2 theme +melawy-plymouth-theme-hard-install-nier-a2 +melawy-refind-theme-hard-install-nier-a2 + +## Base desktop theme +melawy-icon-theme +melawy-theme + +## Desktop theme Win11 +melawy-kde-theme-win11 +melawy-kde-theme-win12 +melawy-win11-icon-theme +melawy-win11-icon-theme-special +melawy-win11-icon-theme-white + +## Desktop theme Colloid +colloid-cursors-git +colloid-gtk-theme-git +colloid-icon-theme-git +colloid-kde-theme-git + +## SDDM, KDE Plasma Look-and-feel, Wallpapers +melawy-kde-theme-fenek +melawy-kde-theme-lera-sugar +melawy-kde-theme-nier-a2 + +## Cursors +melawy-purple-dark-cursors +melawy-purple-dark-default-cursors +melawy-purple-light-cursors +melawy-purple-light-default-cursors +melawy-red-dark-cursors +melawy-red-dark-default-cursors +melawy-red-light-cursors +melawy-red-light-default-cursors + +## Start menu +melawy-plasma-plasmoid-DittoMenu +melawy-plasma-plasmoid-Menu11 +melawy-plasma-plasmoid-OnzeMenuKDE + +## Plasmoids +melawy-plasma-plasmoid-presentwindows +melawy-plasma-plasmoid-win7showdesktop + +## Updater +melawy-arch-linux-updater +melawy-plasma-plasmoid-archupdate ## Desktop integration + +## Fix applications style +gnome-settings-daemon +gnome-themes-extra +gsettings-desktop-schemas +gsettings-qt +gtk-engine-murrine +kde-gtk-config +lxappearance-gtk3 +xdg-desktop-portal +xdg-desktop-portal-kde + +## KDE Plasma accountsservice ark -bash-completion bluedevil breeze-gtk dolphin @@ -312,7 +379,7 @@ drkonqi ffmpegthumbnailer ffmpegthumbs file-roller -filezilla +flatpak-kcm glfw-wayland gnome-firmware gnome-keyring @@ -326,6 +393,7 @@ kcalc kde-gtk-config kdeconnect kdegraphics-thumbnailers +kdenetwork-filesharing kdeplasma-addons kgamma5 khotkeys @@ -343,10 +411,6 @@ kwallet-pam kwalletmanager kwin-effect-rounded-corners-git kwin-effects-sliding-notifications -libdvdcss -libgsf -libopenraw -mlocate network-manager-applet okular partitionmanager @@ -364,6 +428,7 @@ plasma-wayland-protocols plasma-wayland-session plasma-workspace plasma-workspace-wallpapers +plymouth-kcm polkit-kde-agent poppler-glib powerdevil @@ -378,143 +443,36 @@ xdg-desktop-portal-kde xdg-user-dirs xdg-user-dirs-gtk xdg-utils -xsettingsd -## Filesystem -btrfs-progs -dosfstools -e2fsprogs -efibootmgr -efitools -exfatprogs -f2fs-tools -haveged -jfsutils -kdenetwork-filesharing -lvm2 -nfs-utils -nilfs-utils -ntfs-3g -ntp -reiserfsprogs -samba-support -sbsigntools -smartmontools -unrar -unzip -xfsprogs -xz - -## BTRFS filesystem -btrfs-assistant -btrfs-snapshots -timeshift -timeshift-autosnap - -## Fonts -adobe-source-code-pro-fonts -adobe-source-han-sans-cn-fonts -adobe-source-han-sans-jp-fonts -adobe-source-han-sans-kr-fonts -awesome-terminal-fonts -cantarell-fonts -freetype2 -noto-color-emoji-fontconfig -noto-fonts -noto-fonts-cjk -noto-fonts-emoji -opendesktop-fonts -otf-fira-mono -otf-fira-sans -otf-firamono-nerd -ttf-bitstream-vera -ttf-dejavu -ttf-dejavu-nerd -ttf-fira-code -ttf-fira-sans -ttf-firacode-nerd -ttf-hack -ttf-hack-nerd -ttf-jetbrains-mono -ttf-jetbrains-mono-nerd -ttf-liberation -ttf-liberation-mono-nerd -ttf-meslo-nerd -ttf-ms-fonts -ttf-nerd-fonts-symbols -ttf-nerd-fonts-symbols-common -ttf-nerd-fonts-symbols-mono -ttf-noto-nerd -ttf-opensans -ttf-roboto -ttf-roboto-mono -ttf-roboto-mono-nerd -ttf-sourcecodepro-nerd -ttf-twemoji -ttf-ubuntu-font-family -ttf-ubuntu-mono-nerd -ttf-ubuntu-nerd - -## Audio -alsa-firmware -alsa-plugins -alsa-utils -pavucontrol -pipewire-alsa -pipewire-jack -pipewire-pulse -pipewire-support -rtkit -wireplumber - -## Hardware -dmidecode -dmraid -hdparm -hwdetect -lsscsi -mtools -sg3_utils -sof-firmware - -## Power -cpupower -power-profiles-daemon -upower - -## CPU specific microcode update packages -amd-ucode -intel-ucode +## Package management +appimagelauncher +downgrade +flatpak +libpamac +libpamac-flatpak-plugin +libpamac-snap-plugin +ocs-url +pace +pamac-cli +pamac-gtk +paru +pkgfile +rebuild-detector +reflector +reflector-simple +snapd +snapd-glib +yay ## Browsers and language package -brave-bin + +## Firefox firefox firefox-developer-edition firefox-developer-edition-i18n-ru firefox-i18n-ru -google-chrome profile-sync-daemon -## Desktop environment -anydesk-bin -avidemux-cli -avidemux-qt -corectrl -discord -gwe -keepassxc -kleopatra -mailspring -obs-studio-tytan652 -qbittorrent -skypeforlinux-stable-bin -telegram-desktop -thunderbird -yakuake -yandex-disk -yandex-disk-indicator -zoom - ## Office ## FreeOffice @@ -522,13 +480,12 @@ freeoffice ## Media players audacious -audacity elisa haruna mpv vlc-luajit -## Picture Editors +## Picture editors gimp gimp-help-ru gvfs @@ -538,7 +495,17 @@ gvfs-mtp gvfs-nfs gvfs-smb inkscape -krita +libdvdcss +libgsf +libopenraw + +## Audio recorder +audacity +audio-recorder + +## Video editors +avidemux-cli +avidemux-qt ## Code IDE and programming language package ansible-language-server @@ -583,10 +550,32 @@ vscode-json-languageserver vue-language-server yaml-language-server -## Firewall -firewalld -python-capng -python-pyqt5 +## Mail applications + +## Mailspring +mailspring + +## Chat applications +discord +skypeforlinux-stable-bin +telegram-desktop +zoom + +## Passwords / keys applications +keepassxc +kleopatra + +## Desktop applications +anydesk-bin +corectrl +filezilla +gwe +meld +obs-studio-tytan652 +qbittorrent +yakuake +yandex-disk +yandex-disk-indicator ## Bluetooth bluetooth-support @@ -595,17 +584,55 @@ bluez-hid2hci bluez-libs bluez-utils +## Containers + +## QEMU +bridge-utils +edk2-shell +firewalld +networkmanager +qemu-desktop +udisks2 +virt-manager +virt-viewer + +## Docker +bridge-utils +docker +docker-buildx +docker-compose +docker-machine +docker-scan +firewalld +networkmanager +udisks2 + ## Support input-devices-support laptop-detect +## GPU drivers + +## Intel drivers +libva-intel-driver +libva-utils + +## AMD drivers +xf86-video-amdgpu +xf86-video-ati + +## NVIDIA drivers - Latest (202X) +nvidia-dkms +nvidia-settings +nvidia-utils + ## ARCHISO PACKAGES archiso clonezilla ddrescue gpart grsync -melawy-calamares-qt5 +melawy-calamares-qt6 melawy-skel-liveuser memtest86+ mkinitcpio-archiso diff --git a/make_iso/profiledef.sh b/make_iso/profiledef.sh index 9289969..1990476 100644 --- a/make_iso/profiledef.sh +++ b/make_iso/profiledef.sh @@ -1,8 +1,9 @@ #!/usr/bin/env bash # shellcheck disable=SC2034 +date_tag=$(date +%Y.%m.%d) iso_name="Melawy-linux" -iso_label="Melawy_Linux_$(date +%Y%m%d)" +iso_label="Melawy_Linux_$(date +%Y.%m.%d)" iso_publisher="Melawy Linux " iso_application="Melawy Linux Live/Rescue CD" iso_version="$(date --date="@${SOURCE_DATE_EPOCH:-$(date +%s)}" +%Y.%m.%d)" @@ -10,7 +11,7 @@ install_dir="arch" buildmodes=('iso') quiet="n" work_dir="../work" -out_dir="../boot/iso" +out_dir="../sf/${date_tag}" bootmodes=('bios.syslinux.mbr' 'bios.syslinux.eltorito' 'uefi-x64.systemd-boot.esp' 'uefi-x64.systemd-boot.eltorito') arch="x86_64" diff --git a/mkdirs.sh b/mkdirs.sh new file mode 100755 index 0000000..0915faf --- /dev/null +++ b/mkdirs.sh @@ -0,0 +1,8 @@ +#!/bin/bash + +mkdir -pv ./boot/{fd,iso,qcow2,shell_scripts,txt} 2>/dev/null +mkdir -pv ./make_iso 2>/dev/null +mkdir -pv ./sf 2>/dev/null +mkdir -pv ./work 2>/dev/null + +echo "Ready" diff --git a/pkgs_size.sh b/pkgs_size.sh new file mode 100755 index 0000000..c0dc5fd --- /dev/null +++ b/pkgs_size.sh @@ -0,0 +1,6 @@ +#!/bin/bash + +# ls -lS /var/cache/pacman/pkg/ | grep -v ".sig" | awk '{print $5/1024/1024,"\t",$8}' > pkgs_size.txt +ls -lS /var/cache/pacman/pkg/ | grep -v ".sig" | awk {'printf ("%s\t\t\t%s\n", $5/1024/1024, $9)'} > pkgs_size.txt +# awk {'printf ("%5s\t%s\n", $5, $1)'} +echo "Ready" diff --git a/pkgs_size.txt b/pkgs_size.txt new file mode 100644 index 0000000..eaef10d --- /dev/null +++ b/pkgs_size.txt @@ -0,0 +1,1758 @@ +0 +1519.36 cuda-12.3.0-1-x86_64.pkg.tar.zst +457.807 jdk-openjdk-21.u35-7-x86_64.pkg.tar.zst +239.888 nvidia-utils-545.29.02-2-x86_64.pkg.tar.zst +236.853 zoom-5.16.6-1-x86_64.pkg.tar.zst +235.799 zoom-5.16.5-1-x86_64.pkg.tar.zst +188.763 noto-fonts-cjk-20230817-1-any.pkg.tar.zst +162.037 linux-firmware-20231030.2b304bfe-1-any.pkg.tar.zst +144.089 brave-bin-1:1.60.110-1-x86_64.pkg.tar.zst +143.837 brave-bin-1:1.59.124-1-x86_64.pkg.tar.zst +136.303 google-chrome-119.0.6045.105-1-x86_64.pkg.tar.zst +136.265 google-chrome-118.0.5993.88-1-x86_64.pkg.tar.zst +132.744 mailspring-1.11.0-1-x86_64.pkg.tar.zst +117.889 visual-studio-code-bin-1.84.0-1-x86_64.pkg.tar.zst +117.873 visual-studio-code-bin-1.83.1-1-x86_64.pkg.tar.zst +115.111 github-desktop-3.3.3-1-x86_64.pkg.tar.zst +111.471 skypeforlinux-stable-bin-8.107.0.215-1-x86_64.pkg.tar.zst +111.401 skypeforlinux-stable-bin-8.106.0.212-1-x86_64.pkg.tar.zst +107.375 obs-studio-tytan652-29.1.3-6-x86_64.pkg.tar.zst +93.5624 freeoffice-1064-1-x86_64.pkg.tar.xz +91.5627 mailspring-1.11.0-1-x86_64.pkg.tar.xz +89.6575 plasma-workspace-wallpapers-5.27.9-1-any.pkg.tar.zst +82.1146 linux-xanmod-anbox-6.5.10-1-x86_64.pkg.tar.xz +79.8035 dbeaver-23.2.2-1-x86_64.pkg.tar.zst +70.7107 breeze-5.27.9-1-x86_64.pkg.tar.zst +68.4625 discord-0.0.33-1-x86_64.pkg.tar.zst +66.3218 krita-5.2.1-1-x86_64.pkg.tar.zst +65.3569 ttf-noto-nerd-3.0.2-1-any.pkg.tar.zst +64.4538 firefox-119.0-1-x86_64.pkg.tar.zst +64.0804 firefox-developer-edition-120.0b6-1-x86_64.pkg.tar.zst +61.2197 linux-firmware-marvell-20231030.2b304bfe-1-any.pkg.tar.zst +55.8453 thunderbird-115.4.1-1-x86_64.pkg.tar.zst +48.4013 qt5-webengine-5.15.15-2-x86_64.pkg.tar.zst +47.6614 gimp-help-ru-2.10.34-1-any.pkg.tar.zst +46.8372 gcc-13.2.1-3-x86_64.pkg.tar.zst +42.4774 clang-16.0.6-1-x86_64.pkg.tar.zst +41.9539 nvidia-dkms-545.29.02-2-x86_64.pkg.tar.zst +41.6271 adobe-source-han-sans-cn-fonts-2.004-1-any.pkg.tar.zst +40.9868 jre-openjdk-headless-21.u35-3-x86_64.pkg.tar.zst +40.6797 discord-0.0.34-1-x86_64.pkg.tar.zst.part +38.2344 firefox-developer-edition-120.0b7-1-x86_64.pkg.tar.zst.part +35.346 gcc-libs-13.2.1-3-x86_64.pkg.tar.zst +33.6289 ansible-8.5.0-1-any.pkg.tar.zst +32.2623 telegram-desktop-4.11.3-1-x86_64.pkg.tar.zst +32.2586 telegram-desktop-4.11.3-2-x86_64.pkg.tar.zst +31.2312 llvm-libs-16.0.6-1-x86_64.pkg.tar.zst +27.4891 noto-fonts-1:23.11.1-1-any.pkg.tar.zst +27.2686 webkit2gtk-4.1-2.42.1-2-x86_64.pkg.tar.zst +26.8007 docker-1:24.0.7-1-x86_64.pkg.tar.zst +26.1885 containerd-1.7.8-1-x86_64.pkg.tar.zst +25.4515 snapd-2.60.4-1-x86_64.pkg.tar.zst +23.8828 inkscape-1.3-4-x86_64.pkg.tar.zst +22.8272 adobe-source-han-sans-jp-fonts-2.004-1-any.pkg.tar.zst +22.3872 suitesparse-7.3.1-1-x86_64.pkg.tar.zst +21.8925 adobe-source-han-sans-kr-fonts-2.004-1-any.pkg.tar.zst +21.7521 melawy-calamares-config-3.3.0.11056-1-any.pkg.tar.xz +21.2804 linux-xanmod-anbox-headers-6.5.10-1-x86_64.pkg.tar.xz +20.834 melawy-calamares-qt6-3.3.0.10915-1-any.pkg.tar.xz +20.6168 melawy-calamares-3.3.0.11035-1-any.pkg.tar.xz +20.6122 melawy-calamares-qt5-3.3.0.11057-1-any.pkg.tar.xz +20.6091 melawy-calamares-qt5-3.3.0.11056-1-any.pkg.tar.xz +20.5123 melawy-icon-theme-1.16-1-any.pkg.tar.xz +20.2593 perl-5.38.0-1-x86_64.pkg.tar.zst +20.007 gimp-2.10.34-3-x86_64.pkg.tar.zst +19.6295 ghostscript-10.02.1-1-x86_64.pkg.tar.zst +19.4609 plasma-workspace-5.27.9.1-1-x86_64.pkg.tar.zst +18.3165 archlinux-appstream-data-20231010-1-any.pkg.tar.zst +18.023 fluent-gtk-theme-git-2023.06.20.r14.g9fdf52e-1-any.pkg.tar.zst +17.8673 llvm-16.0.6-1-x86_64.pkg.tar.zst +17.7482 mesa-1:23.2.1-2-x86_64.pkg.tar.zst +17.1619 vlc-luajit-3.0.19-1-x86_64.pkg.tar.zst +16.9348 fluent-kde-theme-git-r94.83d5cc2-1-any.pkg.tar.zst +16.0092 edk2-ovmf-202308-3-any.pkg.tar.zst +15.1529 nodejs-21.1.0-1-x86_64.pkg.tar.zst +15.0278 plasma-desktop-5.27.9-1-x86_64.pkg.tar.zst +14.4336 boost-1.83.0-2-x86_64.pkg.tar.zst +13.9231 python-3.11.5-2-x86_64.pkg.tar.zst +13.8746 nodejs-20.9.0-1-x86_64.pkg.tar.zst +13.6316 qt6-base-6.6.0-3-x86_64.pkg.tar.zst +13.0842 qt5-base-5.15.11+kde+r138-1-x86_64.pkg.tar.zst +12.8937 ffmpeg-obs-6.0.r12.ga6dc929-9-x86_64.pkg.tar.zst +12.8022 win11-icon-theme-git-r174.9c69f73-1-any.pkg.tar.xz +12.3636 docker-compose-2.23.0-1-x86_64.pkg.tar.zst +12.2801 qt6-declarative-6.6.0-1-x86_64.pkg.tar.zst +11.919 otf-fira-sans-1:4.301-2-any.pkg.tar.zst +11.7774 js115-115.4.0-2-x86_64.pkg.tar.zst +11.253 opendesktop-fonts-1.4.2-6-any.pkg.tar.zst +11.2096 cmake-3.27.7-2-x86_64.pkg.tar.zst +11.1745 icu-73.2-2-x86_64.pkg.tar.zst +10.7944 ansible-language-server-1.2.1-1-any.pkg.tar.zst +10.6794 melawy-refind-theme-nier-a2-1.5-1-any.pkg.tar.xz +10.0217 qt5-virtualkeyboard-5.15.11-1-x86_64.pkg.tar.zst +9.87043 glibc-2.38-7-x86_64.pkg.tar.zst +9.40414 kate-23.08.2-1-x86_64.pkg.tar.zst +8.95327 noto-fonts-emoji-20220920-1-any.pkg.tar.zst +8.84634 kwin-5.27.9-1-x86_64.pkg.tar.zst +8.64403 github-cli-2.38.0-1-x86_64.pkg.tar.zst +8.40546 samba-4.19.2-1-x86_64.pkg.tar.zst +8.34358 libvirt-1:9.9.0-1-x86_64.pkg.tar.zst +8.33489 audacity-1:3.3.3-1-x86_64.pkg.tar.zst +8.27763 icu69-bin-69.1-1-x86_64.pkg.tar.xz +8.1738 imagemagick-7.1.1.21-1-x86_64.pkg.tar.zst +8.10035 kio5-5.111.0-1-x86_64.pkg.tar.zst +8.09932 guile-3.0.9-1-x86_64.pkg.tar.zst +8.07972 ttf-fira-sans-1:4.301-2-any.pkg.tar.zst +7.94097 melawy-sddm-theme-nier-a2-1.2-1-any.pkg.tar.xz +7.71008 gtk3-1:3.24.38-1-x86_64.pkg.tar.zst +7.66957 systemd-254.5-1-x86_64.pkg.tar.zst +7.59351 binutils-2.41-3-x86_64.pkg.tar.zst +7.26935 fwupd-1.9.7-1-x86_64.pkg.tar.zst +7.23098 keepassxc-2.7.6-2-x86_64.pkg.tar.zst +7.17814 qbittorrent-4.6.0-1-x86_64.pkg.tar.zst +7.11605 okular-23.08.2-1-x86_64.pkg.tar.zst +7.09377 doublecmd-qt5-1.0.11-3-x86_64.pkg.tar.zst +7.06214 python-numpy-1.26.1-1-x86_64.pkg.tar.zst +6.99372 melawy-plymouth-theme-nier-a2-1.8-1-any.pkg.tar.xz +6.8085 grub-2:2.12rc1-5-x86_64.pkg.tar.zst +6.79485 gwenview-23.08.2-1-x86_64.pkg.tar.zst +6.72665 smbclient-4.19.2-1-x86_64.pkg.tar.zst +6.71918 breeze-icons-5.111.0-1-any.pkg.tar.zst +6.71591 rust-analyzer-20231106-1-x86_64.pkg.tar.zst +6.71003 rust-analyzer-20231030-1-x86_64.pkg.tar.zst +6.699 anydesk-bin-6.3.0-1-x86_64.pkg.tar.zst +6.62528 avidemux-cli-2.8.1-2-x86_64.pkg.tar.zst +6.51072 melawy-refind-theme-fenek-1.4-1-any.pkg.tar.xz +6.43608 melawy-branding-1.8-1-any.pkg.tar.xz +6.37363 melawy-refind-theme-lera-sugar-1.10-1-any.pkg.tar.xz +6.23226 sccache-0.6.0-1-x86_64.pkg.tar.zst +6.16569 git-2.42.1-1-x86_64.pkg.tar.zst +6.11115 neovim-0.9.4-2-x86_64.pkg.tar.zst +6.08789 ttf-jetbrains-mono-nerd-3.0.2-1-any.pkg.tar.zst +6.04648 gtk4-1:4.12.3-2-x86_64.pkg.tar.zst +5.95466 lldb-16.0.6-1-x86_64.pkg.tar.zst +5.92651 melawy-plasma-look-and-feel-nier-a2-1.2-1-any.pkg.tar.xz +5.90138 intel-ucode-20230808-1-any.pkg.tar.zst +5.87173 qemu-system-x86-8.1.2-1-x86_64.pkg.tar.zst +5.85677 doxygen-1.9.8-1-x86_64.pkg.tar.zst +5.77289 python-matplotlib-3.8.1-1-x86_64.pkg.tar.zst +5.74919 gtk2-2.24.33-3-x86_64.pkg.tar.zst +5.61413 nmap-7.94-2-x86_64.pkg.tar.zst +5.46403 man-pages-6.05.01-2-any.pkg.tar.zst +5.33046 qt5-tools-5.15.11+kde+r3-1-x86_64.pkg.tar.zst +4.97113 melawy-wallpaper-nier-a2-1.7-1-any.pkg.tar.xz +4.8322 qt5-declarative-5.15.11+kde+r31-1-x86_64.pkg.tar.zst +4.67237 kwidgetsaddons5-5.111.0-1-x86_64.pkg.tar.zst +4.63103 wxwidgets-gtk3-3.2.3-1-x86_64.pkg.tar.zst +4.52036 openssl-3.1.4-1-x86_64.pkg.tar.zst +4.38787 gdb-13.2-1-x86_64.pkg.tar.zst +4.37208 yandex-disk-0.1.6.1080-1.1-x86_64.pkg.tar.zst +4.37137 dolphin-23.08.2-1-x86_64.pkg.tar.zst +4.33273 python-pyqt5-5.15.10-1-x86_64.pkg.tar.zst +4.29181 grpc-1.59.2-1-x86_64.pkg.tar.zst +4.229 filezilla-3.66.0-1-x86_64.pkg.tar.zst +4.22676 filezilla-3.66.1-1-x86_64.pkg.tar.zst +4.2219 grpc-1.58.1-2-x86_64.pkg.tar.zst +4.19459 ttf-liberation-mono-nerd-3.0.2-1-any.pkg.tar.zst +4.07562 win11-icon-theme-special-git-r174.9c69f73-1-any.pkg.tar.xz +4.07131 win11-icon-theme-white-git-r174.9c69f73-1-any.pkg.tar.xz +4.03389 ttf-meslo-nerd-3.0.2-1-any.pkg.tar.zst +4.01523 imath-3.1.9-2-x86_64.pkg.tar.zst +4.00799 evolution-data-server-3.50.1-2-x86_64.pkg.tar.zst +4.00566 otf-firamono-nerd-3.0.2-1-any.pkg.tar.zst +4.00116 micro-2.0.13-1-x86_64.pkg.tar.zst +3.98948 plasma-framework5-5.111.0-1-x86_64.pkg.tar.zst +3.9731 win11os-kde-git-r48.b5daaa3-1-any.pkg.tar.xz +3.87056 git-lfs-3.4.0-1-x86_64.pkg.tar.zst +3.82353 glib2-2.78.1-1-x86_64.pkg.tar.zst +3.78085 ttf-roboto-mono-nerd-3.0.2-1-any.pkg.tar.zst +3.77046 melawy-sddm-theme-fenek-1.1-1-any.pkg.tar.xz +3.69954 networkmanager-1.44.2-3-x86_64.pkg.tar.zst +3.63534 melawy-sddm-theme-lera-sugar-1.8-1-any.pkg.tar.xz +3.62689 hdf5-1.14.3-1-x86_64.pkg.tar.zst +3.57211 yay-12.1.3-1-x86_64.pkg.tar.zst +3.55412 shellcheck-0.9.0-57-x86_64.pkg.tar.zst +3.55221 avidemux-qt-2.8.1-2-x86_64.pkg.tar.zst +3.53584 ktexteditor5-5.111.0-1-x86_64.pkg.tar.zst +3.52238 kdelibs4support-5.111.0-1-x86_64.pkg.tar.zst +3.40254 sddm-0.20.0-2-x86_64.pkg.tar.zst +3.37925 libakonadi-23.08.2-1-x86_64.pkg.tar.zst +3.35031 geoip-database-20230901-1-any.pkg.tar.zst +3.34089 browsh-1.8.2-1.4-x86_64.pkg.tar.zst +3.29398 alsa-firmware-1.2.4-3-any.pkg.tar.zst +3.28455 zfs-dkms-git-2:2.2.99.r174.g043c6ee3b6-1-any.pkg.tar.zst +3.26649 rate-mirrors-0.16.4-1-x86_64.pkg.tar.zst +3.25498 iso-codes-4.15.0-1-any.pkg.tar.zst +3.22844 kleopatra-23.08.2-1-x86_64.pkg.tar.zst +3.217 ttf-sourcecodepro-nerd-3.0.2-1-any.pkg.tar.zst +3.2015 python-websockets-10.4-3-x86_64.pkg.tar.zst +3.19236 ansible-core-2.15.5-1-any.pkg.tar.zst +3.16125 zfs-utils-git-2:2.2.99.r174.g043c6ee3b6-1-x86_64.pkg.tar.zst +3.15946 compiler-rt-16.0.6-2-x86_64.pkg.tar.zst +3.06546 glslang-13.0.0-1-x86_64.pkg.tar.zst +3.03679 kwayland5-5.111.0-1-x86_64.pkg.tar.zst +2.96836 zenity-3.44.2-1-x86_64.pkg.tar.zst +2.96261 runc-1.1.10-1-x86_64.pkg.tar.zst +2.91251 ttf-ms-fonts-2.0-12-any.pkg.tar.zst +2.8976 gegl-0.4.46-2-x86_64.pkg.tar.zst +2.89327 openmpi-4.1.5-5-x86_64.pkg.tar.zst +2.87826 paru-1.11.2-1-x86_64.pkg.tar.zst +2.86865 wxwidgets-common-3.2.3-1-x86_64.pkg.tar.zst +2.84538 lua-language-server-3.7.0-1-x86_64.pkg.tar.zst +2.82673 p7zip-1:17.05-2-x86_64.pkg.tar.zst +2.81188 aom-3.7.0-1-x86_64.pkg.tar.zst +2.79856 opencl-nvidia-545.29.02-2-x86_64.pkg.tar.zst +2.7824 coreutils-9.4-2-x86_64.pkg.tar.zst +2.78221 ruby-3.0.6-1-x86_64.pkg.tar.zst +2.75841 fftw-3.3.10-4-x86_64.pkg.tar.zst +2.74955 gnutls-3.8.1-2-x86_64.pkg.tar.zst +2.70597 util-linux-2.39.2-2-x86_64.pkg.tar.zst +2.70348 ttf-twemoji-14.0.2-2.2-any.pkg.tar.zst +2.69812 ttf-ubuntu-nerd-3.0.2-1-any.pkg.tar.zst +2.69709 libqalculate-4.8.1-1-x86_64.pkg.tar.zst +2.64885 ttf-twemoji-14.0.2-2-any.pkg.tar.xz +2.61818 python-fonttools-4.44.0-1-x86_64.pkg.tar.zst +2.61444 ttf-dejavu-2.37+18+g9b5d1b2f-4-any.pkg.tar.zst +2.57311 graphicsmagick-1.3.42-1-x86_64.pkg.tar.zst +2.56605 librsvg-2:2.57.0-1-x86_64.pkg.tar.zst +2.55769 botan-3.2.0-1-x86_64.pkg.tar.zst +2.53626 libtorrent-rasterbar-1:2.0.9-3-x86_64.pkg.tar.zst +2.51356 tcl-8.6.13-1-x86_64.pkg.tar.zst +2.5003 lapack-3.11.0-3-x86_64.pkg.tar.zst +2.47698 qt5-location-5.15.11+kde+r5-1-x86_64.pkg.tar.zst +2.47683 rustup-1.26.0-3-x86_64.pkg.tar.zst +2.41564 rate-mirrors-0.16.4-1-x86_64.pkg.tar.xz +2.40888 libqmi-1.34.0-1-x86_64.pkg.tar.zst +2.40807 ttf-firacode-nerd-3.0.2-1-any.pkg.tar.zst +2.40167 gst-plugins-bad-libs-1.22.6-1-x86_64.pkg.tar.zst +2.36347 gnupg-2.2.41-2-x86_64.pkg.tar.zst +2.35915 ttf-roboto-2.138-4-any.pkg.tar.zst +2.35695 ttf-ms-fonts-2.0-12-any.pkg.tar.xz +2.34443 typescript-5.2.2-1-any.pkg.tar.zst +2.3406 protobuf-25.0-1-x86_64.pkg.tar.zst +2.33918 groff-1.23.0-5-x86_64.pkg.tar.zst +2.29506 appstream-0.16.3-1-x86_64.pkg.tar.zst +2.28105 yaml-language-server-1.14.0-1-any.pkg.tar.zst +2.26776 boost-libs-1.83.0-2-x86_64.pkg.tar.zst +2.2341 protobuf-24.4-1-x86_64.pkg.tar.zst +2.2267 ttf-dejavu-nerd-3.0.2-1-any.pkg.tar.zst +2.18316 gst-plugins-base-libs-1.22.6-1-x86_64.pkg.tar.zst +2.17869 gst-plugins-good-1.22.6-1-x86_64.pkg.tar.zst +2.16104 partitionmanager-23.08.2-1-x86_64.pkg.tar.zst +2.15971 ttf-hack-nerd-3.0.2-1-any.pkg.tar.zst +2.1344 mold-2.3.2-1-x86_64.pkg.tar.zst +2.09469 ksystemlog-23.08.2-1-x86_64.pkg.tar.zst +2.08924 glade-3.40.0+r14+g1fbca367-2-x86_64.pkg.tar.zst +2.06019 botan2-2.19.3-1-x86_64.pkg.tar.zst +2.06002 qemu-img-8.1.2-1-x86_64.pkg.tar.zst +2.04276 libkgapi-23.08.2-1-x86_64.pkg.tar.zst +2.03877 opencolorio-2.2.1-13-x86_64.pkg.tar.zst +2.03135 ttf-terminus-nerd-3.0.2-1-any.pkg.tar.zst +2.02518 libjxl-0.8.2-2-x86_64.pkg.tar.zst +2.01646 libx11-1.8.7-1-x86_64.pkg.tar.zst +2.01048 svt-av1-1.7.0-1-x86_64.pkg.tar.zst +1.99253 ttf-ubuntu-mono-nerd-3.0.2-1-any.pkg.tar.zst +1.96731 poppler-data-0.4.12-1-any.pkg.tar.zst +1.96308 khotkeys-5.27.9-1-x86_64.pkg.tar.zst +1.96012 bind-9.18.19-1-x86_64.pkg.tar.zst +1.94871 knewstuff5-5.111.0-1-x86_64.pkg.tar.zst +1.93803 melawy-plymouth-theme-lera-sugar-1.16-1-any.pkg.tar.xz +1.93372 qemu-common-8.1.2-1-x86_64.pkg.tar.zst +1.92366 ki18n5-5.111.0-1-x86_64.pkg.tar.zst +1.91949 codelldb-1.9.2-1-x86_64.pkg.tar.xz +1.8958 elisa-23.08.2-1-x86_64.pkg.tar.zst +1.88256 qt5-translations-5.15.11-1-any.pkg.tar.zst +1.87643 mlt-7.20.0-1-x86_64.pkg.tar.zst +1.85582 exiv2-0.28.0-3-x86_64.pkg.tar.zst +1.84168 gettext-0.22.3-1-x86_64.pkg.tar.zst +1.83164 libwmf-0.2.13-1-x86_64.pkg.tar.zst +1.83044 sqlitebrowser-3.12.2-3-x86_64.pkg.tar.zst +1.82716 kemoticons-5.111.0-1-x86_64.pkg.tar.zst +1.81066 mc-4.8.30-1-x86_64.pkg.tar.zst +1.8106 bash-5.2.015-5-x86_64.pkg.tar.zst +1.80864 vue-language-server-1.8.22-1-any.pkg.tar.zst +1.80836 oxygen-sounds-5.27.9-1-any.pkg.tar.zst +1.80275 lld-16.0.6-1-x86_64.pkg.tar.zst +1.80091 lvm2-2.03.22-2-x86_64.pkg.tar.zst +1.79378 ntp-4.2.8.p17-1-x86_64.pkg.tar.zst +1.79343 konsole-23.08.2-1-x86_64.pkg.tar.zst +1.79336 gstreamer-1.22.6-1-x86_64.pkg.tar.zst +1.78324 sudo-1.9.14.p3-1-x86_64.pkg.tar.zst +1.75879 flatpak-1:1.15.4-1-x86_64.pkg.tar.zst +1.70036 gparted-1.5.0-1-x86_64.pkg.tar.zst +1.69443 qt6-translations-6.6.0-1-any.pkg.tar.zst +1.68671 x265-3.5-3-x86_64.pkg.tar.zst +1.67777 texinfo-7.1-1-x86_64.pkg.tar.zst +1.66749 networkmanager-qt5-5.111.0-1-x86_64.pkg.tar.zst +1.66486 broadcom-wl-dkms-6.30.223.271-36-x86_64.pkg.tar.zst +1.65249 kxmlgui5-5.111.0-1-x86_64.pkg.tar.zst +1.6209 wpa_supplicant-2:2.10-8-x86_64.pkg.tar.zst +1.61616 sqlite-3.44.0-1-x86_64.pkg.tar.zst +1.59445 gsfonts-20200910-3-any.pkg.tar.zst +1.58984 zfs-dkms-2.2.0-1-any.pkg.tar.zst.part +1.57965 nss-3.94-1-x86_64.pkg.tar.zst +1.56801 poppler-23.10.0-1-x86_64.pkg.tar.zst +1.56038 hwdata-0.375-2-any.pkg.tar.zst +1.55292 frameworkintegration5-5.111.0-1-x86_64.pkg.tar.zst +1.54644 npm-10.2.3-2-any.pkg.tar.zst +1.52967 ttf-liberation-2.1.5-1-any.pkg.tar.zst +1.52784 python-pydantic-core-1:2.10.1-1-x86_64.pkg.tar.zst +1.51604 qt5-quickcontrols2-5.15.11+kde+r5-1-x86_64.pkg.tar.zst +1.51567 rav1e-0.6.6-3-x86_64.pkg.tar.zst +1.5129 aspell-ru-0.99f7.1-1-x86_64.pkg.tar.zst +1.48816 ark-23.08.2-2-x86_64.pkg.tar.zst +1.48621 spectacle-23.08.2-1-x86_64.pkg.tar.zst +1.47981 gsl-2.7.1-3-x86_64.pkg.tar.zst +1.47756 audacious-plugins-4.3.1-2-x86_64.pkg.tar.zst +1.47291 ttf-ubuntu-font-family-1:0.83-1-any.pkg.tar.zst +1.46491 syslog-ng-4.4.0-2-x86_64.pkg.tar.zst +1.46129 syslog-ng-4.4.0-3-x86_64.pkg.tar.zst +1.45579 v4l-utils-1.24.1-2-x86_64.pkg.tar.zst +1.44973 octopi-0.15.0-1-any.pkg.tar.zst +1.44263 syntax-highlighting5-5.111.0-1-x86_64.pkg.tar.zst +1.43424 xorg-server-21.1.9-1-x86_64.pkg.tar.zst +1.4342 pcre2-10.42-2-x86_64.pkg.tar.zst +1.4306 gtkmm3-3.24.8-1-x86_64.pkg.tar.zst +1.42875 ipython-8.17.2-1-any.pkg.tar.zst +1.4207 mpv-1:0.36.0-1-x86_64.pkg.tar.zst +1.42049 rubberband-3.3.0-1-x86_64.pkg.tar.zst +1.41454 spirv-tools-2022.4-1-x86_64.pkg.tar.zst +1.40382 plasma-nm-5.27.9-1-x86_64.pkg.tar.zst +1.40336 syslinux-6.04.pre2.r11.gbf6db5b4-4-x86_64.pkg.tar.zst +1.40067 kcalendarcore5-5.111.0-1-x86_64.pkg.tar.zst +1.39954 iptables-nft-1:1.8.9-1-x86_64.pkg.tar.zst +1.38849 kvantum-1.0.10-2-x86_64.pkg.tar.zst +1.36895 kcoreaddons5-5.111.0-1-x86_64.pkg.tar.zst +1.33471 libsamplerate-0.2.2-2-x86_64.pkg.tar.zst +1.32846 db-6.2.32-1-x86_64.pkg.tar.zst +1.32802 haskell-aeson-2.1.2.1-16-x86_64.pkg.tar.zst +1.32512 libgphoto2-2.5.31-1-x86_64.pkg.tar.zst +1.31332 drbl-2.30.5-3-any.pkg.tar.zst +1.31033 melawy-wallpaper-lera-sugar-1.8-1-any.pkg.tar.xz +1.30191 kio-extras-23.08.2-1-x86_64.pkg.tar.zst +1.28758 mypaint-brushes1-1.3.1-1-any.pkg.tar.zst +1.28689 fzf-0.43.0-1-x86_64.pkg.tar.zst +1.28128 ripgrep-13.0.0-3-x86_64.pkg.tar.zst +1.27684 modemmanager-1.22.0-1-x86_64.pkg.tar.zst +1.27489 sqlcipher-4.5.5-1-x86_64.pkg.tar.zst +1.26826 gawk-5.2.2-1-x86_64.pkg.tar.zst +1.26054 python-lxml-4.9.2-3-x86_64.pkg.tar.zst +1.25807 gobject-introspection-1.78.1-1-x86_64.pkg.tar.zst +1.25343 melawy-plasma-look-and-feel-fenek-1.2-1-any.pkg.tar.xz +1.24757 kbd-2.6.3-1-x86_64.pkg.tar.zst +1.2428 krb5-1.20.1-2-x86_64.pkg.tar.zst +1.23844 lynx-2.8.9-7-x86_64.pkg.tar.zst +1.23683 terminus-font-4.49.1-6-any.pkg.tar.zst +1.22857 libvpx-1.13.1-1-x86_64.pkg.tar.zst +1.21332 openexr-3.2.1-1-x86_64.pkg.tar.zst +1.21054 redis-7.2.3-1-x86_64.pkg.tar.zst +1.20971 capstone-4.0.2-7-x86_64.pkg.tar.zst +1.20669 aspell-en-2020.12.07-1-x86_64.pkg.tar.zst +1.2044 linux-api-headers-6.4-1-any.pkg.tar.zst +1.1972 e2fsprogs-1.47.0-1-x86_64.pkg.tar.zst +1.19642 curl-8.4.0-2-x86_64.pkg.tar.zst +1.19554 db5.3-5.3.28-4-x86_64.pkg.tar.zst +1.19108 libopenraw-0.3.7-1-x86_64.pkg.tar.zst +1.18998 udisks2-2.10.1-2-x86_64.pkg.tar.zst +1.18203 btrfs-progs-6.5.3-2-x86_64.pkg.tar.zst +1.17983 melawy-welcome-0.10.1.204-1-x86_64.pkg.tar.xz +1.17547 alsa-utils-1.2.10-1-x86_64.pkg.tar.zst +1.17356 apparmor-3.1.6-2-x86_64.pkg.tar.zst +1.16843 firewalld-2.0.1-1-any.pkg.tar.zst +1.16117 lirc-1:0.10.2-3-x86_64.pkg.tar.zst +1.15621 ncurses-6.4_20230520-1-x86_64.pkg.tar.zst +1.15448 qscintilla-qt5-2.14.1-1-x86_64.pkg.tar.zst +1.15228 kconfig5-5.111.0-1-x86_64.pkg.tar.zst +1.14826 shadow-4.14.2-1-x86_64.pkg.tar.zst +1.14187 archlinux-keyring-20231026-1-any.pkg.tar.zst +1.14177 libnm-1.44.2-3-x86_64.pkg.tar.zst +1.14168 qhull-2020.2-4-x86_64.pkg.tar.zst +1.1395 vulkan-headers-1:1.3.269-1-any.pkg.tar.zst +1.13016 virt-install-4.1.0-2-any.pkg.tar.zst +1.12884 qt5-xmlpatterns-5.15.11-1-x86_64.pkg.tar.zst +1.12522 pipewire-audio-1:0.3.84-1-x86_64.pkg.tar.zst +1.12295 dhclient-4.4.3.P1-2-x86_64.pkg.tar.zst +1.11852 openssh-9.5p1-1-x86_64.pkg.tar.zst +1.11838 kconfigwidgets5-5.111.0-1-x86_64.pkg.tar.zst +1.11679 libmysofa-1.3.2-1-x86_64.pkg.tar.zst +1.11432 python-jedi-0.19.1-1-any.pkg.tar.zst +1.11055 libphonenumber-1:8.13.24-1-x86_64.pkg.tar.zst +1.10792 libc++-16.0.6-1-x86_64.pkg.tar.zst +1.10775 qt6-wayland-6.6.0-1-x86_64.pkg.tar.zst +1.10333 libgusb-0.4.7-1-x86_64.pkg.tar.zst +1.09758 abseil-cpp-20230802.1-1-x86_64.pkg.tar.zst +1.0947 qt5-wayland-5.15.11+kde+r60-1-x86_64.pkg.tar.zst +1.09397 iproute2-6.6.0-2-x86_64.pkg.tar.zst +1.09359 man-db-2.12.0-1-x86_64.pkg.tar.zst +1.08681 libksysguard-5.27.9-1-x86_64.pkg.tar.zst +1.08597 gst-plugins-bad-1.22.6-1-x86_64.pkg.tar.zst +1.08526 node-gyp-10.0.1-1-any.pkg.tar.zst +1.07341 libkleo-23.08.2-1-x86_64.pkg.tar.zst +1.06959 glibmm-2.68-2.78.0-1-x86_64.pkg.tar.zst +1.06616 sof-firmware-2023.09.1-1-x86_64.pkg.tar.zst +1.05993 kmenuedit-5.27.9-1-x86_64.pkg.tar.zst +1.05927 systemd-libs-254.5-1-x86_64.pkg.tar.zst +1.05484 edk2-shell-202308-3-any.pkg.tar.zst +1.04621 libva-intel-driver-2.4.1-2-x86_64.pkg.tar.zst +1.04517 kunitconversion5-5.111.0-1-x86_64.pkg.tar.zst +1.04032 kdeplasma-addons-5.27.9-1-x86_64.pkg.tar.zst +1.03346 xfsprogs-6.5.0-1-x86_64.pkg.tar.zst +1.03122 ktextaddons-1.5.2-2-x86_64.pkg.tar.zst +1.02428 lib32-pipewire-1:0.3.84-1-x86_64.pkg.tar.zst +1.02417 djvulibre-3.5.28-5-x86_64.pkg.tar.zst +1.01854 kdeconnect-23.08.2-2-x86_64.pkg.tar.zst +1.01308 kinfocenter-5.27.9-1-x86_64.pkg.tar.zst +1.01307 snapd-glib-1.64-1-x86_64.pkg.tar.zst +1.00724 discover-5.27.9-1-x86_64.pkg.tar.zst +1.0044 glibmm-2.66.6-1-x86_64.pkg.tar.zst +1.00313 syndication5-5.111.0-1-x86_64.pkg.tar.zst +1.00007 libxcb-1.16-1-x86_64.pkg.tar.zst +0.998451 hwinfo-23.2-1-x86_64.pkg.tar.zst +0.996094 zfs-utils-2.2.0-1-x86_64.pkg.tar.zst.part +0.994854 win12os-kde-git-r3.9951565-1-any.pkg.tar.xz +0.991366 libwpd-0.10.3-4-x86_64.pkg.tar.zst +0.99015 bluez-utils-5.70-1-x86_64.pkg.tar.zst +0.985063 thin-provisioning-tools-1.0.7-1-x86_64.pkg.tar.zst +0.981455 kwalletmanager-23.08.2-1-x86_64.pkg.tar.zst +0.981011 harfbuzz-8.2.2-1-x86_64.pkg.tar.zst +0.980346 gvfs-1.52.1-1-x86_64.pkg.tar.zst +0.977352 pcre-8.45-4-x86_64.pkg.tar.zst +0.977002 elinks-0.16.1.1-2-x86_64.pkg.tar.zst +0.975132 w3m-0.5.3.git20230121_1-1-x86_64.pkg.tar.zst +0.970407 plymouth-22.02.122-7-x86_64.pkg.tar.zst +0.96889 sdl2-2.28.5-1-x86_64.pkg.tar.zst +0.963994 kparts5-5.111.0-1-x86_64.pkg.tar.zst +0.963852 ttf-nerd-fonts-symbols-mono-3.0.2-2-any.pkg.tar.zst +0.963746 refind-0.14.0.2-1-any.pkg.tar.zst +0.962747 gtksourceview4-4.8.4-1-x86_64.pkg.tar.zst +0.962267 python-cryptography-41.0.5-1-x86_64.pkg.tar.zst +0.956611 kde-cli-tools-5.27.9-1-x86_64.pkg.tar.zst +0.950047 bluez-qt5-5.111.0-1-x86_64.pkg.tar.zst +0.942606 libcdr-0.1.7-6-x86_64.pkg.tar.zst +0.941848 tpm2-tss-4.0.1-1-x86_64.pkg.tar.zst +0.938546 libtiff-4.6.0-1-x86_64.pkg.tar.zst +0.931062 mbedtls-3.4.1-1-x86_64.pkg.tar.zst +0.919818 procps-ng-4.0.4-2-x86_64.pkg.tar.zst +0.919809 chwd-1.0.2-1-x86_64.pkg.tar.zst +0.916661 bluez-5.70-1-x86_64.pkg.tar.zst +0.914104 onevpl-2023.3.1-1-x86_64.pkg.tar.zst +0.912277 adobe-source-code-pro-fonts-2.042u+1.062i+1.026vf-1-any.pkg.tar.zst +0.910817 openjpeg2-2.5.0-3-x86_64.pkg.tar.zst +0.907114 qt5-quickcontrols-5.15.11-1-x86_64.pkg.tar.zst +0.903185 srt-1.5.3-1-x86_64.pkg.tar.zst +0.900431 pacman-6.0.2-8-x86_64.pkg.tar.zst +0.898472 xorg-xwayland-23.2.2-1-x86_64.pkg.tar.zst +0.889909 pam-1.5.3-3-x86_64.pkg.tar.zst +0.888634 powerdevil-5.27.9-2-x86_64.pkg.tar.zst +0.880836 libbluray-1.3.4-1-x86_64.pkg.tar.zst +0.871037 libpamac-11.6.2+6+ge74fe0e-1-x86_64.pkg.tar.zst +0.86848 open-vm-tools-6:12.3.5-1-x86_64.pkg.tar.zst +0.863636 highway-1.0.7-1-x86_64.pkg.tar.zst +0.860366 sg3_utils-1.47-1-x86_64.pkg.tar.zst +0.856379 xkeyboard-config-2.40-1-any.pkg.tar.zst +0.8553 meld-3.22.0-2-any.pkg.tar.zst +0.852804 libisl-0.26-1-x86_64.pkg.tar.zst +0.849032 python-future-0.18.3-2-any.pkg.tar.zst +0.847653 corectrl-1.3.8-1-x86_64.pkg.tar.zst +0.847324 corectrl-1.3.7-1-x86_64.pkg.tar.zst +0.84722 ttf-nerd-fonts-symbols-3.0.2-2-any.pkg.tar.zst +0.846498 openconnect-1:9.12-1-x86_64.pkg.tar.zst +0.839546 melawy-plymouth-theme-fenek-1.14-1-any.pkg.tar.xz +0.835853 openpmix-4.2.6-1-x86_64.pkg.tar.zst +0.832838 solid5-5.111.0-1-x86_64.pkg.tar.zst +0.828969 ktextwidgets5-5.111.0-1-x86_64.pkg.tar.zst +0.823301 wolfssl-5.6.3-3-x86_64.pkg.tar.zst +0.821607 bash-language-server-5.0.0-2-any.pkg.tar.zst +0.818131 libxml2-2.11.5-1-x86_64.pkg.tar.zst +0.8137 kcontacts5-5.111.0-1-x86_64.pkg.tar.zst +0.811658 duf-0.8.1-2-x86_64.pkg.tar.zst +0.809767 kwindowsystem5-5.111.0-1-x86_64.pkg.tar.zst +0.806801 melawy-plasma-look-and-feel-lera-sugar-1.12-1-any.pkg.tar.xz +0.806696 slang-2.3.3-2-x86_64.pkg.tar.zst +0.801244 clonezilla-3.35.2-5-any.pkg.tar.zst +0.800751 melawy-wallpaper-fenek-1.4-1-any.pkg.tar.xz +0.797759 ttf-jetbrains-mono-2.304-1-any.pkg.tar.zst +0.796618 virtiofsd-1.8.0-1-x86_64.pkg.tar.zst +0.795631 neovim-qt-0.2.18-1-x86_64.pkg.tar.zst +0.793418 ostree-2023.7-1-x86_64.pkg.tar.zst +0.790201 python-pillow-10.1.0-1-x86_64.pkg.tar.zst +0.782229 nm-connection-editor-1.34.0-1-x86_64.pkg.tar.zst +0.773571 busybox-1.36.1-1-x86_64.pkg.tar.zst +0.769048 libopenmpt-0.7.3-1-x86_64.pkg.tar.zst +0.765211 libmm-glib-1.22.0-1-x86_64.pkg.tar.zst +0.761844 x264-3:0.164.r3108.31e19f9-1-x86_64.pkg.tar.zst +0.75933 tar-1.35-2-x86_64.pkg.tar.zst +0.758919 file-roller-43.0-2-x86_64.pkg.tar.zst +0.758585 qca-qt5-2.3.7-2-x86_64.pkg.tar.zst +0.75438 bison-3.8.2-6-x86_64.pkg.tar.zst +0.753381 gnome-keyring-1:42.1-3-x86_64.pkg.tar.zst +0.75252 libisoburn-1.5.6-1-x86_64.pkg.tar.zst +0.749992 melawy-arch-linux-updater-1.15-1-any.pkg.tar.xz +0.749208 python-setuptools-1:68.0.0-1-any.pkg.tar.zst +0.748477 nvidia-settings-545.29.02-1-x86_64.pkg.tar.zst +0.744179 qt5-multimedia-5.15.11+kde+r2-1-x86_64.pkg.tar.zst +0.72758 gcr-3.41.1-4-x86_64.pkg.tar.zst +0.718916 virtualbox-guest-utils-7.0.12-1-x86_64.pkg.tar.zst +0.714782 wget-1.21.4-1-x86_64.pkg.tar.zst +0.709437 xmlsec-1.2.37-1-x86_64.pkg.tar.zst +0.708391 mjpegtools-2.2.1-2-x86_64.pkg.tar.zst +0.706788 attica5-5.111.0-1-x86_64.pkg.tar.zst +0.706133 kpimtextedit-23.08.2-1-x86_64.pkg.tar.zst +0.704843 tracker3-3.6.0-1-x86_64.pkg.tar.zst +0.702799 python-pydantic-2.4.2-1-any.pkg.tar.zst +0.701622 kservice5-5.111.0-1-x86_64.pkg.tar.zst +0.694592 cryptsetup-2.6.1-3-x86_64.pkg.tar.zst +0.693218 libfdk-aac-2.0.2-1-x86_64.pkg.tar.zst +0.691668 glances-3.4.0.3-1-any.pkg.tar.zst +0.690809 tpm2-tools-5.3-2-x86_64.pkg.tar.zst +0.685327 libcap-2.69-1-x86_64.pkg.tar.zst +0.682551 gsettings-desktop-schemas-45.0-1-any.pkg.tar.zst +0.679011 ksysguard-5.22.0-2-x86_64.pkg.tar.zst +0.672997 ruby-rdoc-6.4.0-4-any.pkg.tar.zst +0.665542 kpmcore-23.08.2-1-x86_64.pkg.tar.zst +0.665293 source-highlight-3.1.9-11-x86_64.pkg.tar.zst +0.664872 kcmutils5-5.111.0-1-x86_64.pkg.tar.zst +0.664816 libgme-0.6.3-4-x86_64.pkg.tar.zst +0.658656 timeshift-23.07.1-2-x86_64.pkg.tar.zst +0.657479 libunistring-1.1-2-x86_64.pkg.tar.zst +0.647159 virt-manager-4.1.0-2-any.pkg.tar.zst +0.642998 openal-1.23.1-1-x86_64.pkg.tar.zst +0.641768 aspell-0.60.8-3-x86_64.pkg.tar.zst +0.640101 tailwindcss-language-server-0.0.14-1-any.pkg.tar.zst +0.636107 kcalc-23.08.2-1-x86_64.pkg.tar.zst +0.635702 sonnet5-5.111.0-1-x86_64.pkg.tar.zst +0.635101 pipewire-1:0.3.84-1-x86_64.pkg.tar.zst +0.629722 autoconf-2.71-4-any.pkg.tar.zst +0.625834 qt5-charts-5.15.11-1-x86_64.pkg.tar.zst +0.623458 libvisio-0.1.7-9-x86_64.pkg.tar.zst +0.623242 libdazzle-3.44.0-1-x86_64.pkg.tar.zst +0.617362 smartmontools-7.4-1-x86_64.pkg.tar.zst +0.611519 dav1d-1.3.0-1-x86_64.pkg.tar.zst +0.608779 gtksourceview3-1:3.24.11+r28+g73e57b57-1-x86_64.pkg.tar.zst +0.608243 kirigami2-5.111.0-1-x86_64.pkg.tar.zst +0.607795 ttf-opensans-1.101-2-any.pkg.tar.zst +0.60733 timeshift-23.07.1-1-x86_64.pkg.tar.xz +0.605894 ddcutil-2.0.0-1-x86_64.pkg.tar.zst +0.60533 openvpn-2.6.6-1-x86_64.pkg.tar.zst +0.603284 shared-mime-info-2.3-1-x86_64.pkg.tar.zst +0.601823 kcompletion5-5.111.0-1-x86_64.pkg.tar.zst +0.600407 cairo-1.18.0-1-x86_64.pkg.tar.zst +0.599131 xz-5.4.5-1-x86_64.pkg.tar.zst +0.598426 automake-1.16.5-2-any.pkg.tar.zst +0.597 baloo5-5.111.0-1-x86_64.pkg.tar.zst +0.595504 libical-3.0.17-1-x86_64.pkg.tar.zst +0.585283 firefox-developer-edition-i18n-ru-120.0b6-1-any.pkg.tar.zst +0.585178 firefox-developer-edition-i18n-ru-120.0b7-1-any.pkg.tar.zst +0.584824 screen-4.9.1-1-x86_64.pkg.tar.zst +0.584531 nano-7.2-1-x86_64.pkg.tar.zst +0.583974 gperftools-2.13-2-x86_64.pkg.tar.zst +0.582067 kbookmarks5-5.111.0-1-x86_64.pkg.tar.zst +0.579512 libgcrypt-1.10.2-1-x86_64.pkg.tar.zst +0.577733 firefox-i18n-ru-119.0-1-any.pkg.tar.zst +0.572857 libmbim-1.30.0-1-x86_64.pkg.tar.zst +0.57165 zxing-cpp-2.1.0-1-x86_64.pkg.tar.zst +0.56736 kwallet5-5.111.0-1-x86_64.pkg.tar.zst +0.566882 libmtp-1.1.21-1-x86_64.pkg.tar.zst +0.566482 kitemmodels5-5.111.0-1-x86_64.pkg.tar.zst +0.565525 hunspell-en_us-2020.12.07-5-any.pkg.tar.zst +0.564874 cfitsio-1:4.3.0-1-x86_64.pkg.tar.zst +0.562514 audacious-4.3.1-1-x86_64.pkg.tar.zst +0.55794 ragel-6.10-3-x86_64.pkg.tar.zst +0.556991 imlib2-1.12.1-1-x86_64.pkg.tar.zst +0.555733 librevenge-0.0.5-2-x86_64.pkg.tar.zst +0.555723 zeromq-4.3.5-2-x86_64.pkg.tar.zst +0.555383 xorg-fonts-encodings-1.0.7-1-any.pkg.tar.zst +0.554421 networkmanager-openconnect-1.2.10-1-x86_64.pkg.tar.zst +0.552714 iwd-2.8-1-x86_64.pkg.tar.zst +0.552035 at-spi2-core-2.50.0-1-x86_64.pkg.tar.zst +0.55153 drkonqi-5.27.9-1-x86_64.pkg.tar.zst +0.550854 rubygems-3.3.25-1-any.pkg.tar.zst +0.550461 kdeclarative5-5.111.0-1-x86_64.pkg.tar.zst +0.549373 libadwaita-1:1.4.0-1-x86_64.pkg.tar.zst +0.547728 haskell-regex-tdfa-1.3.2.2-13-x86_64.pkg.tar.zst +0.542209 tidy-5.8.0-2-x86_64.pkg.tar.zst +0.541815 xerowelcome-1.3.4-3-x86_64.pkg.tar.zst +0.540254 gcr-4-4.1.0-1-x86_64.pkg.tar.zst +0.539529 modemmanager-qt5-5.111.0-1-x86_64.pkg.tar.zst +0.538234 libelf-0.189-3-x86_64.pkg.tar.zst +0.537968 ntfs-3g-2022.10.3-1-x86_64.pkg.tar.zst +0.536183 adwaita-cursors-45.0-1-any.pkg.tar.zst +0.531424 s-nail-14.9.24-2-x86_64.pkg.tar.zst +0.530105 akonadi-mime-23.08.2-1-x86_64.pkg.tar.zst +0.527868 ccache-4.8.3-1-x86_64.pkg.tar.zst +0.526117 parted-3.6-1-x86_64.pkg.tar.zst +0.524288 libjpeg-turbo-3.0.1-1-x86_64.pkg.tar.zst +0.522884 libxt-1.3.0-1-x86_64.pkg.tar.zst +0.521708 libnbd-1.18.0-1-x86_64.pkg.tar.zst +0.521425 libarchive-3.7.2-1-x86_64.pkg.tar.zst +0.518965 hwloc-2.9.1-1-x86_64.pkg.tar.zst +0.518734 appimagelauncher-2.2.0-6-x86_64.pkg.tar.zst +0.513313 svt-hevc-1.5.1-2-x86_64.pkg.tar.zst +0.512706 kiconthemes5-5.111.0-1-x86_64.pkg.tar.zst +0.512685 libva-utils-2.20.0-1-x86_64.pkg.tar.zst +0.511519 make-4.4.1-2-x86_64.pkg.tar.zst +0.511232 webrtc-audio-processing-1-1.3-2-x86_64.pkg.tar.zst +0.51093 freetype2-2.13.2-1-x86_64.pkg.tar.zst +0.510249 libp11-kit-0.25.2-1-x86_64.pkg.tar.zst +0.504606 gdk-pixbuf2-2.42.10-2-x86_64.pkg.tar.zst +0.499232 spice-gtk-0.42-3-x86_64.pkg.tar.zst +0.492845 kitemviews5-5.111.0-1-x86_64.pkg.tar.zst +0.491043 nfs-utils-2.6.3-1-x86_64.pkg.tar.zst +0.487977 strace-6.6-1-x86_64.pkg.tar.zst +0.482963 wavpack-5.6.0-1-x86_64.pkg.tar.zst +0.481258 alsa-lib-1.2.10-2-x86_64.pkg.tar.zst +0.478099 tcpdump-4.99.4-1-x86_64.pkg.tar.zst +0.477486 python-peewee-3.16.3-1-x86_64.pkg.tar.zst +0.475927 bluedevil-1:5.27.9-1-x86_64.pkg.tar.zst +0.473602 lib2geom-1.3-1-x86_64.pkg.tar.zst +0.473094 knotifications5-5.111.0-1-x86_64.pkg.tar.zst +0.472975 qt5pas-2.6.2.2.6-2-x86_64.pkg.tar.zst +0.472404 libexif-0.6.24-2-x86_64.pkg.tar.zst +0.472074 gpgme-1.23.1-1-x86_64.pkg.tar.zst +0.471831 btop-1.2.13-1-x86_64.pkg.tar.zst +0.471819 python-psutil-5.9.6-1-x86_64.pkg.tar.zst +0.470706 ttf-roboto-mono-3.000-2-any.pkg.tar.zst +0.470352 speex-1.2.1-1-x86_64.pkg.tar.zst +0.470191 libimobiledevice-1.3.0-9-x86_64.pkg.tar.zst +0.47017 zstd-1.5.5-1-x86_64.pkg.tar.zst +0.46675 libhandy-1.8.2-1-x86_64.pkg.tar.zst +0.462613 hunspell-ru-20210731-2-any.pkg.tar.zst +0.461859 ldns-1.8.3-2-x86_64.pkg.tar.zst +0.460483 glew-2.2.0-6-x86_64.pkg.tar.zst +0.459546 partclone-0.3.27-1-x86_64.pkg.tar.zst +0.458977 babl-0.1.106-1-x86_64.pkg.tar.zst +0.457788 gtest-1.14.0-1-x86_64.pkg.tar.zst +0.457648 qcustomplot-2.1.1-1-x86_64.pkg.tar.zst +0.457262 fastfetch-2.2.1-1-x86_64.pkg.tar.zst +0.449836 hunspell-1.7.2-1-x86_64.pkg.tar.zst +0.44806 libsoup-2.74.3-1-x86_64.pkg.tar.zst +0.447289 threadweaver5-5.111.0-1-x86_64.pkg.tar.zst +0.445976 qt6-grpc-6.6.0-2-x86_64.pkg.tar.zst +0.445684 nettle-3.9.1-1-x86_64.pkg.tar.zst +0.44321 kuserfeedback5-1.3.0-2-x86_64.pkg.tar.zst +0.442827 libfilezilla-1:0.45.0-1-x86_64.pkg.tar.zst +0.442559 plasma-firewall-5.27.9-1-x86_64.pkg.tar.zst +0.441372 libraw-0.21.1-2-x86_64.pkg.tar.zst +0.441275 python-powerline-2.8.3-2-x86_64.pkg.tar.zst +0.440779 gjs-2:1.78.0-3-x86_64.pkg.tar.zst +0.438524 speexdsp-1.2.1-1-x86_64.pkg.tar.zst +0.437896 libcamera-0.1.0-2-x86_64.pkg.tar.zst +0.43547 util-linux-libs-2.39.2-2-x86_64.pkg.tar.zst +0.43434 xterm-388-1-x86_64.pkg.tar.zst +0.434279 mpg123-1.32.3-1-x86_64.pkg.tar.zst +0.433357 haskell-bifunctors-5.6-15-x86_64.pkg.tar.zst +0.433096 gmp-6.3.0-1-x86_64.pkg.tar.zst +0.429566 gjs-2:1.78.0-4-x86_64.pkg.tar.zst +0.42937 tmux-3.3_a-7-x86_64.pkg.tar.zst +0.427327 libwnck3-43.0-3-x86_64.pkg.tar.zst +0.424609 avahi-1:0.8+r139+ge5b0bad-1-x86_64.pkg.tar.zst +0.423616 extra-cmake-modules-5.111.0-1-any.pkg.tar.zst +0.422794 yakuake-23.08.2-1-x86_64.pkg.tar.zst +0.418341 jemalloc-1:5.3.0-3-x86_64.pkg.tar.zst +0.418065 kuserfeedback-1.2.0-1-x86_64.pkg.tar.zst +0.417914 mpfr-4.2.1-1-x86_64.pkg.tar.zst +0.415798 karchive5-5.111.0-1-x86_64.pkg.tar.zst +0.414385 spandsp-0.0.6-5-x86_64.pkg.tar.zst +0.412667 libplacebo-5.264.1-4-x86_64.pkg.tar.zst +0.41112 kmailtransport-23.08.2-1-x86_64.pkg.tar.zst +0.410716 libcaca-0.99.beta20-2-x86_64.pkg.tar.zst +0.410251 ttf-fira-code-6.2-2-any.pkg.tar.zst +0.408122 findutils-4.9.0-3-x86_64.pkg.tar.zst +0.406891 kdsoap-2.1.1-1-x86_64.pkg.tar.zst +0.406221 kfilemetadata5-5.111.0-1-x86_64.pkg.tar.zst +0.40401 kholidays5-1:5.111.0-1-x86_64.pkg.tar.zst +0.403596 libnl-3.8.0-1-x86_64.pkg.tar.zst +0.402781 libtool-2.4.7+4+g1ec8fa28-6-x86_64.pkg.tar.zst +0.402011 libpulse-16.1-6-x86_64.pkg.tar.zst +0.401484 xdg-desktop-portal-1.18.0-2-x86_64.pkg.tar.zst +0.400878 vmaf-2.3.1-1-x86_64.pkg.tar.zst +0.399574 dnsmasq-2.89-1-x86_64.pkg.tar.zst +0.397529 nftables-1:1.0.9-1-x86_64.pkg.tar.zst +0.394772 melawy-plasma-desktop-theme-1.6-1-any.pkg.tar.xz +0.394032 dolphin-plugins-23.08.2-2-x86_64.pkg.tar.zst +0.393733 pango-1:1.51.1-1-x86_64.pkg.tar.zst +0.391912 krunner5-5.111.0-1-x86_64.pkg.tar.zst +0.389271 iana-etc-20231018-1-any.pkg.tar.zst +0.388386 kpeople5-5.111.0-1-x86_64.pkg.tar.zst +0.387388 polkit-123-1-x86_64.pkg.tar.zst +0.386524 file-5.45-1-x86_64.pkg.tar.zst +0.385225 ruby-bundler-2.4.21-1-any.pkg.tar.zst +0.385066 libsoup3-3.4.4-1-x86_64.pkg.tar.zst +0.384576 lensfun-1:0.3.4-3-x86_64.pkg.tar.zst +0.383632 libkscreen-5.27.9-1-x86_64.pkg.tar.zst +0.382998 haskell-semigroupoids-5.3.7-111-x86_64.pkg.tar.zst +0.380352 audit-3.1.2-1-x86_64.pkg.tar.zst +0.376925 ttf-hack-3.003-6-any.pkg.tar.zst +0.376684 tzdata-2023c-2-x86_64.pkg.tar.zst +0.376131 brotli-1.1.0-1-x86_64.pkg.tar.zst +0.376043 libpipewire-1:0.3.84-1-x86_64.pkg.tar.zst +0.375388 mdadm-4.2-2-x86_64.pkg.tar.zst +0.369648 taglib-1.13.1-1-x86_64.pkg.tar.zst +0.366823 kimageannotator-0.6.1-1-x86_64.pkg.tar.zst +0.365934 zvbi-0.2.42-1-x86_64.pkg.tar.zst +0.365534 ca-certificates-mozilla-3.94-1-x86_64.pkg.tar.zst +0.363924 haruna-0.12.2-1-x86_64.pkg.tar.zst +0.360433 sound-theme-freedesktop-0.8-5-any.pkg.tar.zst +0.359385 fontconfig-2:2.14.2-1-x86_64.pkg.tar.zst +0.35892 systemsettings-5.27.9-1-x86_64.pkg.tar.zst +0.357939 libblockdev-3.0.4-1-x86_64.pkg.tar.zst +0.357068 libheif-1.17.3-1-x86_64.pkg.tar.zst +0.355836 typescript-language-server-4.0.0-1-any.pkg.tar.zst +0.354856 ndctl-76.1-1-x86_64.pkg.tar.zst +0.353731 lua-5.4.6-2-x86_64.pkg.tar.zst +0.35253 libxaw-1.0.15-1-x86_64.pkg.tar.zst +0.347589 libglvnd-1.7.0-1-x86_64.pkg.tar.zst +0.346202 fmt-10.1.1-1-x86_64.pkg.tar.zst +0.344399 kcodecs5-5.111.0-1-x86_64.pkg.tar.zst +0.341697 phonon-qt5-4.12.0-3-x86_64.pkg.tar.zst +0.340343 libwebp-1.3.2-1-x86_64.pkg.tar.zst +0.33964 libfprint-1.94.6-1-x86_64.pkg.tar.zst +0.338433 kguiaddons5-5.111.0-1-x86_64.pkg.tar.zst +0.336801 purpose5-5.111.0-1-x86_64.pkg.tar.zst +0.336542 diffutils-3.10-1-x86_64.pkg.tar.zst +0.335725 spice-0.15.2-1-x86_64.pkg.tar.zst +0.33357 python-paramiko-2.11.1-4-any.pkg.tar.zst +0.328966 kpackage5-5.111.0-1-x86_64.pkg.tar.zst +0.327909 rsync-3.2.7-6-x86_64.pkg.tar.zst +0.327396 cppdap-1.58.0-1-x86_64.pkg.tar.zst +0.326644 libdrm-2.4.117-1-x86_64.pkg.tar.zst +0.322168 parallel-20231022-1-any.pkg.tar.zst +0.321858 lame-3.100-4-x86_64.pkg.tar.zst +0.31974 libgsf-1.14.51-1-x86_64.pkg.tar.zst +0.319385 inxi-3.3.31.1-1-any.pkg.tar.zst +0.317872 ppp-2.5.0-1-x86_64.pkg.tar.zst +0.317476 python-dateutil-2.8.2-5-any.pkg.tar.zst +0.316418 libepoxy-1.5.10-2-x86_64.pkg.tar.zst +0.315575 l-smash-2.14.5-3-x86_64.pkg.tar.zst +0.315575 readline-8.2.001-2-x86_64.pkg.tar.zst +0.314909 python-reactivex-4.0.4-3-any.pkg.tar.zst +0.314906 kidentitymanagement-23.08.2-1-x86_64.pkg.tar.zst +0.314796 flac-1.4.3-1-x86_64.pkg.tar.zst +0.314616 gst-plugins-base-1.22.6-1-x86_64.pkg.tar.zst +0.314154 luajit-2.1.1697887905-1-x86_64.pkg.tar.zst +0.309755 libsndfile-1.2.2-1-x86_64.pkg.tar.zst +0.309708 gstreamer-vaapi-1.22.6-1-x86_64.pkg.tar.zst +0.308913 kactivities5-5.111.0-1-x86_64.pkg.tar.zst +0.307876 webrtc-audio-processing-0.3.1-4-x86_64.pkg.tar.zst +0.307253 libtheora-1.1.1-6-x86_64.pkg.tar.zst +0.306548 libnice-0.1.21-2-x86_64.pkg.tar.zst +0.305272 kdnssd5-5.111.0-1-x86_64.pkg.tar.zst +0.304948 libvorbis-1.3.7-3-x86_64.pkg.tar.zst +0.304618 kjobwidgets5-5.111.0-1-x86_64.pkg.tar.zst +0.302751 kauth5-5.111.0-1-x86_64.pkg.tar.zst +0.302396 plasma-vault-5.27.9-1-x86_64.pkg.tar.zst +0.30233 python-coverage-6.5.0-5-x86_64.pkg.tar.zst +0.302301 inetutils-2.4-2-x86_64.pkg.tar.zst +0.301632 libyuv-r2426+464c51a0-1-x86_64.pkg.tar.zst +0.301265 python-zstandard-0.22.0-1-x86_64.pkg.tar.zst +0.301002 libinstpatch-1.1.6-2-x86_64.pkg.tar.zst +0.300342 flex-2.6.4-5-x86_64.pkg.tar.zst +0.299239 qemu-guest-agent-8.1.2-1-x86_64.pkg.tar.zst +0.298561 poppler-glib-23.10.0-1-x86_64.pkg.tar.zst +0.297773 dbus-1.14.10-1-x86_64.pkg.tar.zst +0.295669 python-gobject-3.46.0-1-x86_64.pkg.tar.zst +0.294536 devhelp-43.0-1-x86_64.pkg.tar.zst +0.291915 libvirt-glib-4.0.0-2-x86_64.pkg.tar.zst +0.291395 networkmanager-openvpn-1.10.2-3-x86_64.pkg.tar.zst +0.288085 vte3-0.74.1-1-x86_64.pkg.tar.zst +0.288042 libnet-2:1.3-1-x86_64.pkg.tar.zst +0.287887 python-jinja-1:3.1.2-4-any.pkg.tar.zst +0.287727 pahole-1:1.25-4-x86_64.pkg.tar.zst +0.287458 raptor-2.0.16-3-x86_64.pkg.tar.zst +0.286298 zimg-3.0.5-1-x86_64.pkg.tar.zst +0.285746 mujs-1.3.3-1-x86_64.pkg.tar.zst +0.281238 python-xlib-0.33-2-any.pkg.tar.zst +0.280569 dracut-059-3-x86_64.pkg.tar.zst +0.279898 python-cffi-1.16.0-1-x86_64.pkg.tar.zst +0.278726 libinput-1.24.0-1-x86_64.pkg.tar.zst +0.278362 libpcap-1.10.4-1-x86_64.pkg.tar.zst +0.278245 xdg-desktop-portal-kde-5.27.9-1-x86_64.pkg.tar.zst +0.277555 libgee-0.20.6-1-x86_64.pkg.tar.zst +0.276636 virt-viewer-11.0-2-x86_64.pkg.tar.zst +0.276463 vscode-json-languageserver-1.84.0-1-any.pkg.tar.zst +0.27442 kdsoap-ws-discovery-client-git20200927-2-x86_64.pkg.tar.zst +0.273828 libldap-2.6.6-2-x86_64.pkg.tar.zst +0.273661 device-mapper-2.03.22-2-x86_64.pkg.tar.zst +0.272722 kactivities-stats5-5.111.0-1-x86_64.pkg.tar.zst +0.271005 mkinitcpio-busybox-1.36.1-1-x86_64.pkg.tar.zst +0.270405 libcups-1:2.4.7-2-x86_64.pkg.tar.zst +0.269297 kmime-23.08.2-1-x86_64.pkg.tar.zst +0.268835 libthai-0.1.29-3-x86_64.pkg.tar.zst +0.268304 vulkan-tools-1.3.269-1-x86_64.pkg.tar.zst +0.268222 libburn-1.5.6-1-x86_64.pkg.tar.zst +0.268079 flashrom-1.2-4-x86_64.pkg.tar.zst +0.267834 libosinfo-1.11.0-1-x86_64.pkg.tar.zst +0.266606 pulseaudio-qt-1.3-1-x86_64.pkg.tar.zst +0.266506 cracklib-2.9.11-1-x86_64.pkg.tar.zst +0.265619 libde265-1.0.12-1-x86_64.pkg.tar.zst +0.265537 python-beautifulsoup4-4.12.2-1-any.pkg.tar.zst +0.263757 libisofs-1.5.6-1-x86_64.pkg.tar.zst +0.263316 pixman-0.42.2-1-x86_64.pkg.tar.zst +0.262704 kglobalaccel5-5.111.0-1-x86_64.pkg.tar.zst +0.262513 fluidsynth-2.3.4-1-x86_64.pkg.tar.zst +0.261164 libevent-2.1.12-4-x86_64.pkg.tar.zst +0.259026 gdbm-1.23-2-x86_64.pkg.tar.zst +0.25832 libimagequant-4.2.1-1-x86_64.pkg.tar.zst +0.254847 kscreen-5.27.9-1-x86_64.pkg.tar.zst +0.251684 python-chardet-5.2.0-1-any.pkg.tar.zst +0.249403 libcdio-2.1.0-3-x86_64.pkg.tar.zst +0.245632 orc-0.4.34-1-x86_64.pkg.tar.zst +0.2456 libzip-1.10.1-1-x86_64.pkg.tar.zst +0.245393 haskell-unordered-containers-0.2.19.1-77-x86_64.pkg.tar.zst +0.244857 psmisc-23.6-1-x86_64.pkg.tar.zst +0.244464 libnvme-1.6-2-x86_64.pkg.tar.zst +0.243955 zbar-0.23.90-3-x86_64.pkg.tar.zst +0.24356 qgpgme-qt5-1.23.1-1-x86_64.pkg.tar.zst +0.243136 plasma-pa-5.27.9-1-x86_64.pkg.tar.zst +0.242671 libpng-1.6.40-2-x86_64.pkg.tar.zst +0.241236 kdesu5-5.111.0-1-x86_64.pkg.tar.zst +0.240543 oath-toolkit-2.6.9-1-x86_64.pkg.tar.zst +0.240224 m4-1.4.19-3-x86_64.pkg.tar.zst +0.239142 vamp-plugin-sdk-2.10.0-2-x86_64.pkg.tar.zst +0.23845 neovim-nvim-treesitter-0.9.1-1-any.pkg.tar.zst +0.238258 libgpg-error-1.47-1-x86_64.pkg.tar.zst +0.236569 perl-xml-parser-2.46-5-x86_64.pkg.tar.zst +0.23656 xorgproto-2023.2-1-any.pkg.tar.zst +0.235805 qemu-vhost-user-gpu-8.1.2-1-x86_64.pkg.tar.zst +0.234859 libuv-1.47.0-1-x86_64.pkg.tar.zst +0.234479 python-urllib3-1.26.15-1-any.pkg.tar.zst +0.23351 libbpf-1.2.2-1-x86_64.pkg.tar.zst +0.233399 plasma-systemmonitor-5.27.9-1-x86_64.pkg.tar.zst +0.233292 libuv-1.46.0-1-x86_64.pkg.tar.zst +0.23067 libssh2-1.11.0-1-x86_64.pkg.tar.zst +0.230555 ell-0.59-1-x86_64.pkg.tar.zst +0.230295 libdc1394-2.2.7-1-x86_64.pkg.tar.zst +0.228854 gc-8.2.4-1-x86_64.pkg.tar.zst +0.228096 grep-3.11-1-x86_64.pkg.tar.zst +0.22768 python-contourpy-1.2.0-1-x86_64.pkg.tar.zst +0.227045 ttf-bitstream-vera-1.10-15-any.pkg.tar.zst +0.226556 partimage-0.6.9-14-x86_64.pkg.tar.zst +0.226433 libupnp-1.14.18-1-x86_64.pkg.tar.zst +0.22617 libmypaint-1.6.1-1-x86_64.pkg.tar.zst +0.225899 lib32-libpipewire-1:0.3.84-1-x86_64.pkg.tar.zst +0.22564 p11-kit-0.25.2-1-x86_64.pkg.tar.zst +0.224848 python-pycparser-2.21-5-any.pkg.tar.zst +0.224763 poppler-qt5-23.10.0-1-x86_64.pkg.tar.zst +0.222924 geoclue-2.7.1-1-x86_64.pkg.tar.zst +0.220143 opus-1.4-1-x86_64.pkg.tar.zst +0.218989 eslint-language-server-2.4.2-1-any.pkg.tar.zst +0.218725 virglrenderer-0.10.4-1-x86_64.pkg.tar.zst +0.216656 libwireplumber-0.4.15-1-x86_64.pkg.tar.zst +0.21627 kdbusaddons5-5.111.0-1-x86_64.pkg.tar.zst +0.215819 libidn-1.41-1-x86_64.pkg.tar.zst +0.215796 qt5ct-1.8-1-x86_64.pkg.tar.zst +0.215762 ctemplate-2.4-2-x86_64.pkg.tar.zst +0.214494 gptfdisk-1.0.9-2-x86_64.pkg.tar.zst +0.213624 adwaita-icon-theme-45.0-1-any.pkg.tar.zst +0.213115 qtermwidget-1.4.0-1-x86_64.pkg.tar.zst +0.213111 squashfs-tools-4.6.1-1-x86_64.pkg.tar.zst +0.21254 xvidcore-1.3.7-2-x86_64.pkg.tar.zst +0.211822 qtermwidget-1.3.0-2-x86_64.pkg.tar.zst +0.211707 ldb-2:2.8.0-1-x86_64.pkg.tar.zst +0.211174 xapp-2.6.1-2-x86_64.pkg.tar.zst +0.210729 prison5-5.111.0-1-x86_64.pkg.tar.zst +0.21059 c-ares-1.21.0-1-x86_64.pkg.tar.zst +0.209896 libdovi-3.2.0-2-x86_64.pkg.tar.zst +0.209854 lcms2-2.15-1-x86_64.pkg.tar.zst +0.20976 reiserfsprogs-3.6.27-4-x86_64.pkg.tar.zst +0.209386 cpio-2.14-1-x86_64.pkg.tar.zst +0.209073 python-pyparsing-3.1.1-1-any.pkg.tar.zst +0.20824 faad2-2.10.1-1-x86_64.pkg.tar.zst +0.207649 yad-13.0-2-x86_64.pkg.tar.zst +0.207504 libxslt-1.1.38-1-x86_64.pkg.tar.zst +0.206482 gst-plugins-ugly-1.22.6-1-x86_64.pkg.tar.zst +0.20638 vde2-2.3.3-3-x86_64.pkg.tar.zst +0.205601 sed-4.9-3-x86_64.pkg.tar.zst +0.205449 ethtool-1:6.5-1-x86_64.pkg.tar.zst +0.205351 f2fs-tools-1.16.0-2-x86_64.pkg.tar.zst +0.204569 kpty5-5.111.0-1-x86_64.pkg.tar.zst +0.204297 neon-0.32.5-2-x86_64.pkg.tar.zst +0.20397 libxkbcommon-1.6.0-1-x86_64.pkg.tar.zst +0.203598 wireplumber-0.4.15-1-x86_64.pkg.tar.zst +0.203298 jre-openjdk-21.u35-3-x86_64.pkg.tar.zst +0.203278 mtools-1:4.0.43-1-x86_64.pkg.tar.zst +0.202957 osinfo-db-20231027-1-any.pkg.tar.zst +0.202445 btrfs-assistant-1.8-2-x86_64.pkg.tar.zst +0.202321 libsmbios-2.4.3-6-x86_64.pkg.tar.zst +0.201676 knotifyconfig5-5.111.0-1-x86_64.pkg.tar.zst +0.201355 ruby-test-unit-3.6.1-1-any.pkg.tar.zst +0.20092 libvirt-python-1:9.9.0-1-x86_64.pkg.tar.zst +0.199294 libtracefs-1.7.0-1-x86_64.pkg.tar.zst +0.199188 kimageformats5-5.111.0-1-x86_64.pkg.tar.zst +0.198321 pamac-gtk-11.6.0-1-x86_64.pkg.tar.zst +0.197323 dhcpcd-10.0.4-1-x86_64.pkg.tar.zst +0.197164 jasper-4.0.0-1-x86_64.pkg.tar.zst +0.19698 gwe-0.15.6-1-any.pkg.tar.zst +0.196276 breeze-gtk-5.27.9-1-any.pkg.tar.zst +0.195807 dialog-1:1.3_20231002-1-x86_64.pkg.tar.zst +0.195448 python-shiboken2-5.15.11-1-x86_64.pkg.tar.zst +0.194528 libogg-1.3.5-1-x86_64.pkg.tar.zst +0.194405 python-bcrypt-4.0.1-3-x86_64.pkg.tar.zst +0.193866 awesome-terminal-fonts-1.1.0-4-any.pkg.tar.zst +0.19362 nspr-4.35-1-x86_64.pkg.tar.zst +0.192156 libssh-0.10.5-1-x86_64.pkg.tar.zst +0.19172 graphene-1.10.8-1-x86_64.pkg.tar.zst +0.190686 gtkglext-1.2.0-13-x86_64.pkg.tar.zst +0.19027 ksmtp-23.08.2-1-x86_64.pkg.tar.zst +0.18995 cpupower-6.5-1-x86_64.pkg.tar.zst +0.189612 kscreenlocker-5.27.9-1-x86_64.pkg.tar.zst +0.189528 python-parso-1:0.8.3-2-any.pkg.tar.zst +0.189124 help2man-1.49.3-1-x86_64.pkg.tar.zst +0.187628 libnma-common-1.10.6-2-x86_64.pkg.tar.zst +0.186874 melawy-red-light-cursors-1.3-1-any.pkg.tar.xz +0.186348 libmng-2.0.3-3-x86_64.pkg.tar.zst +0.186099 bash-completion-2.11-3-any.pkg.tar.zst +0.184235 libsecret-0.21.1-1-x86_64.pkg.tar.zst +0.183924 haskell-strict-0.4.0.1-178-x86_64.pkg.tar.zst +0.183371 pavucontrol-1:5.0+r64+geba9ca6-1-x86_64.pkg.tar.zst +0.183258 python-yaml-6.0.1-2-x86_64.pkg.tar.zst +0.182365 expect-5.45.4-4-x86_64.pkg.tar.zst +0.182241 otf-fira-mono-2:3.206-4-any.pkg.tar.zst +0.182232 ksystemstats-5.27.9-1-x86_64.pkg.tar.zst +0.182014 libcolord-1.4.6-1-x86_64.pkg.tar.zst +0.181366 melawy-red-light-default-cursors-1.1-1-any.pkg.tar.xz +0.181108 kdenetwork-filesharing-23.08.2-1-x86_64.pkg.tar.zst +0.181015 melawy-red-dark-cursors-1.3-1-any.pkg.tar.xz +0.180363 python-jsonschema-4.19.2-1-any.pkg.tar.zst +0.17966 qt6-svg-6.6.0-2-x86_64.pkg.tar.zst +0.179535 melawy-purple-light-cursors-1.3-1-any.pkg.tar.xz +0.179384 libva-2.20.0-1-x86_64.pkg.tar.zst +0.17807 socat-1.7.4.4-1-x86_64.pkg.tar.zst +0.177821 libsodium-1.0.19-2-x86_64.pkg.tar.zst +0.176408 python-traitlets-5.13.0-1-any.pkg.tar.zst +0.175766 melawy-purple-dark-cursors-1.3-1-any.pkg.tar.xz +0.175537 kactivitymanagerd-5.27.9-1-x86_64.pkg.tar.zst +0.175171 melawy-red-dark-default-cursors-1.1-1-any.pkg.tar.xz +0.174158 jfsutils-1.1.15-8-x86_64.pkg.tar.zst +0.17399 python-markdown-3.5.1-1-any.pkg.tar.zst +0.173878 melawy-purple-light-default-cursors-1.1-1-any.pkg.tar.xz +0.173682 libpgm-5.3.128-3-x86_64.pkg.tar.zst +0.172606 lrzip-0.651-2-x86_64.pkg.tar.zst +0.172374 duktape-2.7.0-6-x86_64.pkg.tar.zst +0.171761 melawy-purple-dark-default-cursors-1.1-1-any.pkg.tar.xz +0.17118 qt5-sensors-5.15.11-1-x86_64.pkg.tar.zst +0.170144 libtirpc-1.3.4-1-x86_64.pkg.tar.zst +0.169261 seabios-1.16.2-2-any.pkg.tar.zst +0.168979 python-pyserial-3.5-5-any.pkg.tar.zst +0.168824 rhash-1.4.4-1-x86_64.pkg.tar.zst +0.168798 gobject-introspection-runtime-1.78.1-1-x86_64.pkg.tar.zst +0.168306 python-mako-1.2.4-3-any.pkg.tar.zst +0.167167 pipewire-pulse-1:0.3.84-1-x86_64.pkg.tar.zst +0.166295 json-glib-1.8.0-1-x86_64.pkg.tar.zst +0.165882 zip-3.0-11-x86_64.pkg.tar.zst +0.16562 network-manager-applet-1.34.0-1-x86_64.pkg.tar.zst +0.163702 accountsservice-23.13.9-1-x86_64.pkg.tar.zst +0.163454 kgamma5-5.27.9-1-x86_64.pkg.tar.zst +0.163013 libmodplug-0.8.9.0-5-x86_64.pkg.tar.zst +0.162721 libbsd-0.11.7-1-x86_64.pkg.tar.zst +0.162278 vi-1:070224-6-x86_64.pkg.tar.zst +0.160435 libdbusmenu-qt5-0.9.3+16.04.20160218-6-x86_64.pkg.tar.zst +0.160022 python-pefile-2023.2.7-1-any.pkg.tar.zst +0.158379 re2-1:20231101-1-x86_64.pkg.tar.zst +0.157957 shaderc-2023.4-2-x86_64.pkg.tar.zst +0.156539 liburing-2.4-1-x86_64.pkg.tar.zst +0.156178 bluez-tools-0.2.0-5-x86_64.pkg.tar.zst +0.155355 plasma-integration-5.27.9-1-x86_64.pkg.tar.zst +0.155287 xf86-video-ati-1:22.0.0-1-x86_64.pkg.tar.zst +0.15451 bolt-0.9.6-1-x86_64.pkg.tar.zst +0.154427 lv2-1.18.10-1-x86_64.pkg.tar.zst +0.153735 pipewire-jack-1:0.3.84-1-x86_64.pkg.tar.zst +0.153537 mesa-utils-9.0.0-3-x86_64.pkg.tar.zst +0.152682 gd-2.3.3-7-x86_64.pkg.tar.zst +0.15191 grsync-1.3.1-1-x86_64.pkg.tar.zst +0.151463 gtk-vnc-1.3.1-1-x86_64.pkg.tar.zst +0.15135 libtraceevent-1:1.7.3-1-x86_64.pkg.tar.zst +0.150122 libappimage-1.0.4.5-5-x86_64.pkg.tar.zst +0.149981 libxmlb-0.3.14-1-x86_64.pkg.tar.zst +0.148145 kidletime5-5.111.0-1-x86_64.pkg.tar.zst +0.147824 jsoncpp-1.9.5-2-x86_64.pkg.tar.zst +0.14752 dtc-1.7.0-4-x86_64.pkg.tar.zst +0.147472 libxi-1.8.1-1-x86_64.pkg.tar.zst +0.147211 libdispatch-5.5.0-1-x86_64.pkg.tar.zst +0.146184 glu-9.0.3-1-x86_64.pkg.tar.zst +0.145673 kirigami-addons5-0.11.0-6-x86_64.pkg.tar.zst +0.145636 efitools-1.9.2-5-x86_64.pkg.tar.zst +0.145312 perl-html-parser-3.81-2-x86_64.pkg.tar.zst +0.145244 qt5-svg-5.15.11+kde+r6-1-x86_64.pkg.tar.zst +0.145065 libgirepository-1.78.1-1-x86_64.pkg.tar.zst +0.145051 passim-0.1.4-1-x86_64.pkg.tar.zst +0.144887 libsidplayfp-2.5.0-2-x86_64.pkg.tar.zst +0.144379 python-lsp-server-1.8.0-1-any.pkg.tar.zst +0.1442 libnfs-5.0.2-1-x86_64.pkg.tar.zst +0.14405 libsasl-2.1.28-4-x86_64.pkg.tar.zst +0.143809 htop-3.2.2-1-x86_64.pkg.tar.zst +0.143704 libstemmer-2.2.0-2-x86_64.pkg.tar.zst +0.143681 efivar-38-3-x86_64.pkg.tar.zst +0.143465 upower-1.90.2-1-x86_64.pkg.tar.zst +0.143127 fprintd-1.94.2-2-x86_64.pkg.tar.zst +0.142726 haskell-semialign-1.2.0.1-129-x86_64.pkg.tar.zst +0.142429 btrfs-assistant-1.8-2-x86_64.pkg.tar.xz +0.141859 libavif-1.0.1-4-x86_64.pkg.tar.zst +0.139661 pacutils-0.11.1-1-x86_64.pkg.tar.zst +0.138983 libgnomekbd-1:3.28.1-1-x86_64.pkg.tar.zst +0.138962 unzip-6.0-20-x86_64.pkg.tar.zst +0.138796 vulkan-icd-loader-1.3.269-1-x86_64.pkg.tar.zst +0.138766 opencore-amr-0.1.6-1-x86_64.pkg.tar.zst +0.138061 libltc-1.3.2-1-x86_64.pkg.tar.zst +0.137447 libplist-2.3.0-2-x86_64.pkg.tar.zst +0.137138 unrar-1:6.2.12-1-x86_64.pkg.tar.zst +0.136897 lz4-1:1.9.4-1-x86_64.pkg.tar.zst +0.136716 net-tools-2.10-2-x86_64.pkg.tar.zst +0.136567 gpm-1.20.7.r38.ge82d1a6-5-x86_64.pkg.tar.zst +0.136248 libmatroska-1.7.1-1-x86_64.pkg.tar.zst +0.136102 libksba-1.6.4-1-x86_64.pkg.tar.zst +0.135871 libc++abi-16.0.6-1-x86_64.pkg.tar.zst +0.135868 libtasn1-4.19.0-1-x86_64.pkg.tar.zst +0.135722 libwpg-0.3.4-1-x86_64.pkg.tar.zst +0.135641 libidn2-2.3.4-3-x86_64.pkg.tar.zst +0.135193 haskell-witherable-0.4.2-70-x86_64.pkg.tar.zst +0.134428 wayland-1.22.0-1-x86_64.pkg.tar.zst +0.133938 libkexiv2-23.08.2-1-x86_64.pkg.tar.zst +0.13357 glib-networking-1:2.78.0-1-x86_64.pkg.tar.zst +0.133476 libunrar-1:6.2.12-1-x86_64.pkg.tar.zst +0.133428 aalib-1.4rc5-17-x86_64.pkg.tar.zst +0.133101 dbus-glib-0.112-3-x86_64.pkg.tar.zst +0.133009 acl-2.3.1-3-x86_64.pkg.tar.zst +0.132539 yaml-cpp-0.8.0-1-x86_64.pkg.tar.zst +0.131618 dosfstools-4.2-3-x86_64.pkg.tar.zst +0.130677 liburcu-0.14.0-1-x86_64.pkg.tar.zst +0.130244 perl-libwww-6.72-1-any.pkg.tar.zst +0.1295 pinentry-1.2.1-3-x86_64.pkg.tar.zst +0.128546 volume_key-0.3.12-8-x86_64.pkg.tar.zst +0.128493 lm_sensors-1:3.6.0.r41.g31d1f125-2-x86_64.pkg.tar.zst +0.12835 kinit-5.111.0-1-x86_64.pkg.tar.zst +0.127953 phonon-qt5-gstreamer-4.10.0-4-x86_64.pkg.tar.zst +0.127912 xcb-proto-1.16.0-1-any.pkg.tar.zst +0.127661 blas-3.11.0-3-x86_64.pkg.tar.zst +0.127384 less-1:643-1-x86_64.pkg.tar.zst +0.125393 kaccounts-integration-23.08.2-1-x86_64.pkg.tar.zst +0.125139 libgexiv2-0.14.2-1-x86_64.pkg.tar.zst +0.12471 wireless_tools-30.pre9-3-x86_64.pkg.tar.xz +0.12421 dmraid-1.0.0.rc16.3-14-x86_64.pkg.tar.zst +0.123554 ruby-minitest-5.16.3-1-any.pkg.tar.zst +0.123522 touchegg-2.0.17-1-x86_64.pkg.tar.zst +0.12341 gupnp-1:1.6.6-1-x86_64.pkg.tar.zst +0.123008 libftdi-1.5-5-x86_64.pkg.tar.zst +0.122087 fuse3-3.16.2-1-x86_64.pkg.tar.zst +0.121875 ding-libs-0.6.2-1-x86_64.pkg.tar.zst +0.121705 plasma-browser-integration-5.27.9-1-x86_64.pkg.tar.zst +0.121582 haskell-indexed-traversable-0.1.3-7-x86_64.pkg.tar.zst +0.121485 kcrash5-5.111.0-1-x86_64.pkg.tar.zst +0.120958 xf86-video-openchrome-0.6.0.r798.g0c75274-2-x86_64.pkg.tar.zst +0.120678 ddrescue-1.27-1-x86_64.pkg.tar.zst +0.119458 libomxil-bellagio-0.9.3-4-x86_64.pkg.tar.zst +0.119244 ecryptfs-utils-111-8-x86_64.pkg.tar.zst +0.119145 gspell-1.12.2-1-x86_64.pkg.tar.zst +0.117891 dbus-python-1.3.2-2-x86_64.pkg.tar.zst +0.117578 gnome-firmware-45.0-1-x86_64.pkg.tar.zst +0.117375 lolcat-100.0.1-1-any.pkg.tar.zst +0.117238 fuse2-2.9.9-4-x86_64.pkg.tar.zst +0.117117 kquickcharts5-5.111.0-1-x86_64.pkg.tar.zst +0.116971 kmod-31-1-x86_64.pkg.tar.zst +0.116616 lsof-4.98.0-2-x86_64.pkg.tar.zst +0.116326 libaccounts-glib-1.26-2-x86_64.pkg.tar.zst +0.115918 python-requests-2.31.0-1-any.pkg.tar.zst +0.115842 plasma-thunderbolt-5.27.9-1-x86_64.pkg.tar.zst +0.114812 plasma-disks-5.27.9-1-x86_64.pkg.tar.zst +0.11451 protobuf-c-1.4.1-5-x86_64.pkg.tar.zst +0.11426 pciutils-3.10.0-1-x86_64.pkg.tar.zst +0.114126 baloo-widgets-23.08.2-1-x86_64.pkg.tar.zst +0.113976 libunwind-1.7.2-1-x86_64.pkg.tar.zst +0.113464 protobuf-c-1.4.1-4-x86_64.pkg.tar.zst +0.11329 nilfs-utils-2.2.9-2-x86_64.pkg.tar.zst +0.113167 erofs-utils-1.7.1-1-x86_64.pkg.tar.zst +0.112796 libkate-0.4.1-9-x86_64.pkg.tar.zst +0.112655 iputils-20221126-2-x86_64.pkg.tar.zst +0.112316 ruby-date-3.2.2-4-x86_64.pkg.tar.zst +0.112135 sddm-kcm-5.27.9-1-x86_64.pkg.tar.zst +0.112116 lmdb-0.9.30-3-x86_64.pkg.tar.zst +0.111848 ruby-irb-1.4.2-1-any.pkg.tar.zst +0.111653 libwacom-2.8.0-1-x86_64.pkg.tar.zst +0.111619 expat-2.5.0-1-x86_64.pkg.tar.zst +0.111559 libdatrie-0.2.13-4-x86_64.pkg.tar.zst +0.110981 librist-0.2.9-1-x86_64.pkg.tar.xz +0.110633 libxfont2-2.0.6-2-x86_64.pkg.tar.zst +0.110152 cantarell-fonts-1:0.303.1-1-any.pkg.tar.zst +0.110133 xf86-video-qxl-0.1.6-1-x86_64.pkg.tar.zst +0.109917 libedit-20230828_3.1-1-x86_64.pkg.tar.zst +0.109201 unibilium-2.1.1-1-x86_64.pkg.tar.zst +0.109 scour-0.38.2-3-any.pkg.tar.zst +0.108827 licenses-20231011-1-any.pkg.tar.zst +0.108474 libass-0.17.1-1-x86_64.pkg.tar.zst +0.108406 libteam-1.32-1-x86_64.pkg.tar.zst +0.108379 quazip-qt5-1.4-1-x86_64.pkg.tar.zst +0.107405 haskell-comonad-5.0.8-199-x86_64.pkg.tar.zst +0.107397 libcamera-ipa-0.1.0-2-x86_64.pkg.tar.zst +0.106734 librist-0.2.10-1-x86_64.pkg.tar.zst +0.105543 python-py3nvml-0.2.7-2-any.pkg.tar.zst +0.105242 libnma-1.10.6-2-x86_64.pkg.tar.zst +0.104695 libdca-0.0.7-2-x86_64.pkg.tar.zst +0.104389 python-ply-3.11-12-any.pkg.tar.zst +0.104224 freeglut-3.4.0-1-x86_64.pkg.tar.zst +0.104114 rnnoise-0.4.1-1-x86_64.pkg.tar.zst +0.103927 haskell-these-1.1.1.1-205-x86_64.pkg.tar.zst +0.103673 libassuan-2.5.6-1-x86_64.pkg.tar.zst +0.10366 lib32-xz-5.4.5-1-x86_64.pkg.tar.zst +0.103469 ruby-racc-1.6.0-3-x86_64.pkg.tar.zst +0.103458 libxext-1.3.5-1-x86_64.pkg.tar.zst +0.103268 dconf-0.40.0-2-x86_64.pkg.tar.zst +0.102207 lib32-pipewire-jack-1:0.3.84-1-x86_64.pkg.tar.zst +0.101791 libdvdread-6.1.3-2-x86_64.pkg.tar.zst +0.101744 python-tomlkit-0.12.2-1-any.pkg.tar.zst +0.101734 python-pyxdg-0.28-2-any.pkg.tar.zst +0.101582 atkmm-2.28.3-1-x86_64.pkg.tar.zst +0.101225 ruby-reline-0.3.1-2-any.pkg.tar.zst +0.101066 iw-5.19-2-x86_64.pkg.tar.zst +0.100821 fsarchiver-0.8.7-1-x86_64.pkg.tar.zst +0.100307 ruby-csv-3.2.5-4-any.pkg.tar.zst +0.100009 libsbsms-2.3.0-3-x86_64.pkg.tar.zst +0.0996075 pugixml-1.14-1-x86_64.pkg.tar.zst +0.0993986 keyutils-1.6.3-2-x86_64.pkg.tar.zst +0.0991001 portaudio-1:19.7.0-2-x86_64.pkg.tar.zst +0.0983534 glfw-wayland-3.3.8-1-x86_64.pkg.tar.zst +0.0977592 pcsclite-2.0.0-1-x86_64.pkg.tar.zst +0.0976954 tslib-1.22-1-x86_64.pkg.tar.zst +0.0969143 python-pynacl-1.4.0-7-x86_64.pkg.tar.zst +0.0966854 xxhash-0.8.2-1-x86_64.pkg.tar.zst +0.0955629 pangomm-2.46.3-1-x86_64.pkg.tar.zst +0.0951891 python-more-itertools-10.1.0-1-any.pkg.tar.zst +0.0947142 python-cairo-1.25.1-1-x86_64.pkg.tar.zst +0.0946369 gssproxy-0.9.2-1-x86_64.pkg.tar.zst +0.0943546 pamac-cli-11.6.0-2-x86_64.pkg.tar.zst +0.0939445 libnghttp2-1.58.0-1-x86_64.pkg.tar.zst +0.0937586 rtmpdump-1:2.4.r99.f1b83c1-2-x86_64.pkg.tar.zst +0.0932922 tree-sitter-0.20.10-2-x86_64.pkg.tar.zst +0.0932722 gst-libav-1.22.6-1-x86_64.pkg.tar.zst +0.0927467 archiso-73-1-any.pkg.tar.zst +0.0926218 libnewt-0.52.23-2-x86_64.pkg.tar.zst +0.0916004 usb_modeswitch-2.6.1-3-x86_64.pkg.tar.zst +0.0911942 melawy-skel-liveuser-1.7-1-any.pkg.tar.xz +0.0910444 python-packaging-23.1-1-any.pkg.tar.zst +0.0909271 python-idna-3.4-3-any.pkg.tar.zst +0.0908098 python-charset-normalizer-3.3.2-1-any.pkg.tar.zst +0.0907927 patch-2.7.6-10-x86_64.pkg.tar.zst +0.0904608 xf86-input-wacom-1.2.0-1-x86_64.pkg.tar.zst +0.0903978 zlib-1:1.3-2-x86_64.pkg.tar.zst +0.0903807 vpnc-1:0.5.3.r526.r213-1-x86_64.pkg.tar.zst +0.0903349 ruby-json-2.6.3-1-x86_64.pkg.tar.zst +0.0902815 neovim-lspconfig-0.1.6-1-any.pkg.tar.zst +0.0901155 bluez-libs-5.70-1-x86_64.pkg.tar.zst +0.089653 pigz-2.8-1-x86_64.pkg.tar.zst +0.0896368 wireguard-tools-1.0.20210914-1-x86_64.pkg.tar.zst +0.0895987 usbutils-017-1-x86_64.pkg.tar.zst +0.0894995 libcanberra-1:0.30+r2+gc0620e4-3-x86_64.pkg.tar.zst +0.0894756 wildmidi-0.4.5-2-x86_64.pkg.tar.zst +0.089469 i2c-tools-4.3-4-x86_64.pkg.tar.zst +0.0889378 potrace-1.16-2-x86_64.pkg.tar.zst +0.0889282 cronie-1.7.0-4-x86_64.pkg.tar.zst +0.0883522 cifs-utils-7.0-3-x86_64.pkg.tar.zst +0.0879478 yandex-disk-indicator-1.12.2-0-x86_64.pkg.tar.xz +0.0877762 xorg-xkbcomp-1.4.6-1-x86_64.pkg.tar.zst +0.087595 ffmpegthumbnailer-2.2.2-5-x86_64.pkg.tar.zst +0.0875902 libdvbpsi-1:1.3.3-3-x86_64.pkg.tar.zst +0.0872211 cairomm-1.14.5-1-x86_64.pkg.tar.zst +0.087184 libpwquality-1.4.5-3-x86_64.pkg.tar.zst +0.0871592 libdbusmenu-glib-16.04.0.r498-2-x86_64.pkg.tar.zst +0.0869532 ruby-rexml-3.2.6-1-any.pkg.tar.zst +0.0866117 flatpak-kcm-5.27.9-1-x86_64.pkg.tar.zst +0.0861988 libseccomp-2.5.4-2-x86_64.pkg.tar.zst +0.0860643 mlocate-0.26.git.20170220-7-x86_64.pkg.tar.zst +0.0857782 bc-1.07.1-4-x86_64.pkg.tar.zst +0.0857468 lzo-2.10-5-x86_64.pkg.tar.zst +0.0852823 alsa-plugins-1:1.2.7.1-2-x86_64.pkg.tar.zst +0.0851021 kvantum-theme-whitesur-git-r114.2b4bcc7-1-any.pkg.tar.zst +0.0848455 geoip-1.6.12-2-x86_64.pkg.tar.zst +0.0843105 python-soupsieve-2.5-1-any.pkg.tar.zst +0.0838623 gdb-common-13.2-1-x86_64.pkg.tar.zst +0.0838404 gcab-1.6-1-x86_64.pkg.tar.zst +0.0837307 pipewire-zeroconf-1:0.3.84-1-x86_64.pkg.tar.zst +0.08358 haskell-foldable1-classes-compat-0.1-15-x86_64.pkg.tar.zst +0.0831051 kpipewire-5.27.9-1-x86_64.pkg.tar.zst +0.082922 lilv-0.24.20-2-x86_64.pkg.tar.zst +0.0828953 ocl-icd-2.3.2-1-x86_64.pkg.tar.zst +0.0822992 twolame-0.4.0-3-x86_64.pkg.tar.zst +0.0822601 libmpc-1.3.1-1-x86_64.pkg.tar.zst +0.0822573 libxcrypt-4.4.36-1-x86_64.pkg.tar.zst +0.0821962 ruby-psych-4.0.6-1-x86_64.pkg.tar.zst +0.0820036 graphite-1:1.3.14-3-x86_64.pkg.tar.zst +0.0813446 hdparm-9.65-1-x86_64.pkg.tar.zst +0.0811386 neofetch-7.1.0-2-any.pkg.tar.zst +0.0810394 rp-pppoe-4.0-1-x86_64.pkg.tar.zst +0.0807285 pace-1.4.2-1-x86_64.pkg.tar.zst +0.0799608 nbd-3.25-1-x86_64.pkg.tar.zst +0.0798779 libpsl-0.21.2-1-x86_64.pkg.tar.zst +0.0797291 liblc3-1.0.4-1-x86_64.pkg.tar.zst +0.0796547 qqc2-desktop-style5-5.111.0-1-x86_64.pkg.tar.zst +0.0795412 gzip-1.13-2-x86_64.pkg.tar.zst +0.0794973 md4c-0.4.8-1-x86_64.pkg.tar.zst +0.0794687 appstream-qt-0.16.3-1-x86_64.pkg.tar.zst +0.0794439 libmpeg2-0.5.1-8-x86_64.pkg.tar.zst +0.0793629 perl-uri-5.21-1-any.pkg.tar.zst +0.0792475 libportal-0.7.1-2-x86_64.pkg.tar.zst +0.0792427 ruby-bigdecimal-3.1.2-4-x86_64.pkg.tar.zst +0.0790062 wayland-protocols-1.32-1-any.pkg.tar.zst +0.0783978 discount-3.0.0.a-1-x86_64.pkg.tar.zst +0.0776997 libgovirt-2:0.3.9-1-x86_64.pkg.tar.zst +0.0776072 alsa-ucm-conf-1.2.10-2-any.pkg.tar.zst +0.0775299 uchardet-0.0.8-2-x86_64.pkg.tar.zst +0.077302 numactl-2.0.16-1-x86_64.pkg.tar.zst +0.0769386 python-msgpack-1.0.5-1-x86_64.pkg.tar.zst +0.0766592 kdecoration-5.27.9-1-x86_64.pkg.tar.zst +0.0766296 ruby-net-http-0.2.2-2-any.pkg.tar.zst +0.0766172 libice-1.1.1-2-x86_64.pkg.tar.zst +0.0764561 libsoxr-0.1.3-3-x86_64.pkg.tar.zst +0.0764446 libjcat-0.1.14-1-x86_64.pkg.tar.zst +0.0759773 pace-1.4.2-1-x86_64.pkg.tar.xz +0.0756941 pv-1.8.0-1-x86_64.pkg.tar.zst +0.0751677 python-inflect-7.0.0-2-any.pkg.tar.zst +0.0750532 libdv-1.0.0-11-x86_64.pkg.tar.zst +0.0749388 polkit-qt5-0.114.0-2-x86_64.pkg.tar.zst +0.0748854 milou-5.27.9-1-x86_64.pkg.tar.zst +0.0745564 libxnvctrl-545.29.02-1-x86_64.pkg.tar.zst +0.0745039 libqaccessibilityclient-0.4.1-2-x86_64.pkg.tar.zst +0.0744267 libxmu-1.1.4-1-x86_64.pkg.tar.zst +0.0740786 xf86-video-vmware-13.4.0-1-x86_64.pkg.tar.zst +0.0740252 pkcs11-helper-1.29.0-2-x86_64.pkg.tar.zst +0.0738497 popt-1.19-1-x86_64.pkg.tar.zst +0.0736189 portsmf-234-2-x86_64.pkg.tar.zst +0.0735121 libxkbfile-1.1.2-1-x86_64.pkg.tar.zst +0.0733681 qt5-webchannel-5.15.11+kde+r3-1-x86_64.pkg.tar.zst +0.073288 ruby-rake-13.0.6-1-any.pkg.tar.zst +0.0728369 python-pyqt5-sip-12.13.0-1-x86_64.pkg.tar.zst +0.0727463 whois-5.5.19-1-x86_64.pkg.tar.zst +0.0722036 soundtouch-2.3.2-1-x86_64.pkg.tar.zst +0.07199 giflib-5.2.1-2-x86_64.pkg.tar.zst +0.0717716 qt5-graphicaleffects-5.15.11-1-x86_64.pkg.tar.zst +0.0716763 qemu-ui-dbus-8.1.2-1-x86_64.pkg.tar.zst +0.0715218 libqaccessibilityclient-qt5-0.5.0-2-x86_64.pkg.tar.zst +0.071331 melawy-etc-skel-std-powerman-kvantum-1.4-1-any.pkg.tar.xz +0.0712643 dmidecode-3.5-1-x86_64.pkg.tar.zst +0.071209 melawy-skel-root-1.7-1-any.pkg.tar.xz +0.0711212 librest-0.9.1-2-x86_64.pkg.tar.zst +0.0706282 cdparanoia-10.2-8-x86_64.pkg.tar.zst +0.0703773 python-validate-pyproject-0.13-1-any.pkg.tar.zst +0.0699081 tdb-1.4.9-1-x86_64.pkg.tar.zst +0.0695887 fribidi-1.0.13-2-x86_64.pkg.tar.zst +0.0694227 libusb-1.0.26-2-x86_64.pkg.tar.zst +0.0691967 libxpm-3.5.17-1-x86_64.pkg.tar.zst +0.0690308 plymouth-kcm-5.27.9-1-x86_64.pkg.tar.zst +0.0686016 perl-http-message-6.45-1-any.pkg.tar.zst +0.0685396 lzop-1.04-3-x86_64.pkg.tar.zst +0.0680647 fakeroot-1.32.1-1-x86_64.pkg.tar.zst +0.0678892 libnftnl-1.2.6-1-x86_64.pkg.tar.zst +0.0677929 xf86-video-amdgpu-23.0.0-1-x86_64.pkg.tar.zst +0.0677767 libxklavier-5.4-5-x86_64.pkg.tar.zst +0.067667 kde-gtk-config-5.27.9-1-x86_64.pkg.tar.zst +0.067667 libshout-1:2.4.6-2-x86_64.pkg.tar.zst +0.0675039 minizip-ng-4.0.2-1-x86_64.pkg.tar.zst +0.0671062 libebml-1.4.4-1-x86_64.pkg.tar.zst +0.0664396 xdotool-3.20211022.1-1-x86_64.pkg.tar.zst +0.0661373 kio-fuse-5.0.1-2-x86_64.pkg.tar.zst +0.0660973 nano-syntax-highlighting-2020.10.10-1-any.pkg.tar.zst +0.0657053 attr-2.5.1-3-x86_64.pkg.tar.zst +0.0645895 sdl2_image-2.6.3-1-x86_64.pkg.tar.zst +0.0644026 polkit-kde-agent-5.27.9-1-x86_64.pkg.tar.zst +0.0641651 phodav-3.0-2-x86_64.pkg.tar.zst +0.0640411 libcdio-paranoia-10.2+2.0.1-3-x86_64.pkg.tar.zst +0.0634918 lbzip2-2.5-5-x86_64.pkg.tar.zst +0.0629311 libcloudproviders-0.3.4-1-x86_64.pkg.tar.zst +0.0625448 opusfile-0.12-3-x86_64.pkg.tar.zst +0.0625381 ndisc6-1.0.7-1-x86_64.pkg.tar.zst +0.0624771 python-typing_extensions-4.8.0-1-any.pkg.tar.zst +0.0622959 libmad-0.15.1b-10-x86_64.pkg.tar.zst +0.0622883 memtest86+-6.20-1-any.pkg.tar.zst +0.0622425 libslirp-4.7.0-1-x86_64.pkg.tar.zst +0.0620317 mobile-broadband-provider-info-20230416-1-any.pkg.tar.zst +0.0619011 libvdpau-1.5-2-x86_64.pkg.tar.zst +0.0616188 ruby-fiddle-1.1.0-4-x86_64.pkg.tar.zst +0.0614185 libevdev-1.13.1-1-x86_64.pkg.tar.zst +0.0613432 jbig2dec-0.20-1-x86_64.pkg.tar.zst +0.0612621 qt6-imageformats-6.6.0-1-x86_64.pkg.tar.zst +0.0608091 exfatprogs-1.2.2-1-x86_64.pkg.tar.zst +0.0606623 ruby-cgi-0.3.6-1-x86_64.pkg.tar.zst +0.0596619 libdnet-1.17.0-1-x86_64.pkg.tar.zst +0.0589609 squashfuse-0.5.0-1-x86_64.pkg.tar.zst +0.0588856 serd-0.32.0-1-x86_64.pkg.tar.zst +0.0588379 stoken-0.92-4-x86_64.pkg.tar.zst +0.0587521 libxft-2.3.8-1-x86_64.pkg.tar.zst +0.058651 faac-1.30-4-x86_64.pkg.tar.zst +0.0582762 kded5-5.111.0-1-x86_64.pkg.tar.zst +0.0581226 enchant-2.6.2-1-x86_64.pkg.tar.zst +0.0577698 amd-ucode-20231030.2b304bfe-1-any.pkg.tar.zst +0.0577116 tinyxml-2.6.2-10-x86_64.pkg.tar.zst +0.0576067 ruby-uri-0.12.1-1-any.pkg.tar.zst +0.0573568 gssdp-1.6.3-1-x86_64.pkg.tar.zst +0.0572634 perl-mailtools-2.21-7-any.pkg.tar.zst +0.0571842 qtkeychain-qt5-0.14.1-2-x86_64.pkg.tar.zst +0.0570021 bzip2-1.0.8-5-x86_64.pkg.tar.zst +0.0569773 xl2tpd-1.3.18-1-x86_64.pkg.tar.zst +0.0569592 libyaml-0.2.5-2-x86_64.pkg.tar.zst +0.0567427 tre-0.8.0-6-x86_64.pkg.tar.zst +0.0564213 gdk-pixbuf-xlib-2.40.2-2-x86_64.pkg.tar.zst +0.0561924 libluv-1.45.0_0-1-x86_64.pkg.tar.zst +0.0561886 pkgconf-1.8.1-1-x86_64.pkg.tar.zst +0.0559616 woff2-1.0.2-4-x86_64.pkg.tar.zst +0.0557718 hyperv-6.5-1-x86_64.pkg.tar.zst +0.0556383 xf86-input-synaptics-1.9.2-1-x86_64.pkg.tar.zst +0.0556326 json-c-0.17-1-x86_64.pkg.tar.zst +0.0554419 vte-common-0.74.1-1-x86_64.pkg.tar.zst +0.0553141 double-conversion-3.3.0-1-x86_64.pkg.tar.zst +0.0551939 accounts-qml-module-0.7-4-x86_64.pkg.tar.zst +0.0551329 xdg-utils-1.1.3+45+g301a1a4-1-any.pkg.tar.zst +0.0549269 libdeflate-1.19-1-x86_64.pkg.tar.zst +0.0548391 libx86emu-3.5-3-x86_64.pkg.tar.zst +0.0547915 libdvdnav-6.1.1-2-x86_64.pkg.tar.zst +0.0546618 uriparser-0.9.7-1-x86_64.pkg.tar.zst +0.054184 ruby-drb-2.1.0-5-any.pkg.tar.zst +0.0540905 tevent-1:0.15.0-1-x86_64.pkg.tar.zst +0.0532732 libmspack-1:0.11alpha-1-x86_64.pkg.tar.zst +0.053196 kwin-effect-rounded-corners-git-0.4.2.r3.ge784166-1.1-x86_64.pkg.tar.zst +0.0527287 qt5-imageformats-5.15.11+kde+r12-1-x86_64.pkg.tar.zst +0.0524855 libwpe-1.14.1-2-x86_64.pkg.tar.zst +0.0519638 python-pyinotify-0.9.6-12-any.pkg.tar.zst +0.0518303 libmanette-0.2.6-5-x86_64.pkg.tar.zst +0.0517616 convertlit-1.8-11-x86_64.pkg.tar.zst +0.0516882 ijs-0.35-5-x86_64.pkg.tar.zst +0.0513363 iotop-0.6-10-any.pkg.tar.zst +0.0511503 screenfetch-3.9.1-3-any.pkg.tar.zst +0.0507936 hiredis-1.2.0-2-x86_64.pkg.tar.zst +0.0505409 jbigkit-2.1-7-x86_64.pkg.tar.zst +0.0504913 jansson-2.14-2-x86_64.pkg.tar.zst +0.0504179 mkinitcpio-36-1-any.pkg.tar.zst +0.0503063 libappindicator-gtk3-12.10.0.r298-3-x86_64.pkg.tar.zst +0.0499258 eos-bash-shared-23.20-1-any.pkg.tar.zst +0.04986 python-colorama-0.4.6-2-any.pkg.tar.zst +0.0497532 spice-vdagent-0.22.1-3-x86_64.pkg.tar.zst +0.049614 python-kiwisolver-1.4.5-1-x86_64.pkg.tar.zst +0.0495968 libdmtx-0.7.7-1-x86_64.pkg.tar.zst +0.0495138 clinfo-3.0.21.02.21-1-x86_64.pkg.tar.zst +0.0494986 xdg-user-dirs-gtk-0.11-2-x86_64.pkg.tar.zst +0.0494089 ocs-url-3.1.0-7-x86_64.pkg.tar.zst +0.0492086 qt5-webview-5.15.11-1-x86_64.pkg.tar.zst +0.0491438 python-fastjsonschema-2.18.1-1-any.pkg.tar.zst +0.0490408 python-injector-0.21.0-1-any.pkg.tar.zst +0.0489845 melawy-plasma-plasmoid-OnzeMenuKDE-1.5-1-any.pkg.tar.xz +0.0486965 libvterm-0.3.3-1-x86_64.pkg.tar.zst +0.0485592 yajl-2.1.0-5-x86_64.pkg.tar.zst +0.0479555 qt5-speech-5.15.11+kde+r1-1-x86_64.pkg.tar.zst +0.0478449 vid.stab-1.1.1-1-x86_64.pkg.tar.zst +0.0478325 libnetfilter_conntrack-1.0.9-1-x86_64.pkg.tar.zst +0.0477543 kvantum-theme-nordic-git-2.2.0.r77.gb4bc2e8-1-any.pkg.tar.zst +0.0476189 linuxconsole-1.8.1-1-x86_64.pkg.tar.zst +0.0473776 pacman-contrib-1.9.1-1-x86_64.pkg.tar.zst +0.0473032 gst-plugin-pipewire-1:0.3.84-1-x86_64.pkg.tar.zst +0.0473022 libdbusmenu-gtk3-16.04.0.r498-2-x86_64.pkg.tar.zst +0.047287 libpamac-flatpak-plugin-11.6.2+6+ge74fe0e-1-x86_64.pkg.tar.zst +0.0471439 libsrtp-1:2.5.0-1-x86_64.pkg.tar.zst +0.0471401 libmd-1.1.0-1-x86_64.pkg.tar.zst +0.0469894 gvfs-mtp-1.52.1-1-x86_64.pkg.tar.zst +0.0468025 gvfs-gphoto2-1.52.1-1-x86_64.pkg.tar.zst +0.0467405 sbc-2.0-1-x86_64.pkg.tar.zst +0.0465994 libraw1394-2.1.2-3-x86_64.pkg.tar.zst +0.0463095 logrotate-3.21.0-2-x86_64.pkg.tar.zst +0.0462027 libsysprof-capture-45.1-1-x86_64.pkg.tar.zst +0.0461884 talloc-2.4.1-1-x86_64.pkg.tar.zst +0.0461464 qhexedit2-0.8.9-1-x86_64.pkg.tar.zst +0.04601 python-ujson-5.8.0-1-x86_64.pkg.tar.zst +0.0460005 libtermkey-0.22-2-x86_64.pkg.tar.zst +0.0458527 melawy-plasma-plasmoid-Menu11-1.5-1-any.pkg.tar.xz +0.0458498 haveged-1.9.18-1-x86_64.pkg.tar.zst +0.0455513 libtommath-1.2.1-1-x86_64.pkg.tar.zst +0.0452347 a52dec-0.8.0-2-x86_64.pkg.tar.zst +0.0450211 aribb24-1.0.3-3-x86_64.pkg.tar.zst +0.0449829 lsscsi-0.32-1-x86_64.pkg.tar.zst +0.044899 chromaprint-1.5.1-7-x86_64.pkg.tar.zst +0.0448284 python-cssselect-1.2.0-3-any.pkg.tar.zst +0.0448275 libsm-1.2.4-1-x86_64.pkg.tar.zst +0.0447254 libdecor-0.2.0-1-x86_64.pkg.tar.zst +0.0446167 libcddb-1.3.2-7-x86_64.pkg.tar.zst +0.0445213 desktop-file-utils-0.27-1-x86_64.pkg.tar.zst +0.0444574 nfsidmap-2.6.3-1-x86_64.pkg.tar.zst +0.0442743 confuse-3.3-3-x86_64.pkg.tar.zst +0.0442543 libffi-3.4.4-1-x86_64.pkg.tar.zst +0.0436382 libpamac-snap-plugin-11.6.2+6+ge74fe0e-1-x86_64.pkg.tar.zst +0.0433083 libgudev-238-1-x86_64.pkg.tar.zst +0.0432873 pptpclient-1.10.0-3-x86_64.pkg.tar.zst +0.0431185 libkdcraw-23.08.2-1-x86_64.pkg.tar.zst +0.0429573 python-cachecontrol-1:0.13.1-1-any.pkg.tar.zst +0.0428572 libb2-0.98.1-2-x86_64.pkg.tar.zst +0.0427933 melawy-plasma-plasmoid-DittoMenu-1.7-1-any.pkg.tar.xz +0.0426388 xdg-user-dirs-0.18-1-x86_64.pkg.tar.zst +0.0424747 debugedit-5.0-5-x86_64.pkg.tar.zst +0.0424128 gvfs-afc-1.52.1-1-x86_64.pkg.tar.zst +0.0422478 usbredir-0.13.0-1-x86_64.pkg.tar.zst +0.042079 kdegraphics-thumbnailers-23.08.2-1-x86_64.pkg.tar.zst +0.0417213 ftl-sdk-0.10.1-3.2-x86_64.pkg.tar.zst +0.0416994 ruby-digest-3.1.1-1-x86_64.pkg.tar.zst +0.0413513 intltool-0.51.0-6-any.pkg.tar.zst +0.0411463 libqrtr-glib-1.2.2-2-x86_64.pkg.tar.zst +0.0407858 python-pluggy-1.3.0-1-any.pkg.tar.zst +0.0407057 libcap-ng-0.8.3-2-x86_64.pkg.tar.zst +0.040638 libaccounts-qt-1.16-3-x86_64.pkg.tar.zst +0.0405779 portmidi-1:2.0.4-1-x86_64.pkg.tar.zst +0.040576 netctl-1.29-1-any.pkg.tar.zst +0.0405273 xf86-input-libinput-1.4.0-1-x86_64.pkg.tar.zst +0.0403595 hidapi-0.14.0-2-x86_64.pkg.tar.zst +0.0394659 libcbor-0.10.2-1-x86_64.pkg.tar.zst +0.0392199 perl-locale-gettext-1.07-14-x86_64.pkg.tar.zst +0.0390043 qrencode-4.1.1-2-x86_64.pkg.tar.zst +0.0388269 libmalcontent-0.11.1-2-x86_64.pkg.tar.zst +0.0387983 libcacard-2.7.0-3-x86_64.pkg.tar.zst +0.0386992 reflector-2023-1-any.pkg.tar.zst +0.0384331 tree-2.1.1-1-x86_64.pkg.tar.zst +0.038228 gsm-1.0.22-1-x86_64.pkg.tar.zst +0.037755 dkms-3.0.11-1-any.pkg.tar.zst +0.0374165 pystring-1.1.4-1-x86_64.pkg.tar.zst +0.0369158 media-player-info-24-2-any.pkg.tar.zst +0.0368471 sord-0.16.14-1-x86_64.pkg.tar.zst +0.0365114 pipewire-v4l2-1:0.3.84-1-x86_64.pkg.tar.zst +0.0365009 semver-7.5.4-1-any.pkg.tar.zst +0.0362434 wpebackend-fdo-1.14.2-1-x86_64.pkg.tar.zst +0.0362186 beep-1.4.12-1-x86_64.pkg.tar.zst +0.0361547 python-distro-1.8.0-3-any.pkg.tar.zst +0.0360956 cblas-3.11.0-3-x86_64.pkg.tar.zst +0.0360088 rpcbind-1.2.6-3-x86_64.pkg.tar.zst +0.0359125 libtar-1.2.20-6-x86_64.pkg.tar.zst +0.0358686 traceroute-2.1.3-1-x86_64.pkg.tar.zst +0.0357304 cmocka-1.1.7-1-x86_64.pkg.tar.zst +0.0356779 xorg-xrandr-1.5.2-1-x86_64.pkg.tar.zst +0.0355778 libwbclient-4.19.2-1-x86_64.pkg.tar.zst +0.0355577 libmpcdec-1:0.1+r475-4-x86_64.pkg.tar.zst +0.0354939 python-docstring-to-markdown-0.13-1-any.pkg.tar.zst +0.0354891 iio-sensor-proxy-3.5-2-x86_64.pkg.tar.zst +0.0354137 bubblewrap-0.8.0-1-x86_64.pkg.tar.zst +0.0352526 libid3tag-0.15.1b-12-x86_64.pkg.tar.zst +0.0351343 python-wcwidth-0.2.9-1-any.pkg.tar.zst +0.0350523 python-defusedxml-0.7.1-5-any.pkg.tar.zst +0.0349245 usbmuxd-1.1.1-3-x86_64.pkg.tar.zst +0.0346975 libxv-1.0.12-1-x86_64.pkg.tar.zst +0.0345898 sshfs-3.7.3-1-x86_64.pkg.tar.zst +0.0344419 libnotify-0.8.3-1-x86_64.pkg.tar.zst +0.0344124 qemu-hw-display-qxl-8.1.2-1-x86_64.pkg.tar.zst +0.0341539 ruby-optimist-3.0.1-2-any.pkg.tar.zst +0.0341139 plasma-wayland-protocols-1.10.0-1-any.pkg.tar.zst +0.0335751 ckbcomp-1.221-1-any.pkg.tar.zst +0.0334463 egl-wayland-2:1.1.13-1-x86_64.pkg.tar.zst +0.0333195 libldac-2.0.2.3-1-x86_64.pkg.tar.zst +0.0331812 perl-timedate-2.33-5-any.pkg.tar.zst +0.0330935 xf86-input-evdev-2.10.6-3-x86_64.pkg.tar.zst +0.0328836 python-shtab-1.6.4-1-any.pkg.tar.zst +0.0328074 libpipeline-1.5.7-1-x86_64.pkg.tar.zst +0.0328007 xcb-util-wm-0.4.2-1-x86_64.pkg.tar.zst +0.0327272 libraqm-0.10.1-1-x86_64.pkg.tar.zst +0.0326347 welcome-3.78-1-any.pkg.tar.zst +0.0324965 pbzip2-1.1.13-3-x86_64.pkg.tar.zst +0.032053 argon2-20190702-5-x86_64.pkg.tar.zst +0.0318995 libiec61883-1.2.0-7-x86_64.pkg.tar.zst +0.0315695 libavc1394-0.5.4-6-x86_64.pkg.tar.zst +0.0314255 ruby-did_you_mean-1.6.1-4-any.pkg.tar.zst +0.0314045 linux-firmware-whence-20231030.2b304bfe-1-any.pkg.tar.zst +0.0312424 libxcursor-1.2.1-3-x86_64.pkg.tar.zst +0.0312157 python-platformdirs-3.11.0-1-any.pkg.tar.zst +0.031065 liblqr-0.4.2-3-x86_64.pkg.tar.zst +0.0310097 libusbmuxd-2.0.2-3-x86_64.pkg.tar.zst +0.0305233 editorconfig-core-c-0.12.6-1-x86_64.pkg.tar.zst +0.0305014 gpart-0.3-4-x86_64.pkg.tar.zst +0.0302839 python-resolvelib-1.0.1-1-any.pkg.tar.zst +0.0299749 libspectre-0.2.12-1-x86_64.pkg.tar.zst +0.0298929 ruby-power_assert-2.0.3-1-any.pkg.tar.zst +0.0298729 kwayland-integration-5.27.9-1-x86_64.pkg.tar.zst +0.0298185 suil-0.10.18-1-x86_64.pkg.tar.zst +0.0295277 arcolinux-keyring-20251209-3-any.pkg.tar.zst +0.0295143 msgpack-c-5.0.0-1-x86_64.pkg.tar.zst +0.0294399 ruby-fileutils-1.6.0-4-any.pkg.tar.zst +0.029355 luit-20230201-1-x86_64.pkg.tar.zst +0.0292759 power-profiles-daemon-0.13-1-x86_64.pkg.tar.zst +0.0292215 ksshaskpass-5.27.9-1-x86_64.pkg.tar.zst +0.0292101 libatasmart-0.19-6-x86_64.pkg.tar.zst +0.0291815 efibootmgr-18-2-x86_64.pkg.tar.zst +0.0289593 ruby-stringio-3.0.2-4-x86_64.pkg.tar.zst +0.028944 mailcap-2.1.54-1-any.pkg.tar.zst +0.0289154 libmms-0.6.4-4-x86_64.pkg.tar.zst +0.0285187 libinput-gestures-2.76-1.2-any.pkg.tar.zst +0.0284958 libxrender-0.9.11-1-x86_64.pkg.tar.zst +0.0283813 libxtst-1.2.4-1-x86_64.pkg.tar.zst +0.0283318 btrfs-snapshots-0.8.2-1-any.pkg.tar.xz +0.0282307 ffmpegthumbs-23.08.2-1-x86_64.pkg.tar.zst +0.0281134 gupnp-igd-1.6.0-1-x86_64.pkg.tar.zst +0.0280619 libproxy-0.5.3-2-x86_64.pkg.tar.zst +0.0279465 alsa-card-profiles-1:0.3.84-1-x86_64.pkg.tar.zst +0.0279198 sysfsutils-2.1.1-1-x86_64.pkg.tar.zst +0.0278778 qemu-ui-gtk-8.1.2-1-x86_64.pkg.tar.zst +0.0278463 gvfs-smb-1.52.1-1-x86_64.pkg.tar.zst +0.0278406 chaotic-keyring-20230616-1-any.pkg.tar.zst +0.0277176 python-six-1.16.0-8-any.pkg.tar.zst +0.0276651 snappy-1.1.10-1-x86_64.pkg.tar.zst +0.0275202 xorg-xinput-1.6.4-1-x86_64.pkg.tar.zst +0.0272388 cjson-1.7.16-1-x86_64.pkg.tar.zst +0.0271339 xsettingsd-1.0.2-1-x86_64.pkg.tar.zst +0.0269728 xorg-server-common-21.1.9-1-x86_64.pkg.tar.zst +0.026927 python-tomli-2.0.1-3-any.pkg.tar.zst +0.0269041 minizip-1:1.3-2-x86_64.pkg.tar.zst +0.0267115 rtkit-0.13-2-x86_64.pkg.tar.zst +0.0266571 run-parts-5.5-1-x86_64.pkg.tar.zst +0.026618 tldr-3.2.0-1-any.pkg.tar.zst +0.0266132 libxrandr-1.5.4-1-x86_64.pkg.tar.zst +0.0264349 downgrade-11.3.0-1-any.pkg.tar.zst +0.0262041 libxdmcp-1.1.4-2-x86_64.pkg.tar.zst +0.0258722 xbitmaps-1.1.3-1-any.pkg.tar.zst +0.0257673 fwupd-efi-1.4-1-x86_64.pkg.tar.zst +0.0257244 ruby-erb-4.0.2-2-x86_64.pkg.tar.zst +0.0253496 libunibreak-5.1-1-x86_64.pkg.tar.zst +0.0252905 ebook-tools-0.2.2-7-x86_64.pkg.tar.zst +0.025115 qemu-hw-display-virtio-gpu-8.1.2-1-x86_64.pkg.tar.zst +0.0250673 ruby-paint-2.3.0-2-any.pkg.tar.zst +0.0249805 haskell-indexed-traversable-instances-0.1.1.2-13-x86_64.pkg.tar.zst +0.0248508 xorg-xprop-1.2.6-1-x86_64.pkg.tar.zst +0.0245924 libbytesize-2.8-2-x86_64.pkg.tar.zst +0.0242996 profile-sync-daemon-1:6.50-1-any.pkg.tar.zst +0.0242214 pkgfile-21-2-x86_64.pkg.tar.zst +0.0242157 qemu-hw-usb-redirect-8.1.2-1-x86_64.pkg.tar.zst +0.0241404 qemu-ui-spice-core-8.1.2-1-x86_64.pkg.tar.zst +0.0240612 openbsd-netcat-1.226_1-2-x86_64.pkg.tar.zst +0.0239782 xero-fix-scripts-1.5-4-any.pkg.tar.zst +0.0239573 xorg-xauth-1.1.2-1-x86_64.pkg.tar.zst +0.0239038 kcolorpicker-0.2.0-1-x86_64.pkg.tar.zst +0.0237265 xdg-dbus-proxy-0.1.5-1-x86_64.pkg.tar.zst +0.0235691 npth-1.6-4-x86_64.pkg.tar.zst +0.0233841 find-the-command-2.0.1-1-any.pkg.tar.xz +0.0233011 libmaxminddb-1.7.1-1-x86_64.pkg.tar.zst +0.0232944 libxvmc-1.0.13-2-x86_64.pkg.tar.zst +0.0231485 ruby-logger-1.5.1-3-any.pkg.tar.zst +0.023139 libaio-0.3.113-2-x86_64.pkg.tar.zst +0.022975 libpaper-2.1.2-1-x86_64.pkg.tar.zst +0.0224371 systemd-ukify-254.5-1-x86_64.pkg.tar.zst +0.0221758 python-lockfile-0.12.2-12-any.pkg.tar.zst +0.0221415 libxkbcommon-x11-1.6.0-1-x86_64.pkg.tar.zst +0.0220146 qemu-hw-usb-host-8.1.2-1-x86_64.pkg.tar.zst +0.0219803 melawy-plasma-plasmoid-archupdate-1.15-1-any.pkg.tar.xz +0.0218601 python-autocommand-2.2.2-4-any.pkg.tar.zst +0.0216284 xorg-xmodmap-1.0.11-1-x86_64.pkg.tar.zst +0.0215302 melawy-refind-menu-generator-1.29-1-any.pkg.tar.xz +0.0213976 perl-net-http-6.23-2-any.pkg.tar.zst +0.0212946 python-pysmbc-1.0.25.1-1-x86_64.pkg.tar.zst +0.0212698 libpciaccess-0.17-1-x86_64.pkg.tar.zst +0.0211868 libnsl-2.0.1-1-x86_64.pkg.tar.zst +0.0210533 layer-shell-qt-5.27.9-1-x86_64.pkg.tar.zst +0.020875 python-markupsafe-2.1.3-1-x86_64.pkg.tar.zst +0.0208702 perl-error-0.17029-5-any.pkg.tar.zst +0.0208416 spice-protocol-0.14.4-1-any.pkg.tar.zst +0.0207033 python-annotated-types-0.6.0-1-any.pkg.tar.zst +0.0207005 perl-http-cookies-6.10-4-any.pkg.tar.zst +0.0206985 melawy-dracut-ukify-1.24-1-any.pkg.tar.xz +0.0205965 python-filelock-3.12.4-1-any.pkg.tar.zst +0.0203972 python-capng-0.8.3-2-x86_64.pkg.tar.zst +0.0203791 python-lsp-jsonrpc-1.1.2-1-any.pkg.tar.zst +0.0202942 timeshift-autosnap-0.9-1-any.pkg.tar.xz +0.0201292 ruby-io-console-0.5.11-3-x86_64.pkg.tar.zst +0.0200396 python-jaraco.text-3.11.1-3-any.pkg.tar.zst +0.0199966 melawy-dracut-initramfs-1.21-1-any.pkg.tar.xz +0.0199375 kdegraphics-mobipocket-23.08.2-1-x86_64.pkg.tar.zst +0.0198946 pixz-1.0.7-4-x86_64.pkg.tar.zst +0.0197687 xorg-xrdb-1.2.2-1-x86_64.pkg.tar.zst +0.0197353 libdvdcss-1.4.3-1-x86_64.pkg.tar.zst +0.0197115 perl-xml-writer-0.900-2-any.pkg.tar.zst +0.0196676 ruby-manpages-0.6.1-4-any.pkg.tar.zst +0.0195084 gvfs-nfs-1.52.1-1-x86_64.pkg.tar.zst +0.0194836 ruby-etc-1.3.0-6-x86_64.pkg.tar.zst +0.0194321 melawy-check-reboot-required-1.2-1-any.pkg.tar.xz +0.0193396 v4l2loopback-dkms-0.12.7-2-any.pkg.tar.zst +0.019104 samba-support-1-7-any.pkg.tar.xz +0.0190172 sratom-0.6.14-1-x86_64.pkg.tar.zst +0.0188589 mkinitcpio-nfs-utils-0.3-8-x86_64.pkg.tar.zst +0.0188065 liblrdf-0.6.1-4-x86_64.pkg.tar.zst +0.0187883 ruby-ipaddr-1.2.4-3-any.pkg.tar.zst +0.0187693 alpm_octopi_utils-1.0.2-3-any.pkg.tar.zst +0.0187693 b43-fwcutter-019-4-x86_64.pkg.tar.zst +0.0187559 libndp-1.8-1-x86_64.pkg.tar.zst +0.018733 libdaemon-0.14-5-x86_64.pkg.tar.zst +0.0187168 perl-lwp-mediatypes-6.04-4-any.pkg.tar.zst +0.0186138 xorg-xset-1.2.5-1-x86_64.pkg.tar.zst +0.0186005 input-devices-support-1.0.4-1-any.pkg.tar.xz +0.018528 noto-color-emoji-fontconfig-1.0.0-1-any.pkg.tar.xz +0.0185051 printer-support-1-6.1-any.pkg.tar.xz +0.0184822 perl-try-tiny-0.31-3-any.pkg.tar.zst +0.0184097 bluetooth-support-1-7-any.pkg.tar.xz +0.0184097 pipewire-support-1-16-any.pkg.tar.xz +0.0183249 startup-notification-0.12-8-x86_64.pkg.tar.zst +0.0182152 perl-http-daemon-6.16-2-any.pkg.tar.zst +0.0181885 libfreeaptx-0.1.1-1-x86_64.pkg.tar.zst +0.0179768 haskell-assoc-1.0.2-204-x86_64.pkg.tar.zst +0.0179653 libverto-0.3.2-4-x86_64.pkg.tar.zst +0.017951 libspiro-1:20221101-2-x86_64.pkg.tar.zst +0.0179129 wayland-utils-1.2.0-1-x86_64.pkg.tar.zst +0.0178566 gstreamer-meta-1-2-any.pkg.tar.xz +0.0176239 libcue-2.3.0-1-x86_64.pkg.tar.zst +0.0175753 libxpresent-1.0.1-1-x86_64.pkg.tar.zst +0.0174294 melawy-linux-keyring-1.2-1-any.pkg.tar.xz +0.0173779 kpeoplevcard-0.1-2-x86_64.pkg.tar.zst +0.0171204 python-prctl-1.8.1-5-x86_64.pkg.tar.zst +0.0170984 xcb-util-image-0.4.1-2-x86_64.pkg.tar.zst +0.0170774 ruby-open-uri-0.2.0-3-any.pkg.tar.zst +0.0170088 os-prober-1.81-1-x86_64.pkg.tar.zst +0.0169773 gtk-update-icon-cache-1:4.12.3-2-x86_64.pkg.tar.zst +0.016921 python-appdirs-1.4.4-9-any.pkg.tar.zst +0.0168018 xorg-xinit-1.4.2-1-x86_64.pkg.tar.zst +0.0167894 qemu-ui-sdl-8.1.2-1-x86_64.pkg.tar.zst +0.0167542 qemu-block-ssh-8.1.2-1-x86_64.pkg.tar.zst +0.016736 bluez-hid2hci-5.70-1-x86_64.pkg.tar.zst +0.0167313 libnfnetlink-1.0.2-1-x86_64.pkg.tar.zst +0.0167036 libebur128-1.2.6-1-x86_64.pkg.tar.zst +0.0165539 qemu-audio-pipewire-8.1.2-1-x86_64.pkg.tar.zst +0.016551 libbs2b-3.1.0-8-x86_64.pkg.tar.zst +0.01649 libasyncns-1:0.8+r3+g68cd5af-2-x86_64.pkg.tar.zst +0.0164709 reflector-simple-3.3-1-any.pkg.tar.zst +0.0163374 python-cycler-0.12.0-1-any.pkg.tar.zst +0.0162888 libinih-57-1-x86_64.pkg.tar.zst +0.0162487 mtdev-1.1.6-2-x86_64.pkg.tar.zst +0.0162077 bridge-utils-1.7.1-1-x86_64.pkg.tar.zst +0.0161867 python-jaraco.functools-3.9.0-1-any.pkg.tar.zst +0.0159483 mkinitcpio-archiso-68-1-any.pkg.tar.zst +0.0157757 xorg-xdpyinfo-1.3.4-1-x86_64.pkg.tar.zst +0.0157461 kwin-effects-sliding-notifications-1.5.0-1.2-x86_64.pkg.tar.zst +0.0156631 melawy-color-scheme-konsole-1.4-1-any.pkg.tar.xz +0.0156555 hyphen-2.8.8-5-x86_64.pkg.tar.zst +0.0155792 ruby-benchmark-0.2.0-4-any.pkg.tar.zst +0.0155334 melawy-color-scheme-1.4-1-any.pkg.tar.xz +0.0154715 qemu-system-x86-firmware-8.1.2-1-x86_64.pkg.tar.zst +0.0154543 arch-install-scripts-28-1-any.pkg.tar.zst +0.0154314 python-ordered-set-4.1.0-4-any.pkg.tar.zst +0.015399 which-2.21-6-x86_64.pkg.tar.zst +0.0152016 melawy-plymouth-theme-hard-install-nier-a2-1.0-1-any.pkg.tar.xz +0.0151672 melawy-linux-mirrorlist-1.2-1-any.pkg.tar.xz +0.0151606 libxxf86vm-1.1.5-1-x86_64.pkg.tar.zst +0.0151281 arcolinux-mirrorlist-git-23.06-01-any.pkg.tar.zst +0.0150604 libfontenc-1.1.7-1-x86_64.pkg.tar.zst +0.0148001 ruby-time-0.2.0-4-any.pkg.tar.zst +0.0146379 libmicrodns-0.2.0-1-x86_64.pkg.tar.zst +0.0145435 python-trove-classifiers-2023.10.18-1-any.pkg.tar.zst +0.014473 xclip-0.13-4-x86_64.pkg.tar.zst +0.0144148 qt5-x11extras-5.15.11-1-x86_64.pkg.tar.zst +0.0143948 scdoc-1.11.2-5-x86_64.pkg.tar.zst +0.0143852 btrfs-snapshots-git-0.8.2.r1.9856996-1-any.pkg.tar.zst +0.0140953 filesystem-2023.09.18-1-any.pkg.tar.zst +0.0139837 xf86-input-vmmouse-13.2.0-1-x86_64.pkg.tar.zst +0.0138817 perl-io-html-1.004-4-any.pkg.tar.zst +0.0137892 qemu-ui-opengl-8.1.2-1-x86_64.pkg.tar.zst +0.013772 libxss-1.2.4-1-x86_64.pkg.tar.zst +0.0137653 qemu-ui-curses-8.1.2-1-x86_64.pkg.tar.zst +0.0137215 qemu-hw-display-virtio-gpu-gl-8.1.2-1-x86_64.pkg.tar.zst +0.013648 xorg-setxkbmap-1.3.4-1-x86_64.pkg.tar.zst +0.0135365 libxfixes-6.0.1-1-x86_64.pkg.tar.zst +0.0134287 aha-0.5.1-2-x86_64.pkg.tar.zst +0.0134125 perl-http-cookiejar-0.014-1-any.pkg.tar.zst +0.0133438 qemu-hw-usb-smartcard-8.1.2-1-x86_64.pkg.tar.zst +0.013298 ruby-getoptlong-0.1.1-3-any.pkg.tar.zst +0.0132809 alsa-topology-conf-1.2.5.1-3-any.pkg.tar.zst +0.0132189 qemu-block-curl-8.1.2-1-x86_64.pkg.tar.zst +0.0131807 iniparser-4.1-4-x86_64.pkg.tar.zst +0.0131111 libusb-compat-0.1.8-1-x86_64.pkg.tar.zst +0.0130415 xf86-video-fbdev-0.5.0-3-x86_64.pkg.tar.zst +0.0129766 nodejs-nopt-7.2.0-1-any.pkg.tar.zst +0.0129604 libavtp-0.2.0-2-x86_64.pkg.tar.zst +0.0128794 kwallet-pam-5.27.9-1-x86_64.pkg.tar.zst +0.0128403 xorg-xmessage-1.0.6-1-x86_64.pkg.tar.zst +0.0126762 qemu-block-nfs-8.1.2-1-x86_64.pkg.tar.zst +0.0126534 libportal-gtk3-0.7.1-2-x86_64.pkg.tar.zst +0.0123644 ruby-delegate-0.2.0-4-any.pkg.tar.zst +0.0121174 xcb-util-0.4.1-1-x86_64.pkg.tar.zst +0.0118675 qemu-audio-alsa-8.1.2-1-x86_64.pkg.tar.zst +0.0117512 perl-http-negotiate-6.01-12-any.pkg.tar.zst +0.0117311 python-termcolor-2.3.0-1-any.pkg.tar.zst +0.0117245 xorg-xhost-1.0.9-1-x86_64.pkg.tar.zst +0.0115662 perl-www-robotrules-6.02-12-any.pkg.tar.zst +0.0114775 xf86-input-elographics-1.4.3-1-x86_64.pkg.tar.zst +0.0113611 xcb-util-cursor-0.1.5-1-x86_64.pkg.tar.zst +0.0113459 qemu-audio-dbus-8.1.2-1-x86_64.pkg.tar.zst +0.0113382 libxcomposite-0.4.6-1-x86_64.pkg.tar.zst +0.0111408 python-jaraco.context-4.3.0-3-any.pkg.tar.zst +0.0109901 xorg-xsetroot-1.1.3-1-x86_64.pkg.tar.zst +0.0109768 ruby-forwardable-1.3.2-6-any.pkg.tar.zst +0.010952 libmnl-1.0.5-1-x86_64.pkg.tar.zst +0.0109119 brightnessctl-0.5.1-2-x86_64.pkg.tar.zst +0.0108461 qemu-audio-pa-8.1.2-1-x86_64.pkg.tar.zst +0.0108356 wireless-regdb-2023.09.01-1-any.pkg.tar.zst +0.0108261 libxcvt-0.1.2-1-x86_64.pkg.tar.zst +0.0108156 nss-mdns-0.15.1-1-x86_64.pkg.tar.zst +0.010685 libxau-1.0.11-2-x86_64.pkg.tar.zst +0.0105505 android-udev-20231104-1-any.pkg.tar.zst +0.0104914 powerline-2.8.3-2-x86_64.pkg.tar.zst +0.0104733 perl-html-tagset-3.20-14-any.pkg.tar.zst +0.0104656 perl-encode-locale-1.05-11-any.pkg.tar.zst +0.0101137 libxres-1.2.2-1-x86_64.pkg.tar.zst +0.0100842 ca-certificates-utils-20220905-1-any.pkg.tar.zst +0.010067 sshpass-1.10-1-x86_64.pkg.tar.zst +0.010004 perl-clone-0.46-2-x86_64.pkg.tar.zst +0.00997543 qemu-audio-oss-8.1.2-1-x86_64.pkg.tar.zst +0.00997066 perl-file-listing-6.16-2-any.pkg.tar.zst +0.00971413 ruby-io-wait-0.2.3-4-x86_64.pkg.tar.zst +0.00966358 qemu-chardev-spice-8.1.2-1-x86_64.pkg.tar.zst +0.00964546 libxinerama-1.1.5-1-x86_64.pkg.tar.zst +0.00955677 hicolor-icon-theme-0.17-3-any.pkg.tar.zst +0.00955105 qemu-audio-jack-8.1.2-1-x86_64.pkg.tar.zst +0.00930119 libutempter-1.2.1-4-x86_64.pkg.tar.zst +0.00927162 pipewire-x11-bell-1:0.3.84-1-x86_64.pkg.tar.zst +0.0092535 perl-http-date-6.06-1-any.pkg.tar.zst +0.00919819 xcb-util-renderutil-0.3.10-1-x86_64.pkg.tar.zst +0.00912666 game-devices-udev-0.22-0.2-any.pkg.tar.zst +0.00895691 xorg-xkill-1.0.6-1-x86_64.pkg.tar.zst +0.00875473 powerline-common-2.8.3-2-x86_64.pkg.tar.zst +0.00873852 python-certifi-2023.07.22-1-any.pkg.tar.zst +0.00857353 qemu-audio-sdl-8.1.2-1-x86_64.pkg.tar.zst +0.00856495 lsb-release-2.0.r53.a86f885-1-any.pkg.tar.zst +0.00816631 qemu-hw-display-virtio-vga-8.1.2-1-x86_64.pkg.tar.zst +0.00805378 qemu-ui-spice-app-8.1.2-1-x86_64.pkg.tar.zst +0.0080204 ruby-fcntl-1.0.1-4-x86_64.pkg.tar.zst +0.00796986 pacman-mirrorlist-20231001-1-any.pkg.tar.zst +0.00784874 harfbuzz-icu-8.2.2-1-x86_64.pkg.tar.zst +0.00771046 ruby-english-0.7.1-5-any.pkg.tar.zst +0.00768471 qemu-audio-spice-8.1.2-1-x86_64.pkg.tar.zst +0.00762653 bluez-plugins-5.70-1-x86_64.pkg.tar.zst +0.00752163 ruby-base64-0.1.1-4-any.pkg.tar.zst +0.00752068 qemu-ui-egl-headless-8.1.2-1-x86_64.pkg.tar.zst +0.00736618 xcb-util-keysyms-0.4.1-4-x86_64.pkg.tar.zst +0.00728035 ruby-abbrev-0.1.0-4-any.pkg.tar.zst +0.00725937 ruby-io-nonblock-0.1.0-3-x86_64.pkg.tar.zst +0.00710106 ruby-mutex_m-0.1.1-3-any.pkg.tar.zst +0.00707531 xf86-input-void-1.4.2-1-x86_64.pkg.tar.zst +0.00703716 ruby-tmpdir-0.1.2-3-any.pkg.tar.zst +0.00703621 libxdamage-1.1.6-1-x86_64.pkg.tar.zst +0.00698853 ruby-ruby2_keywords-0.0.5-1-any.pkg.tar.zst +0.00693989 eglexternalplatform-1.1-2-any.pkg.tar.zst +0.00691509 ruby-find-0.1.1-4-any.pkg.tar.zst +0.00682354 qemu-hw-display-virtio-gpu-pci-8.1.2-1-x86_64.pkg.tar.zst +0.00658131 ttf-nerd-fonts-symbols-common-3.0.2-2-any.pkg.tar.zst +0.00645065 libfakekey-0.3-2-x86_64.pkg.tar.zst +0.00628281 plasma-wayland-session-5.27.9.1-1-x86_64.pkg.tar.zst +0.00625324 qemu-hw-display-virtio-vga-gl-8.1.2-1-x86_64.pkg.tar.zst +0.00615978 qemu-block-dmg-8.1.2-1-x86_64.pkg.tar.zst +0.00604725 qemu-hw-display-virtio-gpu-pci-gl-8.1.2-1-x86_64.pkg.tar.zst +0.00598907 timeshift-autosnap-0.9-1-any.pkg.tar.zst +0.00588989 systemd-sysvcompat-254.5-1-x86_64.pkg.tar.zst +0.00586796 rebuild-detector-4.4.2-1-any.pkg.tar.zst +0.00568104 hwdetect-2023.07.02-1-any.pkg.tar.zst +0.00557899 libxshmfence-1.3.2-1-x86_64.pkg.tar.zst +0.00555611 laptop-detect-0.16-1-any.pkg.tar.zst +0.00513649 qemu-base-8.1.2-1-x86_64.pkg.tar.zst +0.0049305 qemu-desktop-8.1.2-1-x86_64.pkg.tar.zst +0.00492477 pipewire-alsa-1:0.3.84-1-x86_64.pkg.tar.zst +0.0048418 java-runtime-common-3-5-any.pkg.tar.zst +0.00452995 powerline-fonts-2.8.3-2-x86_64.pkg.tar.zst +0.00441551 chwd-db-1.0.2-1-x86_64.pkg.tar.zst +0.00395584 samba-support-1-7-any.pkg.tar.zst +0.00366306 pipewire-support-1-16-any.pkg.tar.zst +0.00328445 realtime-privileges-4-2-any.pkg.tar.zst +0.00310707 chaotic-mirrorlist-20231021-1-any.pkg.tar.zst +0.0031023 noto-color-emoji-fontconfig-1.0.0-1-any.pkg.tar.zst +0.00307083 pambase-20230918-1-any.pkg.tar.zst +0.00305748 systemd-resolvconf-254.5-1-x86_64.pkg.tar.zst +0.00294018 bluetooth-support-1-7-any.pkg.tar.zst +0.00292397 dnssec-anchors-20190629-3-any.pkg.tar.zst +0.00276852 ruby-stdlib-3.0.6-1-x86_64.pkg.tar.zst +0.00264168 fuse-common-3.16.2-1-x86_64.pkg.tar.zst +0.00258923 ruby-bundledgems-3.0.6-1-x86_64.pkg.tar.zst +0.00250626 java-environment-common-3-5-any.pkg.tar.zst +0.00225258 base-3-2-any.pkg.tar.zst +0.00212955 default-cursors-2-1-any.pkg.tar.zst +0.00197887 ca-certificates-20220905-1-any.pkg.tar.zst +0.00197601 base-devel-1-1-any.pkg.tar.zst diff --git a/rsync_to_sf.sh b/rsync_to_sf.sh new file mode 100755 index 0000000..f72e263 --- /dev/null +++ b/rsync_to_sf.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +echo "Sending" + +rsync -avP --delete-after --progress -e "ssh" "./sf/" frs.sourceforge.net:/home/frs/project/melawy-linux/ + +echo "Ready" diff --git a/scp_to_sf.sh b/scp_to_sf.sh new file mode 100755 index 0000000..0da8b8c --- /dev/null +++ b/scp_to_sf.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +file_list=$(ls -1 ./sf/) +for i in $file_list +do + echo "Sending $i" + scp -p -r "./sf/$i" frs.sourceforge.net:/home/frs/project/melawy-linux/ + echo "Ready $i" +done + +echo "Ready" diff --git a/ssh_to_sf.sh b/ssh_to_sf.sh new file mode 100755 index 0000000..ab308d3 --- /dev/null +++ b/ssh_to_sf.sh @@ -0,0 +1,5 @@ +#!/bin/bash + +ssh -t shell.sourceforge.net create + +echo "Ready"