├── .editorconfig ├── AUTHORS.rst ├── Dockerfile ├── LICENSE ├── Makefile ├── archuseriso ├── aui-buildzfs ├── aui-hd2aui ├── aui-mkhybrid ├── aui-mkinstall ├── aui-mkiso ├── aui-mkusb └── aui-run ├── hd2aui ├── airootfs │ └── etc │ │ ├── fstab │ │ ├── initcpio │ │ └── hooks │ │ │ └── archiso │ │ └── mkinitcpio.d │ │ └── linux.preset └── esp │ └── limine.conf ├── pkgbuild ├── aui-ipxe │ ├── Makefile.housekeeping.patch │ ├── PKGBUILD │ ├── aui.ipxe │ ├── codesigning_laurent_jourden_archuseriso.pem │ ├── codesigning_pierre_archlinux.pem │ ├── general.h │ ├── isrgrootx1.pem │ └── lets-encrypt-r3.pem ├── pacman-testing.conf ├── pacman.conf ├── zfs-linux │ ├── PKGBUILD │ └── zfs.install └── zfs-utils │ ├── PKGBUILD │ ├── zfs-node-permission.conf │ ├── zfs.initcpio.hook │ ├── zfs.initcpio.install │ └── zfs.initcpio.zfsencryptssh.install ├── profiles ├── cinnamon │ ├── airootfs-options │ │ └── graphics │ │ │ ├── nvidia │ │ │ ├── nvidia-open │ │ │ └── etc │ │ │ │ └── modprobe.d │ │ │ │ ├── blacklist-nouveau.conf │ │ │ │ └── nvidia-drm.conf │ │ │ ├── optimus-nvidia │ │ │ └── etc │ │ │ │ ├── lightdm │ │ │ │ └── display_setup.sh │ │ │ │ └── modprobe.d │ │ │ │ ├── blacklist-nouveau.conf │ │ │ │ └── nvidia-drm.conf │ │ │ └── optimus-prime │ ├── airootfs │ │ ├── etc │ │ │ ├── X11 │ │ │ │ └── xorg.conf.d │ │ │ │ │ └── 30-touchpad.conf │ │ │ ├── dconf │ │ │ │ ├── db │ │ │ │ │ ├── local │ │ │ │ │ └── local.d │ │ │ │ │ │ └── theme │ │ │ │ └── profile │ │ │ │ │ └── user │ │ │ ├── hostname │ │ │ ├── hosts │ │ │ ├── initcpio │ │ │ │ └── hooks │ │ │ │ │ └── archiso │ │ │ ├── locale.conf │ │ │ ├── localtime │ │ │ ├── machine-id │ │ │ ├── mkinitcpio.conf │ │ │ ├── mkinitcpio.d │ │ │ │ └── linux.preset │ │ │ ├── modprobe.d │ │ │ │ └── broadcom-wl.conf │ │ │ ├── motd │ │ │ ├── passwd │ │ │ ├── resolv.conf │ │ │ ├── samba │ │ │ │ └── smb.conf │ │ │ ├── shadow │ │ │ ├── skel │ │ │ │ ├── .Xresources │ │ │ │ ├── .fehbg │ │ │ │ ├── .firstboot │ │ │ │ ├── .local │ │ │ │ │ └── share │ │ │ │ │ │ └── wallpapers │ │ │ │ │ │ └── archlinux-simplyblack.png │ │ │ │ ├── .pam_environment │ │ │ │ ├── .xsession │ │ │ │ └── .zshrc.local │ │ │ ├── ssh │ │ │ │ └── sshd_config.d │ │ │ │ │ └── 10-archiso.conf │ │ │ ├── systemd │ │ │ │ ├── journald.conf.d │ │ │ │ │ └── volatile-storage.conf │ │ │ │ ├── logind.conf.d │ │ │ │ │ └── do-not-suspend.conf │ │ │ │ ├── network │ │ │ │ │ ├── 20-ethernet.network │ │ │ │ │ ├── 20-wlan.network │ │ │ │ │ └── 20-wwan.network │ │ │ │ ├── networkd.conf.d │ │ │ │ │ └── ipv6-privacy-extensions.conf │ │ │ │ ├── system-preset │ │ │ │ │ └── 10-aui-default.preset │ │ │ │ └── system │ │ │ │ │ ├── choose-mirror.service │ │ │ │ │ ├── dbus-org.freedesktop.ModemManager1.service │ │ │ │ │ ├── dbus-org.freedesktop.resolve1.service │ │ │ │ │ ├── dbus-org.freedesktop.timesync1.service │ │ │ │ │ ├── etc-pacman.d-gnupg.mount │ │ │ │ │ ├── getty@tty1.service.d │ │ │ │ │ └── autologin.conf │ │ │ │ │ ├── multi-user.target.wants │ │ │ │ │ ├── ModemManager.service │ │ │ │ │ ├── choose-mirror.service │ │ │ │ │ ├── hv_fcopy_daemon.service │ │ │ │ │ ├── hv_kvp_daemon.service │ │ │ │ │ ├── hv_vss_daemon.service │ │ │ │ │ ├── pacman-init.service │ │ │ │ │ ├── reflector.service │ │ │ │ │ ├── systemd-resolved.service │ │ │ │ │ ├── vboxservice.service │ │ │ │ │ ├── vmtoolsd.service │ │ │ │ │ └── vmware-vmblock-fuse.service │ │ │ │ │ ├── pacman-init.service │ │ │ │ │ ├── reflector.service.d │ │ │ │ │ └── archiso.conf │ │ │ │ │ ├── socket.target.wants │ │ │ │ │ └── pcscd.socket │ │ │ │ │ ├── sysinit.target.wants │ │ │ │ │ ├── systemd-time-wait-sync.service │ │ │ │ │ └── systemd-timesyncd.service │ │ │ │ │ └── systemd-networkd-wait-online.service.d │ │ │ │ │ └── wait-for-only-one-interface.conf │ │ │ ├── vconsole.conf │ │ │ └── xdg │ │ │ │ └── reflector │ │ │ │ └── reflector.conf │ │ ├── root │ │ │ ├── .automated_script.sh │ │ │ ├── .config │ │ │ │ └── user-dirs.conf │ │ │ ├── .gnupg │ │ │ │ └── scdaemon.conf │ │ │ ├── .zlogin │ │ │ └── customize_airootfs.sh │ │ └── usr │ │ │ └── local │ │ │ └── bin │ │ │ ├── Installation_guide │ │ │ └── choose-mirror │ ├── bootstrap_packages.x86_64 │ ├── drive │ │ ├── hybrid │ │ │ ├── auirootfs │ │ │ │ └── etc │ │ │ │ │ ├── fstab │ │ │ │ │ ├── initcpio │ │ │ │ │ ├── hooks │ │ │ │ │ │ └── bcachefs │ │ │ │ │ └── install │ │ │ │ │ │ └── bcachefs │ │ │ │ │ ├── mkinitcpio.conf │ │ │ │ │ ├── mkinitcpio.d │ │ │ │ │ └── linux.preset │ │ │ │ │ └── samba │ │ │ │ │ └── smb.conf │ │ │ ├── grub │ │ │ │ └── grub.cfg │ │ │ ├── loader │ │ │ │ ├── entries │ │ │ │ │ ├── archiso-aui-0-x86_64-linux.conf │ │ │ │ │ ├── archiso-x86_64-linux.conf │ │ │ │ │ ├── archiso_2_console-x86_64-linux.conf │ │ │ │ │ ├── archiso_3_ram-x86_64-linux.conf │ │ │ │ │ └── archiso_5_memtest86-x86_64-linux.conf │ │ │ │ └── loader.conf │ │ │ ├── refind │ │ │ │ ├── refind.conf │ │ │ │ └── refind_linux.conf │ │ │ └── syslinux │ │ │ │ ├── archiso_pxe-linux.cfg │ │ │ │ ├── archiso_sys-linux.cfg │ │ │ │ ├── archiso_sys.cfg │ │ │ │ └── archiso_tail.cfg │ │ ├── img │ │ │ ├── grub │ │ │ │ └── grub.cfg │ │ │ ├── loader │ │ │ │ ├── entries │ │ │ │ │ ├── archiso-aui-0-x86_64-linux.conf │ │ │ │ │ ├── archiso-aui-1-x86_64-linux.conf │ │ │ │ │ ├── archiso-x86_64-linux.conf │ │ │ │ │ ├── archiso_2_console-x86_64-linux.conf │ │ │ │ │ ├── archiso_3_ram-x86_64-linux.conf │ │ │ │ │ └── archiso_5_memtest86-x86_64-linux.conf │ │ │ │ └── loader.conf │ │ │ ├── persistent │ │ │ │ └── x86_64 │ │ │ │ │ └── upperdir │ │ │ │ │ └── etc │ │ │ │ │ └── fstab │ │ │ └── syslinux │ │ │ │ ├── archiso_pxe-linux.cfg │ │ │ │ ├── archiso_sys-linux.cfg │ │ │ │ └── archiso_sys.cfg │ │ ├── install │ │ │ ├── auirootfs │ │ │ │ └── etc │ │ │ │ │ ├── fstab │ │ │ │ │ ├── initcpio │ │ │ │ │ ├── hooks │ │ │ │ │ │ └── bcachefs │ │ │ │ │ └── install │ │ │ │ │ │ └── bcachefs │ │ │ │ │ ├── mkinitcpio.conf │ │ │ │ │ ├── mkinitcpio.d │ │ │ │ │ └── linux.preset │ │ │ │ │ └── samba │ │ │ │ │ └── smb.conf │ │ │ ├── grub │ │ │ │ └── grub.cfg │ │ │ ├── loader │ │ │ │ ├── entries │ │ │ │ │ ├── archiso-aui-0-x86_64-linux.conf │ │ │ │ │ ├── archiso_4_refind-x86_64-linux.conf │ │ │ │ │ └── archiso_5_memtest86-x86_64-linux.conf │ │ │ │ └── loader.conf │ │ │ ├── refind │ │ │ │ ├── refind.conf │ │ │ │ └── refind_linux.conf │ │ │ └── syslinux │ │ │ │ ├── archiso_pxe-linux.cfg │ │ │ │ ├── archiso_sys-linux.cfg │ │ │ │ ├── archiso_sys.cfg │ │ │ │ └── archiso_tail.cfg │ │ ├── liveusb │ │ │ ├── grub │ │ │ │ └── grub.cfg │ │ │ ├── loader │ │ │ │ ├── entries │ │ │ │ │ ├── archiso-aui-0-x86_64-linux.conf │ │ │ │ │ ├── archiso-aui-1-x86_64-linux.conf │ │ │ │ │ ├── archiso-x86_64-linux.conf │ │ │ │ │ ├── archiso_2_console-x86_64-linux.conf │ │ │ │ │ ├── archiso_3_ram-x86_64-linux.conf │ │ │ │ │ └── archiso_5_memtest86-x86_64-linux.conf │ │ │ │ └── loader.conf │ │ │ ├── persistent │ │ │ │ └── x86_64 │ │ │ │ │ └── upperdir │ │ │ │ │ └── etc │ │ │ │ │ ├── fstab │ │ │ │ │ ├── initcpio │ │ │ │ │ ├── hooks │ │ │ │ │ │ └── bcachefs │ │ │ │ │ └── install │ │ │ │ │ │ └── bcachefs │ │ │ │ │ ├── mkinitcpio.d │ │ │ │ │ └── linux.preset │ │ │ │ │ ├── samba │ │ │ │ │ └── smb.conf │ │ │ │ │ └── systemd │ │ │ │ │ ├── logind.conf.d │ │ │ │ │ └── do-not-suspend.conf │ │ │ │ │ └── system │ │ │ │ │ ├── etc-pacman.d-gnupg.mount │ │ │ │ │ ├── pacman-init.service │ │ │ │ │ └── pacman-init.service.d │ │ │ │ │ └── override.conf │ │ │ ├── refind │ │ │ │ └── refind.conf │ │ │ └── syslinux │ │ │ │ ├── archiso_pxe-linux.cfg │ │ │ │ ├── archiso_sys-linux.cfg │ │ │ │ ├── archiso_sys.cfg │ │ │ │ └── archiso_tail.cfg │ │ └── mediumdef.sh │ ├── efiboot │ │ ├── grub │ │ │ ├── grub.cfg │ │ │ └── loopback.cfg │ │ ├── loader │ │ │ ├── entries │ │ │ │ ├── archiso-x86_64-linux.conf │ │ │ │ ├── archiso_2_console-x86_64-linux.conf │ │ │ │ ├── archiso_3_ram-x86_64-linux.conf │ │ │ │ ├── archiso_4_refind-x86_64-linux.conf │ │ │ │ └── archiso_5_memtest86-x86_64-linux.conf │ │ │ └── loader.conf │ │ └── refind │ │ │ ├── refind-dvd.conf │ │ │ └── refind-usb.conf │ ├── lang │ │ ├── cs_CZ │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── de_DE │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── el_GR │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── es_ES │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── fr_FR │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── hu_HU │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── it_IT │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── nl_NL │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── pl_PL │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── pt_PT │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── ro_RO │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── ru_RU │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── sr_RS@latin │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── tr_TR │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ └── uk_UA │ │ │ ├── airootfs │ │ │ ├── etc │ │ │ │ ├── X11 │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ ├── environment │ │ │ │ ├── locale.conf │ │ │ │ └── vconsole.conf │ │ │ └── root │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ ├── packages.x86_64 │ ├── pacman-testing.conf │ ├── pacman.conf │ ├── profiledef.sh │ └── syslinux │ │ ├── archiso_head.cfg │ │ ├── archiso_pxe-linux.cfg │ │ ├── archiso_pxe.cfg │ │ ├── archiso_sys-linux.cfg │ │ ├── archiso_sys.cfg │ │ ├── archiso_tail.cfg │ │ ├── splash.png │ │ └── syslinux.cfg ├── console │ ├── airootfs │ │ ├── etc │ │ │ ├── hostname │ │ │ ├── hosts │ │ │ ├── initcpio │ │ │ │ └── hooks │ │ │ │ │ └── archiso │ │ │ ├── locale.conf │ │ │ ├── localtime │ │ │ ├── machine-id │ │ │ ├── mkinitcpio.conf │ │ │ ├── mkinitcpio.d │ │ │ │ └── linux.preset │ │ │ ├── modprobe.d │ │ │ │ └── broadcom-wl.conf │ │ │ ├── motd │ │ │ ├── passwd │ │ │ ├── resolv.conf │ │ │ ├── shadow │ │ │ ├── skel │ │ │ │ └── .zshrc.local │ │ │ ├── ssh │ │ │ │ └── sshd_config.d │ │ │ │ │ └── 10-archiso.conf │ │ │ ├── systemd │ │ │ │ ├── journald.conf.d │ │ │ │ │ └── volatile-storage.conf │ │ │ │ ├── logind.conf.d │ │ │ │ │ └── do-not-suspend.conf │ │ │ │ ├── network │ │ │ │ │ ├── 20-ethernet.network │ │ │ │ │ ├── 20-wlan.network │ │ │ │ │ └── 20-wwan.network │ │ │ │ ├── networkd.conf.d │ │ │ │ │ └── ipv6-privacy-extensions.conf │ │ │ │ └── system │ │ │ │ │ ├── choose-mirror.service │ │ │ │ │ ├── dbus-org.freedesktop.ModemManager1.service │ │ │ │ │ ├── dbus-org.freedesktop.network1.service │ │ │ │ │ ├── dbus-org.freedesktop.resolve1.service │ │ │ │ │ ├── dbus-org.freedesktop.timesync1.service │ │ │ │ │ ├── etc-pacman.d-gnupg.mount │ │ │ │ │ ├── getty@tty1.service.d │ │ │ │ │ └── autologin.conf │ │ │ │ │ ├── livecd-alsa-unmuter.service │ │ │ │ │ ├── livecd-talk.service │ │ │ │ │ ├── multi-user.target.wants │ │ │ │ │ ├── ModemManager.service │ │ │ │ │ ├── choose-mirror.service │ │ │ │ │ ├── hv_fcopy_daemon.service │ │ │ │ │ ├── hv_kvp_daemon.service │ │ │ │ │ ├── hv_vss_daemon.service │ │ │ │ │ ├── iwd.service │ │ │ │ │ ├── livecd-talk.service │ │ │ │ │ ├── pacman-init.service │ │ │ │ │ ├── reflector.service │ │ │ │ │ ├── systemd-networkd.service │ │ │ │ │ ├── systemd-resolved.service │ │ │ │ │ ├── vboxservice.service │ │ │ │ │ ├── vmtoolsd.service │ │ │ │ │ └── vmware-vmblock-fuse.service │ │ │ │ │ ├── network-online.target.wants │ │ │ │ │ └── systemd-networkd-wait-online.service │ │ │ │ │ ├── pacman-init.service │ │ │ │ │ ├── reflector.service.d │ │ │ │ │ └── archiso.conf │ │ │ │ │ ├── socket.target.wants │ │ │ │ │ └── pcscd.socket │ │ │ │ │ ├── sockets.target.wants │ │ │ │ │ └── systemd-networkd.socket │ │ │ │ │ ├── sound.target.wants │ │ │ │ │ └── livecd-alsa-unmuter.service │ │ │ │ │ ├── sysinit.target.wants │ │ │ │ │ ├── systemd-time-wait-sync.service │ │ │ │ │ └── systemd-timesyncd.service │ │ │ │ │ └── systemd-networkd-wait-online.service.d │ │ │ │ │ └── wait-for-only-one-interface.conf │ │ │ ├── vconsole.conf │ │ │ └── xdg │ │ │ │ └── reflector │ │ │ │ └── reflector.conf │ │ ├── root │ │ │ ├── .automated_script.sh │ │ │ ├── .gnupg │ │ │ │ └── scdaemon.conf │ │ │ ├── .zlogin │ │ │ └── customize_airootfs.sh │ │ └── usr │ │ │ └── local │ │ │ ├── bin │ │ │ ├── Installation_guide │ │ │ ├── choose-mirror │ │ │ └── livecd-sound │ │ │ └── share │ │ │ └── livecd-sound │ │ │ └── asound.conf.in │ ├── bootstrap_packages.x86_64 │ ├── drive │ │ ├── hybrid │ │ │ ├── auirootfs │ │ │ │ └── etc │ │ │ │ │ ├── fstab │ │ │ │ │ ├── initcpio │ │ │ │ │ ├── hooks │ │ │ │ │ │ └── bcachefs │ │ │ │ │ └── install │ │ │ │ │ │ └── bcachefs │ │ │ │ │ ├── mkinitcpio.conf │ │ │ │ │ ├── mkinitcpio.d │ │ │ │ │ └── linux.preset │ │ │ │ │ └── samba │ │ │ │ │ └── smb.conf │ │ │ ├── grub │ │ │ │ └── grub.cfg │ │ │ ├── loader │ │ │ │ ├── entries │ │ │ │ │ ├── archiso-aui-0-x86_64-linux.conf │ │ │ │ │ ├── archiso-x86_64-linux.conf │ │ │ │ │ ├── archiso-x86_64-speech-linux.conf │ │ │ │ │ ├── archiso_3_ram-x86_64-linux.conf │ │ │ │ │ └── archiso_5_memtest86-x86_64-linux.conf │ │ │ │ └── loader.conf │ │ │ ├── refind │ │ │ │ ├── refind.conf │ │ │ │ └── refind_linux.conf │ │ │ └── syslinux │ │ │ │ ├── archiso_pxe-linux.cfg │ │ │ │ ├── archiso_sys-linux.cfg │ │ │ │ ├── archiso_sys.cfg │ │ │ │ └── archiso_tail.cfg │ │ ├── img │ │ │ ├── grub │ │ │ │ └── grub.cfg │ │ │ ├── loader │ │ │ │ ├── entries │ │ │ │ │ ├── archiso-aui-0-x86_64-linux.conf │ │ │ │ │ ├── archiso-aui-1-x86_64-linux.conf │ │ │ │ │ ├── archiso-x86_64-linux.conf │ │ │ │ │ ├── archiso-x86_64-speech-linux.conf │ │ │ │ │ └── archiso_3_ram-x86_64-linux.conf │ │ │ │ └── loader.conf │ │ │ ├── persistent │ │ │ │ └── x86_64 │ │ │ │ │ └── upperdir │ │ │ │ │ └── etc │ │ │ │ │ └── fstab │ │ │ └── syslinux │ │ │ │ ├── archiso_pxe-linux.cfg │ │ │ │ ├── archiso_sys-linux.cfg │ │ │ │ └── archiso_sys.cfg │ │ ├── install │ │ │ ├── auirootfs │ │ │ │ └── etc │ │ │ │ │ ├── fstab │ │ │ │ │ ├── initcpio │ │ │ │ │ ├── hooks │ │ │ │ │ │ └── bcachefs │ │ │ │ │ └── install │ │ │ │ │ │ └── bcachefs │ │ │ │ │ ├── mkinitcpio.conf │ │ │ │ │ ├── mkinitcpio.d │ │ │ │ │ └── linux.preset │ │ │ │ │ └── samba │ │ │ │ │ └── smb.conf │ │ │ ├── grub │ │ │ │ └── grub.cfg │ │ │ ├── loader │ │ │ │ ├── entries │ │ │ │ │ ├── archiso-aui-0-x86_64-linux.conf │ │ │ │ │ ├── archiso_4_refind-x86_64-linux.conf │ │ │ │ │ └── archiso_5_memtest86-x86_64-linux.conf │ │ │ │ └── loader.conf │ │ │ ├── refind │ │ │ │ ├── refind.conf │ │ │ │ └── refind_linux.conf │ │ │ └── syslinux │ │ │ │ ├── archiso_pxe-linux.cfg │ │ │ │ ├── archiso_sys-linux.cfg │ │ │ │ ├── archiso_sys.cfg │ │ │ │ └── archiso_tail.cfg │ │ ├── liveusb │ │ │ ├── grub │ │ │ │ └── grub.cfg │ │ │ ├── loader │ │ │ │ ├── entries │ │ │ │ │ ├── archiso-aui-0-x86_64-linux.conf │ │ │ │ │ ├── archiso-aui-1-x86_64-linux.conf │ │ │ │ │ ├── archiso-x86_64-linux.conf │ │ │ │ │ ├── archiso-x86_64-speech-linux.conf │ │ │ │ │ ├── archiso_3_ram-x86_64-linux.conf │ │ │ │ │ └── archiso_5_memtest86-x86_64-linux.conf │ │ │ │ └── loader.conf │ │ │ ├── persistent │ │ │ │ └── x86_64 │ │ │ │ │ └── upperdir │ │ │ │ │ └── etc │ │ │ │ │ ├── fstab │ │ │ │ │ ├── initcpio │ │ │ │ │ ├── hooks │ │ │ │ │ │ └── bcachefs │ │ │ │ │ └── install │ │ │ │ │ │ └── bcachefs │ │ │ │ │ ├── mkinitcpio.d │ │ │ │ │ └── linux.preset │ │ │ │ │ ├── samba │ │ │ │ │ └── smb.conf │ │ │ │ │ └── systemd │ │ │ │ │ ├── logind.conf.d │ │ │ │ │ └── do-not-suspend.conf │ │ │ │ │ └── system │ │ │ │ │ ├── etc-pacman.d-gnupg.mount │ │ │ │ │ ├── pacman-init.service │ │ │ │ │ └── pacman-init.service.d │ │ │ │ │ └── override.conf │ │ │ ├── refind │ │ │ │ └── refind.conf │ │ │ └── syslinux │ │ │ │ ├── archiso_pxe-linux.cfg │ │ │ │ ├── archiso_sys-linux.cfg │ │ │ │ ├── archiso_sys.cfg │ │ │ │ └── archiso_tail.cfg │ │ └── mediumdef.sh │ ├── efiboot │ │ ├── grub │ │ │ ├── grub.cfg │ │ │ └── loopback.cfg │ │ ├── loader │ │ │ ├── entries │ │ │ │ ├── archiso-x86_64-linux.conf │ │ │ │ ├── archiso-x86_64-speech-linux.conf │ │ │ │ ├── archiso_3_ram-x86_64-linux.conf │ │ │ │ ├── archiso_4_refind-x86_64-linux.conf │ │ │ │ └── archiso_5_memtest86-x86_64-linux.conf │ │ │ └── loader.conf │ │ └── refind │ │ │ ├── refind-dvd.conf │ │ │ └── refind-usb.conf │ ├── lang │ │ ├── cs_CZ │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── de_DE │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── el_GR │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── es_ES │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── fr_FR │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── hu_HU │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── it_IT │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── nl_NL │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── pl_PL │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── pt_PT │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── ro_RO │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── ru_RU │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── sr_RS@latin │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── tr_TR │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ └── uk_UA │ │ │ ├── airootfs │ │ │ ├── etc │ │ │ │ ├── X11 │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ ├── environment │ │ │ │ ├── locale.conf │ │ │ │ └── vconsole.conf │ │ │ └── root │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ ├── packages.x86_64 │ ├── pacman-testing.conf │ ├── pacman.conf │ ├── profiledef.sh │ └── syslinux │ │ ├── archiso_head.cfg │ │ ├── archiso_pxe-linux.cfg │ │ ├── archiso_pxe.cfg │ │ ├── archiso_sys-linux.cfg │ │ ├── archiso_sys.cfg │ │ ├── archiso_tail.cfg │ │ ├── splash.png │ │ └── syslinux.cfg ├── cutefish │ ├── airootfs-options │ │ └── graphics │ │ │ ├── nvidia │ │ │ ├── nvidia-open │ │ │ └── etc │ │ │ │ └── modprobe.d │ │ │ │ ├── blacklist-nouveau.conf │ │ │ │ └── nvidia-drm.conf │ │ │ ├── optimus-nvidia │ │ │ └── etc │ │ │ │ ├── modprobe.d │ │ │ │ ├── blacklist-nouveau.conf │ │ │ │ └── nvidia-drm.conf │ │ │ │ ├── sddm.conf.d │ │ │ │ └── X11.conf │ │ │ │ └── sddm │ │ │ │ └── scripts │ │ │ │ └── Xsetup │ │ │ └── optimus-prime │ ├── airootfs │ │ ├── etc │ │ │ ├── X11 │ │ │ │ └── xorg.conf.d │ │ │ │ │ └── 30-touchpad.conf │ │ │ ├── hostname │ │ │ ├── hosts │ │ │ ├── initcpio │ │ │ │ └── hooks │ │ │ │ │ └── archiso │ │ │ ├── locale.conf │ │ │ ├── localtime │ │ │ ├── machine-id │ │ │ ├── mkinitcpio.conf │ │ │ ├── mkinitcpio.d │ │ │ │ └── linux.preset │ │ │ ├── modprobe.d │ │ │ │ └── broadcom-wl.conf │ │ │ ├── motd │ │ │ ├── passwd │ │ │ ├── resolv.conf │ │ │ ├── samba │ │ │ │ └── smb.conf │ │ │ ├── sddm.conf.d │ │ │ │ └── autologin.conf │ │ │ ├── shadow │ │ │ ├── skel │ │ │ │ ├── .Xresources │ │ │ │ ├── .fehbg │ │ │ │ ├── .firstboot │ │ │ │ ├── .local │ │ │ │ │ └── share │ │ │ │ │ │ └── wallpapers │ │ │ │ │ │ └── archlinux-simplyblack.png │ │ │ │ ├── .pam_environment │ │ │ │ ├── .xsession │ │ │ │ └── .zshrc.local │ │ │ ├── ssh │ │ │ │ └── sshd_config.d │ │ │ │ │ └── 10-archiso.conf │ │ │ ├── systemd │ │ │ │ ├── journald.conf.d │ │ │ │ │ └── volatile-storage.conf │ │ │ │ ├── logind.conf.d │ │ │ │ │ └── do-not-suspend.conf │ │ │ │ ├── network │ │ │ │ │ ├── 20-ethernet.network │ │ │ │ │ ├── 20-wlan.network │ │ │ │ │ └── 20-wwan.network │ │ │ │ ├── networkd.conf.d │ │ │ │ │ └── ipv6-privacy-extensions.conf │ │ │ │ ├── system-preset │ │ │ │ │ └── 10-aui-default.preset │ │ │ │ └── system │ │ │ │ │ ├── choose-mirror.service │ │ │ │ │ ├── dbus-org.freedesktop.ModemManager1.service │ │ │ │ │ ├── dbus-org.freedesktop.resolve1.service │ │ │ │ │ ├── dbus-org.freedesktop.timesync1.service │ │ │ │ │ ├── etc-pacman.d-gnupg.mount │ │ │ │ │ ├── getty@tty1.service.d │ │ │ │ │ └── autologin.conf │ │ │ │ │ ├── multi-user.target.wants │ │ │ │ │ ├── ModemManager.service │ │ │ │ │ ├── choose-mirror.service │ │ │ │ │ ├── hv_fcopy_daemon.service │ │ │ │ │ ├── hv_kvp_daemon.service │ │ │ │ │ ├── hv_vss_daemon.service │ │ │ │ │ ├── pacman-init.service │ │ │ │ │ ├── reflector.service │ │ │ │ │ ├── systemd-resolved.service │ │ │ │ │ ├── vboxservice.service │ │ │ │ │ ├── vmtoolsd.service │ │ │ │ │ └── vmware-vmblock-fuse.service │ │ │ │ │ ├── pacman-init.service │ │ │ │ │ ├── reflector.service.d │ │ │ │ │ └── archiso.conf │ │ │ │ │ ├── socket.target.wants │ │ │ │ │ └── pcscd.socket │ │ │ │ │ ├── sysinit.target.wants │ │ │ │ │ ├── systemd-time-wait-sync.service │ │ │ │ │ └── systemd-timesyncd.service │ │ │ │ │ └── systemd-networkd-wait-online.service.d │ │ │ │ │ └── wait-for-only-one-interface.conf │ │ │ ├── vconsole.conf │ │ │ └── xdg │ │ │ │ ├── kdesurc │ │ │ │ └── reflector │ │ │ │ └── reflector.conf │ │ ├── root │ │ │ ├── .automated_script.sh │ │ │ ├── .config │ │ │ │ └── user-dirs.conf │ │ │ ├── .gnupg │ │ │ │ └── scdaemon.conf │ │ │ ├── .zlogin │ │ │ └── customize_airootfs.sh │ │ └── usr │ │ │ └── local │ │ │ └── bin │ │ │ ├── Installation_guide │ │ │ └── choose-mirror │ ├── bootstrap_packages.x86_64 │ ├── drive │ │ ├── hybrid │ │ │ ├── auirootfs │ │ │ │ └── etc │ │ │ │ │ ├── fstab │ │ │ │ │ ├── initcpio │ │ │ │ │ ├── hooks │ │ │ │ │ │ └── bcachefs │ │ │ │ │ └── install │ │ │ │ │ │ └── bcachefs │ │ │ │ │ ├── mkinitcpio.conf │ │ │ │ │ ├── mkinitcpio.d │ │ │ │ │ └── linux.preset │ │ │ │ │ └── samba │ │ │ │ │ └── smb.conf │ │ │ ├── grub │ │ │ │ └── grub.cfg │ │ │ ├── loader │ │ │ │ ├── entries │ │ │ │ │ ├── archiso-aui-0-x86_64-linux.conf │ │ │ │ │ ├── archiso-x86_64-linux.conf │ │ │ │ │ ├── archiso_2_console-x86_64-linux.conf │ │ │ │ │ ├── archiso_3_ram-x86_64-linux.conf │ │ │ │ │ └── archiso_5_memtest86-x86_64-linux.conf │ │ │ │ └── loader.conf │ │ │ ├── refind │ │ │ │ ├── refind.conf │ │ │ │ └── refind_linux.conf │ │ │ └── syslinux │ │ │ │ ├── archiso_pxe-linux.cfg │ │ │ │ ├── archiso_sys-linux.cfg │ │ │ │ ├── archiso_sys.cfg │ │ │ │ └── archiso_tail.cfg │ │ ├── img │ │ │ ├── grub │ │ │ │ └── grub.cfg │ │ │ ├── loader │ │ │ │ ├── entries │ │ │ │ │ ├── archiso-aui-0-x86_64-linux.conf │ │ │ │ │ ├── archiso-aui-1-x86_64-linux.conf │ │ │ │ │ ├── archiso-x86_64-linux.conf │ │ │ │ │ ├── archiso_2_console-x86_64-linux.conf │ │ │ │ │ ├── archiso_3_ram-x86_64-linux.conf │ │ │ │ │ └── archiso_5_memtest86-x86_64-linux.conf │ │ │ │ └── loader.conf │ │ │ ├── persistent │ │ │ │ └── x86_64 │ │ │ │ │ └── upperdir │ │ │ │ │ └── etc │ │ │ │ │ └── fstab │ │ │ └── syslinux │ │ │ │ ├── archiso_pxe-linux.cfg │ │ │ │ ├── archiso_sys-linux.cfg │ │ │ │ └── archiso_sys.cfg │ │ ├── install │ │ │ ├── auirootfs │ │ │ │ └── etc │ │ │ │ │ ├── fstab │ │ │ │ │ ├── initcpio │ │ │ │ │ ├── hooks │ │ │ │ │ │ └── bcachefs │ │ │ │ │ └── install │ │ │ │ │ │ └── bcachefs │ │ │ │ │ ├── mkinitcpio.conf │ │ │ │ │ ├── mkinitcpio.d │ │ │ │ │ └── linux.preset │ │ │ │ │ └── samba │ │ │ │ │ └── smb.conf │ │ │ ├── grub │ │ │ │ └── grub.cfg │ │ │ ├── loader │ │ │ │ ├── entries │ │ │ │ │ ├── archiso-aui-0-x86_64-linux.conf │ │ │ │ │ ├── archiso_4_refind-x86_64-linux.conf │ │ │ │ │ └── archiso_5_memtest86-x86_64-linux.conf │ │ │ │ └── loader.conf │ │ │ ├── refind │ │ │ │ ├── refind.conf │ │ │ │ └── refind_linux.conf │ │ │ └── syslinux │ │ │ │ ├── archiso_pxe-linux.cfg │ │ │ │ ├── archiso_sys-linux.cfg │ │ │ │ ├── archiso_sys.cfg │ │ │ │ └── archiso_tail.cfg │ │ ├── liveusb │ │ │ ├── grub │ │ │ │ └── grub.cfg │ │ │ ├── loader │ │ │ │ ├── entries │ │ │ │ │ ├── archiso-aui-0-x86_64-linux.conf │ │ │ │ │ ├── archiso-aui-1-x86_64-linux.conf │ │ │ │ │ ├── archiso-x86_64-linux.conf │ │ │ │ │ ├── archiso_2_console-x86_64-linux.conf │ │ │ │ │ ├── archiso_3_ram-x86_64-linux.conf │ │ │ │ │ └── archiso_5_memtest86-x86_64-linux.conf │ │ │ │ └── loader.conf │ │ │ ├── persistent │ │ │ │ └── x86_64 │ │ │ │ │ └── upperdir │ │ │ │ │ └── etc │ │ │ │ │ ├── fstab │ │ │ │ │ ├── initcpio │ │ │ │ │ ├── hooks │ │ │ │ │ │ └── bcachefs │ │ │ │ │ └── install │ │ │ │ │ │ └── bcachefs │ │ │ │ │ ├── mkinitcpio.d │ │ │ │ │ └── linux.preset │ │ │ │ │ ├── samba │ │ │ │ │ └── smb.conf │ │ │ │ │ └── systemd │ │ │ │ │ ├── logind.conf.d │ │ │ │ │ └── do-not-suspend.conf │ │ │ │ │ └── system │ │ │ │ │ ├── etc-pacman.d-gnupg.mount │ │ │ │ │ ├── pacman-init.service │ │ │ │ │ └── pacman-init.service.d │ │ │ │ │ └── override.conf │ │ │ ├── refind │ │ │ │ └── refind.conf │ │ │ └── syslinux │ │ │ │ ├── archiso_pxe-linux.cfg │ │ │ │ ├── archiso_sys-linux.cfg │ │ │ │ ├── archiso_sys.cfg │ │ │ │ └── archiso_tail.cfg │ │ └── mediumdef.sh │ ├── efiboot │ │ ├── grub │ │ │ ├── grub.cfg │ │ │ └── loopback.cfg │ │ ├── loader │ │ │ ├── entries │ │ │ │ ├── archiso-x86_64-linux.conf │ │ │ │ ├── archiso_2_console-x86_64-linux.conf │ │ │ │ ├── archiso_3_ram-x86_64-linux.conf │ │ │ │ ├── archiso_4_refind-x86_64-linux.conf │ │ │ │ └── archiso_5_memtest86-x86_64-linux.conf │ │ │ └── loader.conf │ │ └── refind │ │ │ ├── refind-dvd.conf │ │ │ └── refind-usb.conf │ ├── lang │ │ ├── cs_CZ │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── de_DE │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── el_GR │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── es_ES │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── fr_FR │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── hu_HU │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── it_IT │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── nl_NL │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── pl_PL │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── pt_PT │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── ro_RO │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── ru_RU │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── sr_RS@latin │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── tr_TR │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ └── uk_UA │ │ │ ├── airootfs │ │ │ ├── etc │ │ │ │ ├── X11 │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ ├── environment │ │ │ │ ├── locale.conf │ │ │ │ └── vconsole.conf │ │ │ └── root │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ ├── packages.x86_64 │ ├── pacman-testing.conf │ ├── pacman.conf │ ├── profiledef.sh │ └── syslinux │ │ ├── archiso_head.cfg │ │ ├── archiso_pxe-linux.cfg │ │ ├── archiso_pxe.cfg │ │ ├── archiso_sys-linux.cfg │ │ ├── archiso_sys.cfg │ │ ├── archiso_tail.cfg │ │ ├── splash.png │ │ └── syslinux.cfg ├── deepin │ ├── airootfs-options │ │ └── graphics │ │ │ ├── nvidia │ │ │ ├── nvidia-open │ │ │ └── etc │ │ │ │ └── modprobe.d │ │ │ │ ├── blacklist-nouveau.conf │ │ │ │ └── nvidia-drm.conf │ │ │ ├── optimus-nvidia │ │ │ └── etc │ │ │ │ ├── lightdm │ │ │ │ └── display_setup.sh │ │ │ │ └── modprobe.d │ │ │ │ ├── blacklist-nouveau.conf │ │ │ │ └── nvidia-drm.conf │ │ │ └── optimus-prime │ ├── airootfs │ │ ├── etc │ │ │ ├── X11 │ │ │ │ └── xorg.conf.d │ │ │ │ │ └── 30-touchpad.conf │ │ │ ├── hostname │ │ │ ├── hosts │ │ │ ├── initcpio │ │ │ │ └── hooks │ │ │ │ │ └── archiso │ │ │ ├── locale.conf │ │ │ ├── localtime │ │ │ ├── machine-id │ │ │ ├── mkinitcpio.conf │ │ │ ├── mkinitcpio.d │ │ │ │ └── linux.preset │ │ │ ├── modprobe.d │ │ │ │ └── broadcom-wl.conf │ │ │ ├── motd │ │ │ ├── passwd │ │ │ ├── resolv.conf │ │ │ ├── samba │ │ │ │ └── smb.conf │ │ │ ├── shadow │ │ │ ├── skel │ │ │ │ ├── .Xresources │ │ │ │ ├── .fehbg │ │ │ │ ├── .firstboot │ │ │ │ ├── .local │ │ │ │ │ └── share │ │ │ │ │ │ └── wallpapers │ │ │ │ │ │ └── archlinux-simplyblack.png │ │ │ │ ├── .pam_environment │ │ │ │ ├── .xsession │ │ │ │ └── .zshrc.local │ │ │ ├── ssh │ │ │ │ └── sshd_config.d │ │ │ │ │ └── 10-archiso.conf │ │ │ ├── systemd │ │ │ │ ├── journald.conf.d │ │ │ │ │ └── volatile-storage.conf │ │ │ │ ├── logind.conf.d │ │ │ │ │ └── do-not-suspend.conf │ │ │ │ ├── network │ │ │ │ │ ├── 20-ethernet.network │ │ │ │ │ ├── 20-wlan.network │ │ │ │ │ └── 20-wwan.network │ │ │ │ ├── networkd.conf.d │ │ │ │ │ └── ipv6-privacy-extensions.conf │ │ │ │ ├── system-preset │ │ │ │ │ └── 10-aui-default.preset │ │ │ │ └── system │ │ │ │ │ ├── choose-mirror.service │ │ │ │ │ ├── dbus-org.freedesktop.ModemManager1.service │ │ │ │ │ ├── dbus-org.freedesktop.resolve1.service │ │ │ │ │ ├── dbus-org.freedesktop.timesync1.service │ │ │ │ │ ├── etc-pacman.d-gnupg.mount │ │ │ │ │ ├── getty@tty1.service.d │ │ │ │ │ └── autologin.conf │ │ │ │ │ ├── multi-user.target.wants │ │ │ │ │ ├── ModemManager.service │ │ │ │ │ ├── choose-mirror.service │ │ │ │ │ ├── hv_fcopy_daemon.service │ │ │ │ │ ├── hv_kvp_daemon.service │ │ │ │ │ ├── hv_vss_daemon.service │ │ │ │ │ ├── pacman-init.service │ │ │ │ │ ├── reflector.service │ │ │ │ │ ├── systemd-resolved.service │ │ │ │ │ ├── vboxservice.service │ │ │ │ │ ├── vmtoolsd.service │ │ │ │ │ └── vmware-vmblock-fuse.service │ │ │ │ │ ├── pacman-init.service │ │ │ │ │ ├── reflector.service.d │ │ │ │ │ └── archiso.conf │ │ │ │ │ ├── socket.target.wants │ │ │ │ │ └── pcscd.socket │ │ │ │ │ ├── sysinit.target.wants │ │ │ │ │ ├── systemd-time-wait-sync.service │ │ │ │ │ └── systemd-timesyncd.service │ │ │ │ │ └── systemd-networkd-wait-online.service.d │ │ │ │ │ └── wait-for-only-one-interface.conf │ │ │ ├── vconsole.conf │ │ │ └── xdg │ │ │ │ └── reflector │ │ │ │ └── reflector.conf │ │ ├── root │ │ │ ├── .automated_script.sh │ │ │ ├── .config │ │ │ │ └── user-dirs.conf │ │ │ ├── .gnupg │ │ │ │ └── scdaemon.conf │ │ │ ├── .zlogin │ │ │ └── customize_airootfs.sh │ │ └── usr │ │ │ ├── local │ │ │ └── bin │ │ │ │ ├── Installation_guide │ │ │ │ └── choose-mirror │ │ │ └── share │ │ │ └── glib-2.0 │ │ │ └── schemas │ │ │ └── archuseriso.gschema.override │ ├── bootstrap_packages.x86_64 │ ├── drive │ │ ├── hybrid │ │ │ ├── auirootfs │ │ │ │ └── etc │ │ │ │ │ ├── fstab │ │ │ │ │ ├── initcpio │ │ │ │ │ ├── hooks │ │ │ │ │ │ └── bcachefs │ │ │ │ │ └── install │ │ │ │ │ │ └── bcachefs │ │ │ │ │ ├── mkinitcpio.conf │ │ │ │ │ ├── mkinitcpio.d │ │ │ │ │ └── linux.preset │ │ │ │ │ └── samba │ │ │ │ │ └── smb.conf │ │ │ ├── grub │ │ │ │ └── grub.cfg │ │ │ ├── loader │ │ │ │ ├── entries │ │ │ │ │ ├── archiso-aui-0-x86_64-linux.conf │ │ │ │ │ ├── archiso-x86_64-linux.conf │ │ │ │ │ ├── archiso_2_console-x86_64-linux.conf │ │ │ │ │ ├── archiso_3_ram-x86_64-linux.conf │ │ │ │ │ └── archiso_5_memtest86-x86_64-linux.conf │ │ │ │ └── loader.conf │ │ │ ├── refind │ │ │ │ ├── refind.conf │ │ │ │ └── refind_linux.conf │ │ │ └── syslinux │ │ │ │ ├── archiso_pxe-linux.cfg │ │ │ │ ├── archiso_sys-linux.cfg │ │ │ │ ├── archiso_sys.cfg │ │ │ │ └── archiso_tail.cfg │ │ ├── img │ │ │ ├── grub │ │ │ │ └── grub.cfg │ │ │ ├── loader │ │ │ │ ├── entries │ │ │ │ │ ├── archiso-aui-0-x86_64-linux.conf │ │ │ │ │ ├── archiso-aui-1-x86_64-linux.conf │ │ │ │ │ ├── archiso-x86_64-linux.conf │ │ │ │ │ ├── archiso_2_console-x86_64-linux.conf │ │ │ │ │ ├── archiso_3_ram-x86_64-linux.conf │ │ │ │ │ └── archiso_5_memtest86-x86_64-linux.conf │ │ │ │ └── loader.conf │ │ │ ├── persistent │ │ │ │ └── x86_64 │ │ │ │ │ └── upperdir │ │ │ │ │ └── etc │ │ │ │ │ └── fstab │ │ │ └── syslinux │ │ │ │ ├── archiso_pxe-linux.cfg │ │ │ │ ├── archiso_sys-linux.cfg │ │ │ │ └── archiso_sys.cfg │ │ ├── install │ │ │ ├── auirootfs │ │ │ │ └── etc │ │ │ │ │ ├── fstab │ │ │ │ │ ├── initcpio │ │ │ │ │ ├── hooks │ │ │ │ │ │ └── bcachefs │ │ │ │ │ └── install │ │ │ │ │ │ └── bcachefs │ │ │ │ │ ├── mkinitcpio.conf │ │ │ │ │ ├── mkinitcpio.d │ │ │ │ │ └── linux.preset │ │ │ │ │ └── samba │ │ │ │ │ └── smb.conf │ │ │ ├── grub │ │ │ │ └── grub.cfg │ │ │ ├── loader │ │ │ │ ├── entries │ │ │ │ │ ├── archiso-aui-0-x86_64-linux.conf │ │ │ │ │ ├── archiso_4_refind-x86_64-linux.conf │ │ │ │ │ └── archiso_5_memtest86-x86_64-linux.conf │ │ │ │ └── loader.conf │ │ │ ├── refind │ │ │ │ ├── refind.conf │ │ │ │ └── refind_linux.conf │ │ │ └── syslinux │ │ │ │ ├── archiso_pxe-linux.cfg │ │ │ │ ├── archiso_sys-linux.cfg │ │ │ │ ├── archiso_sys.cfg │ │ │ │ └── archiso_tail.cfg │ │ ├── liveusb │ │ │ ├── grub │ │ │ │ └── grub.cfg │ │ │ ├── loader │ │ │ │ ├── entries │ │ │ │ │ ├── archiso-aui-0-x86_64-linux.conf │ │ │ │ │ ├── archiso-aui-1-x86_64-linux.conf │ │ │ │ │ ├── archiso-x86_64-linux.conf │ │ │ │ │ ├── archiso_2_console-x86_64-linux.conf │ │ │ │ │ ├── archiso_3_ram-x86_64-linux.conf │ │ │ │ │ └── archiso_5_memtest86-x86_64-linux.conf │ │ │ │ └── loader.conf │ │ │ ├── persistent │ │ │ │ └── x86_64 │ │ │ │ │ └── upperdir │ │ │ │ │ └── etc │ │ │ │ │ ├── fstab │ │ │ │ │ ├── initcpio │ │ │ │ │ ├── hooks │ │ │ │ │ │ └── bcachefs │ │ │ │ │ └── install │ │ │ │ │ │ └── bcachefs │ │ │ │ │ ├── mkinitcpio.d │ │ │ │ │ └── linux.preset │ │ │ │ │ ├── samba │ │ │ │ │ └── smb.conf │ │ │ │ │ └── systemd │ │ │ │ │ ├── logind.conf.d │ │ │ │ │ └── do-not-suspend.conf │ │ │ │ │ └── system │ │ │ │ │ ├── etc-pacman.d-gnupg.mount │ │ │ │ │ ├── pacman-init.service │ │ │ │ │ └── pacman-init.service.d │ │ │ │ │ └── override.conf │ │ │ ├── refind │ │ │ │ └── refind.conf │ │ │ └── syslinux │ │ │ │ ├── archiso_pxe-linux.cfg │ │ │ │ ├── archiso_sys-linux.cfg │ │ │ │ ├── archiso_sys.cfg │ │ │ │ └── archiso_tail.cfg │ │ └── mediumdef.sh │ ├── efiboot │ │ ├── grub │ │ │ ├── grub.cfg │ │ │ └── loopback.cfg │ │ ├── loader │ │ │ ├── entries │ │ │ │ ├── archiso-x86_64-linux.conf │ │ │ │ ├── archiso_2_console-x86_64-linux.conf │ │ │ │ ├── archiso_3_ram-x86_64-linux.conf │ │ │ │ ├── archiso_4_refind-x86_64-linux.conf │ │ │ │ └── archiso_5_memtest86-x86_64-linux.conf │ │ │ └── loader.conf │ │ └── refind │ │ │ ├── refind-dvd.conf │ │ │ └── refind-usb.conf │ ├── lang │ │ ├── cs_CZ │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── de_DE │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── el_GR │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── es_ES │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── fr_FR │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── hu_HU │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── it_IT │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── nl_NL │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── pl_PL │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── pt_PT │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── ro_RO │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── ru_RU │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── sr_RS@latin │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── tr_TR │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ └── uk_UA │ │ │ ├── airootfs │ │ │ ├── etc │ │ │ │ ├── X11 │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ ├── environment │ │ │ │ ├── locale.conf │ │ │ │ └── vconsole.conf │ │ │ └── root │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ ├── packages.x86_64 │ ├── pacman-testing.conf │ ├── pacman.conf │ ├── profiledef.sh │ └── syslinux │ │ ├── archiso_head.cfg │ │ ├── archiso_pxe-linux.cfg │ │ ├── archiso_pxe.cfg │ │ ├── archiso_sys-linux.cfg │ │ ├── archiso_sys.cfg │ │ ├── archiso_tail.cfg │ │ ├── splash.png │ │ └── syslinux.cfg ├── gnome │ ├── airootfs-options │ │ └── graphics │ │ │ ├── nvidia │ │ │ ├── nvidia-open │ │ │ └── etc │ │ │ │ └── modprobe.d │ │ │ │ ├── blacklist-nouveau.conf │ │ │ │ └── nvidia-drm.conf │ │ │ ├── optimus-nvidia │ │ │ └── etc │ │ │ │ ├── lightdm │ │ │ │ └── display_setup.sh │ │ │ │ └── modprobe.d │ │ │ │ ├── blacklist-nouveau.conf │ │ │ │ └── nvidia-drm.conf │ │ │ └── optimus-prime │ ├── airootfs │ │ ├── etc │ │ │ ├── X11 │ │ │ │ └── xorg.conf.d │ │ │ │ │ └── 30-touchpad.conf │ │ │ ├── hostname │ │ │ ├── hosts │ │ │ ├── initcpio │ │ │ │ └── hooks │ │ │ │ │ └── archiso │ │ │ ├── locale.conf │ │ │ ├── localtime │ │ │ ├── machine-id │ │ │ ├── mkinitcpio.conf │ │ │ ├── mkinitcpio.d │ │ │ │ └── linux.preset │ │ │ ├── modprobe.d │ │ │ │ └── broadcom-wl.conf │ │ │ ├── motd │ │ │ ├── passwd │ │ │ ├── resolv.conf │ │ │ ├── samba │ │ │ │ └── smb.conf │ │ │ ├── shadow │ │ │ ├── skel │ │ │ │ ├── .Xresources │ │ │ │ ├── .fehbg │ │ │ │ ├── .firstboot │ │ │ │ ├── .local │ │ │ │ │ └── share │ │ │ │ │ │ └── wallpapers │ │ │ │ │ │ └── archlinux-simplyblack.png │ │ │ │ ├── .pam_environment │ │ │ │ ├── .xsession │ │ │ │ └── .zshrc.local │ │ │ ├── ssh │ │ │ │ └── sshd_config.d │ │ │ │ │ └── 10-archiso.conf │ │ │ ├── systemd │ │ │ │ ├── journald.conf.d │ │ │ │ │ └── volatile-storage.conf │ │ │ │ ├── logind.conf.d │ │ │ │ │ └── do-not-suspend.conf │ │ │ │ ├── network │ │ │ │ │ ├── 20-ethernet.network │ │ │ │ │ ├── 20-wlan.network │ │ │ │ │ └── 20-wwan.network │ │ │ │ ├── networkd.conf.d │ │ │ │ │ └── ipv6-privacy-extensions.conf │ │ │ │ ├── system-preset │ │ │ │ │ └── 10-aui-default.preset │ │ │ │ └── system │ │ │ │ │ ├── choose-mirror.service │ │ │ │ │ ├── dbus-org.freedesktop.ModemManager1.service │ │ │ │ │ ├── dbus-org.freedesktop.resolve1.service │ │ │ │ │ ├── dbus-org.freedesktop.timesync1.service │ │ │ │ │ ├── etc-pacman.d-gnupg.mount │ │ │ │ │ ├── getty@tty1.service.d │ │ │ │ │ └── autologin.conf │ │ │ │ │ ├── multi-user.target.wants │ │ │ │ │ ├── ModemManager.service │ │ │ │ │ ├── choose-mirror.service │ │ │ │ │ ├── hv_fcopy_daemon.service │ │ │ │ │ ├── hv_kvp_daemon.service │ │ │ │ │ ├── hv_vss_daemon.service │ │ │ │ │ ├── pacman-init.service │ │ │ │ │ ├── reflector.service │ │ │ │ │ ├── systemd-resolved.service │ │ │ │ │ ├── vboxservice.service │ │ │ │ │ ├── vmtoolsd.service │ │ │ │ │ └── vmware-vmblock-fuse.service │ │ │ │ │ ├── pacman-init.service │ │ │ │ │ ├── reflector.service.d │ │ │ │ │ └── archiso.conf │ │ │ │ │ ├── socket.target.wants │ │ │ │ │ └── pcscd.socket │ │ │ │ │ ├── sysinit.target.wants │ │ │ │ │ ├── systemd-time-wait-sync.service │ │ │ │ │ └── systemd-timesyncd.service │ │ │ │ │ └── systemd-networkd-wait-online.service.d │ │ │ │ │ └── wait-for-only-one-interface.conf │ │ │ ├── vconsole.conf │ │ │ └── xdg │ │ │ │ └── reflector │ │ │ │ └── reflector.conf │ │ ├── root │ │ │ ├── .automated_script.sh │ │ │ ├── .config │ │ │ │ └── user-dirs.conf │ │ │ ├── .gnupg │ │ │ │ └── scdaemon.conf │ │ │ ├── .zlogin │ │ │ └── customize_airootfs.sh │ │ └── usr │ │ │ └── local │ │ │ └── bin │ │ │ ├── Installation_guide │ │ │ └── choose-mirror │ ├── bootstrap_packages.x86_64 │ ├── drive │ │ ├── hybrid │ │ │ ├── auirootfs │ │ │ │ └── etc │ │ │ │ │ ├── fstab │ │ │ │ │ ├── initcpio │ │ │ │ │ ├── hooks │ │ │ │ │ │ └── bcachefs │ │ │ │ │ └── install │ │ │ │ │ │ └── bcachefs │ │ │ │ │ ├── mkinitcpio.conf │ │ │ │ │ ├── mkinitcpio.d │ │ │ │ │ └── linux.preset │ │ │ │ │ └── samba │ │ │ │ │ └── smb.conf │ │ │ ├── grub │ │ │ │ └── grub.cfg │ │ │ ├── loader │ │ │ │ ├── entries │ │ │ │ │ ├── archiso-aui-0-x86_64-linux.conf │ │ │ │ │ ├── archiso-x86_64-linux.conf │ │ │ │ │ ├── archiso_2_console-x86_64-linux.conf │ │ │ │ │ ├── archiso_3_ram-x86_64-linux.conf │ │ │ │ │ └── archiso_5_memtest86-x86_64-linux.conf │ │ │ │ └── loader.conf │ │ │ ├── refind │ │ │ │ ├── refind.conf │ │ │ │ └── refind_linux.conf │ │ │ └── syslinux │ │ │ │ ├── archiso_pxe-linux.cfg │ │ │ │ ├── archiso_sys-linux.cfg │ │ │ │ ├── archiso_sys.cfg │ │ │ │ └── archiso_tail.cfg │ │ ├── img │ │ │ ├── grub │ │ │ │ └── grub.cfg │ │ │ ├── loader │ │ │ │ ├── entries │ │ │ │ │ ├── archiso-aui-0-x86_64-linux.conf │ │ │ │ │ ├── archiso-aui-1-x86_64-linux.conf │ │ │ │ │ ├── archiso-x86_64-linux.conf │ │ │ │ │ ├── archiso_2_console-x86_64-linux.conf │ │ │ │ │ ├── archiso_3_ram-x86_64-linux.conf │ │ │ │ │ └── archiso_5_memtest86-x86_64-linux.conf │ │ │ │ └── loader.conf │ │ │ ├── persistent │ │ │ │ └── x86_64 │ │ │ │ │ └── upperdir │ │ │ │ │ └── etc │ │ │ │ │ └── fstab │ │ │ └── syslinux │ │ │ │ ├── archiso_pxe-linux.cfg │ │ │ │ ├── archiso_sys-linux.cfg │ │ │ │ └── archiso_sys.cfg │ │ ├── install │ │ │ ├── auirootfs │ │ │ │ └── etc │ │ │ │ │ ├── fstab │ │ │ │ │ ├── initcpio │ │ │ │ │ ├── hooks │ │ │ │ │ │ └── bcachefs │ │ │ │ │ └── install │ │ │ │ │ │ └── bcachefs │ │ │ │ │ ├── mkinitcpio.conf │ │ │ │ │ ├── mkinitcpio.d │ │ │ │ │ └── linux.preset │ │ │ │ │ └── samba │ │ │ │ │ └── smb.conf │ │ │ ├── grub │ │ │ │ └── grub.cfg │ │ │ ├── loader │ │ │ │ ├── entries │ │ │ │ │ ├── archiso-aui-0-x86_64-linux.conf │ │ │ │ │ ├── archiso_4_refind-x86_64-linux.conf │ │ │ │ │ └── archiso_5_memtest86-x86_64-linux.conf │ │ │ │ └── loader.conf │ │ │ ├── refind │ │ │ │ ├── refind.conf │ │ │ │ └── refind_linux.conf │ │ │ └── syslinux │ │ │ │ ├── archiso_pxe-linux.cfg │ │ │ │ ├── archiso_sys-linux.cfg │ │ │ │ ├── archiso_sys.cfg │ │ │ │ └── archiso_tail.cfg │ │ ├── liveusb │ │ │ ├── grub │ │ │ │ └── grub.cfg │ │ │ ├── loader │ │ │ │ ├── entries │ │ │ │ │ ├── archiso-aui-0-x86_64-linux.conf │ │ │ │ │ ├── archiso-aui-1-x86_64-linux.conf │ │ │ │ │ ├── archiso-x86_64-linux.conf │ │ │ │ │ ├── archiso_2_console-x86_64-linux.conf │ │ │ │ │ ├── archiso_3_ram-x86_64-linux.conf │ │ │ │ │ └── archiso_5_memtest86-x86_64-linux.conf │ │ │ │ └── loader.conf │ │ │ ├── persistent │ │ │ │ └── x86_64 │ │ │ │ │ └── upperdir │ │ │ │ │ └── etc │ │ │ │ │ ├── fstab │ │ │ │ │ ├── initcpio │ │ │ │ │ ├── hooks │ │ │ │ │ │ └── bcachefs │ │ │ │ │ └── install │ │ │ │ │ │ └── bcachefs │ │ │ │ │ ├── mkinitcpio.d │ │ │ │ │ └── linux.preset │ │ │ │ │ ├── samba │ │ │ │ │ └── smb.conf │ │ │ │ │ └── systemd │ │ │ │ │ ├── logind.conf.d │ │ │ │ │ └── do-not-suspend.conf │ │ │ │ │ └── system │ │ │ │ │ ├── etc-pacman.d-gnupg.mount │ │ │ │ │ ├── pacman-init.service │ │ │ │ │ └── pacman-init.service.d │ │ │ │ │ └── override.conf │ │ │ ├── refind │ │ │ │ └── refind.conf │ │ │ └── syslinux │ │ │ │ ├── archiso_pxe-linux.cfg │ │ │ │ ├── archiso_sys-linux.cfg │ │ │ │ ├── archiso_sys.cfg │ │ │ │ └── archiso_tail.cfg │ │ └── mediumdef.sh │ ├── efiboot │ │ ├── grub │ │ │ ├── grub.cfg │ │ │ └── loopback.cfg │ │ ├── loader │ │ │ ├── entries │ │ │ │ ├── archiso-x86_64-linux.conf │ │ │ │ ├── archiso_2_console-x86_64-linux.conf │ │ │ │ ├── archiso_3_ram-x86_64-linux.conf │ │ │ │ ├── archiso_4_refind-x86_64-linux.conf │ │ │ │ └── archiso_5_memtest86-x86_64-linux.conf │ │ │ └── loader.conf │ │ └── refind │ │ │ ├── refind-dvd.conf │ │ │ └── refind-usb.conf │ ├── lang │ │ ├── cs_CZ │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── de_DE │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── el_GR │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── es_ES │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── fr_FR │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── hu_HU │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── it_IT │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── nl_NL │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── pl_PL │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── pt_PT │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── ro_RO │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── ru_RU │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── sr_RS@latin │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── tr_TR │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ └── uk_UA │ │ │ ├── airootfs │ │ │ ├── etc │ │ │ │ ├── X11 │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ ├── environment │ │ │ │ ├── locale.conf │ │ │ │ └── vconsole.conf │ │ │ └── root │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ ├── packages.x86_64 │ ├── pacman-testing.conf │ ├── pacman.conf │ ├── profiledef.sh │ └── syslinux │ │ ├── archiso_head.cfg │ │ ├── archiso_pxe-linux.cfg │ │ ├── archiso_pxe.cfg │ │ ├── archiso_sys-linux.cfg │ │ ├── archiso_sys.cfg │ │ ├── archiso_tail.cfg │ │ ├── splash.png │ │ └── syslinux.cfg ├── i3 │ ├── airootfs-options │ │ └── graphics │ │ │ ├── nvidia │ │ │ ├── nvidia-open │ │ │ └── etc │ │ │ │ └── modprobe.d │ │ │ │ ├── blacklist-nouveau.conf │ │ │ │ └── nvidia-drm.conf │ │ │ ├── optimus-nvidia │ │ │ └── etc │ │ │ │ ├── lightdm │ │ │ │ └── display_setup.sh │ │ │ │ └── modprobe.d │ │ │ │ ├── blacklist-nouveau.conf │ │ │ │ └── nvidia-drm.conf │ │ │ └── optimus-prime │ ├── airootfs │ │ ├── etc │ │ │ ├── X11 │ │ │ │ └── xorg.conf.d │ │ │ │ │ └── 30-touchpad.conf │ │ │ ├── hostname │ │ │ ├── hosts │ │ │ ├── initcpio │ │ │ │ └── hooks │ │ │ │ │ └── archiso │ │ │ ├── locale.conf │ │ │ ├── localtime │ │ │ ├── machine-id │ │ │ ├── mkinitcpio.conf │ │ │ ├── mkinitcpio.d │ │ │ │ └── linux.preset │ │ │ ├── modprobe.d │ │ │ │ └── broadcom-wl.conf │ │ │ ├── motd │ │ │ ├── passwd │ │ │ ├── resolv.conf │ │ │ ├── shadow │ │ │ ├── skel │ │ │ │ ├── .Xresources │ │ │ │ ├── .fehbg │ │ │ │ ├── .firstboot │ │ │ │ ├── .local │ │ │ │ │ └── share │ │ │ │ │ │ └── wallpapers │ │ │ │ │ │ └── archlinux-simplyblack.png │ │ │ │ ├── .xsession │ │ │ │ └── .zshrc.local │ │ │ ├── ssh │ │ │ │ └── sshd_config.d │ │ │ │ │ └── 10-archiso.conf │ │ │ ├── systemd │ │ │ │ ├── journald.conf.d │ │ │ │ │ └── volatile-storage.conf │ │ │ │ ├── logind.conf.d │ │ │ │ │ └── do-not-suspend.conf │ │ │ │ ├── network │ │ │ │ │ ├── 20-ethernet.network │ │ │ │ │ ├── 20-wlan.network │ │ │ │ │ └── 20-wwan.network │ │ │ │ ├── networkd.conf.d │ │ │ │ │ └── ipv6-privacy-extensions.conf │ │ │ │ ├── system-preset │ │ │ │ │ └── 10-aui-default.preset │ │ │ │ └── system │ │ │ │ │ ├── choose-mirror.service │ │ │ │ │ ├── dbus-org.freedesktop.ModemManager1.service │ │ │ │ │ ├── dbus-org.freedesktop.resolve1.service │ │ │ │ │ ├── dbus-org.freedesktop.timesync1.service │ │ │ │ │ ├── etc-pacman.d-gnupg.mount │ │ │ │ │ ├── getty@tty1.service.d │ │ │ │ │ └── autologin.conf │ │ │ │ │ ├── multi-user.target.wants │ │ │ │ │ ├── ModemManager.service │ │ │ │ │ ├── choose-mirror.service │ │ │ │ │ ├── hv_fcopy_daemon.service │ │ │ │ │ ├── hv_kvp_daemon.service │ │ │ │ │ ├── hv_vss_daemon.service │ │ │ │ │ ├── pacman-init.service │ │ │ │ │ ├── reflector.service │ │ │ │ │ ├── systemd-resolved.service │ │ │ │ │ ├── vboxservice.service │ │ │ │ │ ├── vmtoolsd.service │ │ │ │ │ └── vmware-vmblock-fuse.service │ │ │ │ │ ├── pacman-init.service │ │ │ │ │ ├── reflector.service.d │ │ │ │ │ └── archiso.conf │ │ │ │ │ ├── socket.target.wants │ │ │ │ │ └── pcscd.socket │ │ │ │ │ ├── sysinit.target.wants │ │ │ │ │ ├── systemd-time-wait-sync.service │ │ │ │ │ └── systemd-timesyncd.service │ │ │ │ │ └── systemd-networkd-wait-online.service.d │ │ │ │ │ └── wait-for-only-one-interface.conf │ │ │ ├── vconsole.conf │ │ │ └── xdg │ │ │ │ └── reflector │ │ │ │ └── reflector.conf │ │ ├── root │ │ │ ├── .automated_script.sh │ │ │ ├── .config │ │ │ │ └── user-dirs.conf │ │ │ ├── .gnupg │ │ │ │ └── scdaemon.conf │ │ │ ├── .zlogin │ │ │ └── customize_airootfs.sh │ │ └── usr │ │ │ └── local │ │ │ └── bin │ │ │ ├── Installation_guide │ │ │ └── choose-mirror │ ├── bootstrap_packages.x86_64 │ ├── drive │ │ ├── hybrid │ │ │ ├── auirootfs │ │ │ │ └── etc │ │ │ │ │ ├── fstab │ │ │ │ │ ├── initcpio │ │ │ │ │ ├── hooks │ │ │ │ │ │ └── bcachefs │ │ │ │ │ └── install │ │ │ │ │ │ └── bcachefs │ │ │ │ │ ├── mkinitcpio.conf │ │ │ │ │ └── mkinitcpio.d │ │ │ │ │ └── linux.preset │ │ │ ├── grub │ │ │ │ └── grub.cfg │ │ │ ├── loader │ │ │ │ ├── entries │ │ │ │ │ ├── archiso-aui-0-x86_64-linux.conf │ │ │ │ │ ├── archiso-x86_64-linux.conf │ │ │ │ │ ├── archiso_2_console-x86_64-linux.conf │ │ │ │ │ ├── archiso_3_ram-x86_64-linux.conf │ │ │ │ │ └── archiso_5_memtest86-x86_64-linux.conf │ │ │ │ └── loader.conf │ │ │ ├── refind │ │ │ │ ├── refind.conf │ │ │ │ └── refind_linux.conf │ │ │ └── syslinux │ │ │ │ ├── archiso_pxe-linux.cfg │ │ │ │ ├── archiso_sys-linux.cfg │ │ │ │ ├── archiso_sys.cfg │ │ │ │ └── archiso_tail.cfg │ │ ├── img │ │ │ ├── grub │ │ │ │ └── grub.cfg │ │ │ ├── loader │ │ │ │ ├── entries │ │ │ │ │ ├── archiso-aui-0-x86_64-linux.conf │ │ │ │ │ ├── archiso-aui-1-x86_64-linux.conf │ │ │ │ │ ├── archiso-x86_64-linux.conf │ │ │ │ │ ├── archiso_2_console-x86_64-linux.conf │ │ │ │ │ ├── archiso_3_ram-x86_64-linux.conf │ │ │ │ │ └── archiso_5_memtest86-x86_64-linux.conf │ │ │ │ └── loader.conf │ │ │ ├── persistent │ │ │ │ └── x86_64 │ │ │ │ │ └── upperdir │ │ │ │ │ └── etc │ │ │ │ │ └── fstab │ │ │ └── syslinux │ │ │ │ ├── archiso_pxe-linux.cfg │ │ │ │ ├── archiso_sys-linux.cfg │ │ │ │ └── archiso_sys.cfg │ │ ├── install │ │ │ ├── auirootfs │ │ │ │ └── etc │ │ │ │ │ ├── fstab │ │ │ │ │ ├── initcpio │ │ │ │ │ ├── hooks │ │ │ │ │ │ └── bcachefs │ │ │ │ │ └── install │ │ │ │ │ │ └── bcachefs │ │ │ │ │ ├── mkinitcpio.conf │ │ │ │ │ └── mkinitcpio.d │ │ │ │ │ └── linux.preset │ │ │ ├── grub │ │ │ │ └── grub.cfg │ │ │ ├── loader │ │ │ │ ├── entries │ │ │ │ │ ├── archiso-aui-0-x86_64-linux.conf │ │ │ │ │ ├── archiso_4_refind-x86_64-linux.conf │ │ │ │ │ └── archiso_5_memtest86-x86_64-linux.conf │ │ │ │ └── loader.conf │ │ │ ├── refind │ │ │ │ ├── refind.conf │ │ │ │ └── refind_linux.conf │ │ │ └── syslinux │ │ │ │ ├── archiso_pxe-linux.cfg │ │ │ │ ├── archiso_sys-linux.cfg │ │ │ │ ├── archiso_sys.cfg │ │ │ │ └── archiso_tail.cfg │ │ ├── liveusb │ │ │ ├── grub │ │ │ │ └── grub.cfg │ │ │ ├── loader │ │ │ │ ├── entries │ │ │ │ │ ├── archiso-aui-0-x86_64-linux.conf │ │ │ │ │ ├── archiso-aui-1-x86_64-linux.conf │ │ │ │ │ ├── archiso-x86_64-linux.conf │ │ │ │ │ ├── archiso_2_console-x86_64-linux.conf │ │ │ │ │ ├── archiso_3_ram-x86_64-linux.conf │ │ │ │ │ └── archiso_5_memtest86-x86_64-linux.conf │ │ │ │ └── loader.conf │ │ │ ├── persistent │ │ │ │ └── x86_64 │ │ │ │ │ └── upperdir │ │ │ │ │ └── etc │ │ │ │ │ ├── fstab │ │ │ │ │ ├── initcpio │ │ │ │ │ ├── hooks │ │ │ │ │ │ └── bcachefs │ │ │ │ │ └── install │ │ │ │ │ │ └── bcachefs │ │ │ │ │ ├── mkinitcpio.d │ │ │ │ │ └── linux.preset │ │ │ │ │ └── systemd │ │ │ │ │ ├── logind.conf.d │ │ │ │ │ └── do-not-suspend.conf │ │ │ │ │ └── system │ │ │ │ │ ├── etc-pacman.d-gnupg.mount │ │ │ │ │ ├── pacman-init.service │ │ │ │ │ └── pacman-init.service.d │ │ │ │ │ └── override.conf │ │ │ ├── refind │ │ │ │ └── refind.conf │ │ │ └── syslinux │ │ │ │ ├── archiso_pxe-linux.cfg │ │ │ │ ├── archiso_sys-linux.cfg │ │ │ │ ├── archiso_sys.cfg │ │ │ │ └── archiso_tail.cfg │ │ └── mediumdef.sh │ ├── efiboot │ │ ├── grub │ │ │ ├── grub.cfg │ │ │ └── loopback.cfg │ │ ├── loader │ │ │ ├── entries │ │ │ │ ├── archiso-x86_64-linux.conf │ │ │ │ ├── archiso_2_console-x86_64-linux.conf │ │ │ │ ├── archiso_3_ram-x86_64-linux.conf │ │ │ │ ├── archiso_4_refind-x86_64-linux.conf │ │ │ │ └── archiso_5_memtest86-x86_64-linux.conf │ │ │ └── loader.conf │ │ └── refind │ │ │ ├── refind-dvd.conf │ │ │ └── refind-usb.conf │ ├── lang │ │ ├── cs_CZ │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── de_DE │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── el_GR │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── es_ES │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── fr_FR │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── hu_HU │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── it_IT │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── nl_NL │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── pl_PL │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── pt_PT │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── ro_RO │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── ru_RU │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── sr_RS@latin │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── tr_TR │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ └── uk_UA │ │ │ ├── airootfs │ │ │ ├── etc │ │ │ │ ├── X11 │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ ├── environment │ │ │ │ ├── locale.conf │ │ │ │ └── vconsole.conf │ │ │ └── root │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ ├── packages.x86_64 │ ├── pacman-testing.conf │ ├── pacman.conf │ ├── profiledef.sh │ └── syslinux │ │ ├── archiso_head.cfg │ │ ├── archiso_pxe-linux.cfg │ │ ├── archiso_pxe.cfg │ │ ├── archiso_sys-linux.cfg │ │ ├── archiso_sys.cfg │ │ ├── archiso_tail.cfg │ │ ├── splash.png │ │ └── syslinux.cfg ├── kde │ ├── airootfs-options │ │ └── graphics │ │ │ ├── nvidia │ │ │ ├── nvidia-open │ │ │ └── etc │ │ │ │ └── modprobe.d │ │ │ │ ├── blacklist-nouveau.conf │ │ │ │ └── nvidia-drm.conf │ │ │ ├── optimus-nvidia │ │ │ └── etc │ │ │ │ ├── modprobe.d │ │ │ │ ├── blacklist-nouveau.conf │ │ │ │ └── nvidia-drm.conf │ │ │ │ ├── sddm.conf.d │ │ │ │ └── X11.conf │ │ │ │ └── sddm │ │ │ │ └── scripts │ │ │ │ └── Xsetup │ │ │ └── optimus-prime │ ├── airootfs │ │ ├── etc │ │ │ ├── X11 │ │ │ │ └── xorg.conf.d │ │ │ │ │ └── 30-touchpad.conf │ │ │ ├── hostname │ │ │ ├── hosts │ │ │ ├── initcpio │ │ │ │ └── hooks │ │ │ │ │ └── archiso │ │ │ ├── locale.conf │ │ │ ├── localtime │ │ │ ├── machine-id │ │ │ ├── mkinitcpio.conf │ │ │ ├── mkinitcpio.d │ │ │ │ └── linux.preset │ │ │ ├── modprobe.d │ │ │ │ └── broadcom-wl.conf │ │ │ ├── motd │ │ │ ├── passwd │ │ │ ├── resolv.conf │ │ │ ├── samba │ │ │ │ └── smb.conf │ │ │ ├── sddm.conf.d │ │ │ │ ├── autologin.conf │ │ │ │ └── settings.conf │ │ │ ├── shadow │ │ │ ├── skel │ │ │ │ ├── .Xresources │ │ │ │ ├── .fehbg │ │ │ │ ├── .firstboot │ │ │ │ ├── .local │ │ │ │ │ └── share │ │ │ │ │ │ └── wallpapers │ │ │ │ │ │ └── archlinux-simplyblack.png │ │ │ │ ├── .pam_environment │ │ │ │ ├── .xsession │ │ │ │ └── .zshrc.local │ │ │ ├── ssh │ │ │ │ └── sshd_config.d │ │ │ │ │ └── 10-archiso.conf │ │ │ ├── systemd │ │ │ │ ├── journald.conf.d │ │ │ │ │ └── volatile-storage.conf │ │ │ │ ├── logind.conf.d │ │ │ │ │ └── do-not-suspend.conf │ │ │ │ ├── network │ │ │ │ │ ├── 20-ethernet.network │ │ │ │ │ ├── 20-wlan.network │ │ │ │ │ └── 20-wwan.network │ │ │ │ ├── networkd.conf.d │ │ │ │ │ └── ipv6-privacy-extensions.conf │ │ │ │ ├── system-preset │ │ │ │ │ └── 10-aui-default.preset │ │ │ │ └── system │ │ │ │ │ ├── choose-mirror.service │ │ │ │ │ ├── dbus-org.freedesktop.ModemManager1.service │ │ │ │ │ ├── dbus-org.freedesktop.resolve1.service │ │ │ │ │ ├── dbus-org.freedesktop.timesync1.service │ │ │ │ │ ├── etc-pacman.d-gnupg.mount │ │ │ │ │ ├── getty@tty1.service.d │ │ │ │ │ └── autologin.conf │ │ │ │ │ ├── multi-user.target.wants │ │ │ │ │ ├── ModemManager.service │ │ │ │ │ ├── choose-mirror.service │ │ │ │ │ ├── hv_fcopy_daemon.service │ │ │ │ │ ├── hv_kvp_daemon.service │ │ │ │ │ ├── hv_vss_daemon.service │ │ │ │ │ ├── pacman-init.service │ │ │ │ │ ├── reflector.service │ │ │ │ │ ├── systemd-resolved.service │ │ │ │ │ ├── vboxservice.service │ │ │ │ │ ├── vmtoolsd.service │ │ │ │ │ └── vmware-vmblock-fuse.service │ │ │ │ │ ├── pacman-init.service │ │ │ │ │ ├── reflector.service.d │ │ │ │ │ └── archiso.conf │ │ │ │ │ ├── socket.target.wants │ │ │ │ │ └── pcscd.socket │ │ │ │ │ ├── sysinit.target.wants │ │ │ │ │ ├── systemd-time-wait-sync.service │ │ │ │ │ └── systemd-timesyncd.service │ │ │ │ │ └── systemd-networkd-wait-online.service.d │ │ │ │ │ └── wait-for-only-one-interface.conf │ │ │ ├── vconsole.conf │ │ │ └── xdg │ │ │ │ ├── kdesurc │ │ │ │ └── reflector │ │ │ │ └── reflector.conf │ │ ├── root │ │ │ ├── .automated_script.sh │ │ │ ├── .config │ │ │ │ └── user-dirs.conf │ │ │ ├── .gnupg │ │ │ │ └── scdaemon.conf │ │ │ ├── .zlogin │ │ │ └── customize_airootfs.sh │ │ └── usr │ │ │ └── local │ │ │ └── bin │ │ │ ├── Installation_guide │ │ │ └── choose-mirror │ ├── bootstrap_packages.x86_64 │ ├── drive │ │ ├── hybrid │ │ │ ├── auirootfs │ │ │ │ └── etc │ │ │ │ │ ├── fstab │ │ │ │ │ ├── initcpio │ │ │ │ │ ├── hooks │ │ │ │ │ │ └── bcachefs │ │ │ │ │ └── install │ │ │ │ │ │ └── bcachefs │ │ │ │ │ ├── mkinitcpio.conf │ │ │ │ │ ├── mkinitcpio.d │ │ │ │ │ └── linux.preset │ │ │ │ │ └── samba │ │ │ │ │ └── smb.conf │ │ │ ├── grub │ │ │ │ └── grub.cfg │ │ │ ├── loader │ │ │ │ ├── entries │ │ │ │ │ ├── archiso-aui-0-x86_64-linux.conf │ │ │ │ │ ├── archiso-x86_64-linux.conf │ │ │ │ │ ├── archiso_2_console-x86_64-linux.conf │ │ │ │ │ ├── archiso_3_ram-x86_64-linux.conf │ │ │ │ │ └── archiso_5_memtest86-x86_64-linux.conf │ │ │ │ └── loader.conf │ │ │ ├── refind │ │ │ │ ├── refind.conf │ │ │ │ └── refind_linux.conf │ │ │ └── syslinux │ │ │ │ ├── archiso_pxe-linux.cfg │ │ │ │ ├── archiso_sys-linux.cfg │ │ │ │ ├── archiso_sys.cfg │ │ │ │ └── archiso_tail.cfg │ │ ├── img │ │ │ ├── grub │ │ │ │ └── grub.cfg │ │ │ ├── loader │ │ │ │ ├── entries │ │ │ │ │ ├── archiso-aui-0-x86_64-linux.conf │ │ │ │ │ ├── archiso-aui-1-x86_64-linux.conf │ │ │ │ │ ├── archiso-x86_64-linux.conf │ │ │ │ │ ├── archiso_2_console-x86_64-linux.conf │ │ │ │ │ ├── archiso_3_ram-x86_64-linux.conf │ │ │ │ │ └── archiso_5_memtest86-x86_64-linux.conf │ │ │ │ └── loader.conf │ │ │ ├── persistent │ │ │ │ └── x86_64 │ │ │ │ │ └── upperdir │ │ │ │ │ └── etc │ │ │ │ │ └── fstab │ │ │ └── syslinux │ │ │ │ ├── archiso_pxe-linux.cfg │ │ │ │ ├── archiso_sys-linux.cfg │ │ │ │ └── archiso_sys.cfg │ │ ├── install │ │ │ ├── auirootfs │ │ │ │ └── etc │ │ │ │ │ ├── fstab │ │ │ │ │ ├── initcpio │ │ │ │ │ ├── hooks │ │ │ │ │ │ └── bcachefs │ │ │ │ │ └── install │ │ │ │ │ │ └── bcachefs │ │ │ │ │ ├── mkinitcpio.conf │ │ │ │ │ ├── mkinitcpio.d │ │ │ │ │ └── linux.preset │ │ │ │ │ └── samba │ │ │ │ │ └── smb.conf │ │ │ ├── grub │ │ │ │ └── grub.cfg │ │ │ ├── loader │ │ │ │ ├── entries │ │ │ │ │ ├── archiso-aui-0-x86_64-linux.conf │ │ │ │ │ ├── archiso_4_refind-x86_64-linux.conf │ │ │ │ │ └── archiso_5_memtest86-x86_64-linux.conf │ │ │ │ └── loader.conf │ │ │ ├── refind │ │ │ │ ├── refind.conf │ │ │ │ └── refind_linux.conf │ │ │ └── syslinux │ │ │ │ ├── archiso_pxe-linux.cfg │ │ │ │ ├── archiso_sys-linux.cfg │ │ │ │ ├── archiso_sys.cfg │ │ │ │ └── archiso_tail.cfg │ │ ├── liveusb │ │ │ ├── grub │ │ │ │ └── grub.cfg │ │ │ ├── loader │ │ │ │ ├── entries │ │ │ │ │ ├── archiso-aui-0-x86_64-linux.conf │ │ │ │ │ ├── archiso-aui-1-x86_64-linux.conf │ │ │ │ │ ├── archiso-x86_64-linux.conf │ │ │ │ │ ├── archiso_2_console-x86_64-linux.conf │ │ │ │ │ ├── archiso_3_ram-x86_64-linux.conf │ │ │ │ │ └── archiso_5_memtest86-x86_64-linux.conf │ │ │ │ └── loader.conf │ │ │ ├── persistent │ │ │ │ └── x86_64 │ │ │ │ │ └── upperdir │ │ │ │ │ └── etc │ │ │ │ │ ├── fstab │ │ │ │ │ ├── initcpio │ │ │ │ │ ├── hooks │ │ │ │ │ │ └── bcachefs │ │ │ │ │ └── install │ │ │ │ │ │ └── bcachefs │ │ │ │ │ ├── mkinitcpio.d │ │ │ │ │ └── linux.preset │ │ │ │ │ ├── samba │ │ │ │ │ └── smb.conf │ │ │ │ │ └── systemd │ │ │ │ │ ├── logind.conf.d │ │ │ │ │ └── do-not-suspend.conf │ │ │ │ │ └── system │ │ │ │ │ ├── etc-pacman.d-gnupg.mount │ │ │ │ │ ├── pacman-init.service │ │ │ │ │ └── pacman-init.service.d │ │ │ │ │ └── override.conf │ │ │ ├── refind │ │ │ │ └── refind.conf │ │ │ └── syslinux │ │ │ │ ├── archiso_pxe-linux.cfg │ │ │ │ ├── archiso_sys-linux.cfg │ │ │ │ ├── archiso_sys.cfg │ │ │ │ └── archiso_tail.cfg │ │ └── mediumdef.sh │ ├── efiboot │ │ ├── grub │ │ │ ├── grub.cfg │ │ │ └── loopback.cfg │ │ ├── loader │ │ │ ├── entries │ │ │ │ ├── archiso-x86_64-linux.conf │ │ │ │ ├── archiso_2_console-x86_64-linux.conf │ │ │ │ ├── archiso_3_ram-x86_64-linux.conf │ │ │ │ ├── archiso_4_refind-x86_64-linux.conf │ │ │ │ └── archiso_5_memtest86-x86_64-linux.conf │ │ │ └── loader.conf │ │ └── refind │ │ │ ├── refind-dvd.conf │ │ │ └── refind-usb.conf │ ├── lang │ │ ├── cs_CZ │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── de_DE │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── el_GR │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── es_ES │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── fr_FR │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── hu_HU │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── it_IT │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── nl_NL │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── pl_PL │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── pt_PT │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── ro_RO │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── ru_RU │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── sr_RS@latin │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── tr_TR │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ └── uk_UA │ │ │ ├── airootfs │ │ │ ├── etc │ │ │ │ ├── X11 │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ ├── environment │ │ │ │ ├── locale.conf │ │ │ │ └── vconsole.conf │ │ │ └── root │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ ├── packages.x86_64 │ ├── pacman-testing.conf │ ├── pacman.conf │ ├── profiledef.sh │ └── syslinux │ │ ├── archiso_head.cfg │ │ ├── archiso_pxe-linux.cfg │ │ ├── archiso_pxe.cfg │ │ ├── archiso_sys-linux.cfg │ │ ├── archiso_sys.cfg │ │ ├── archiso_tail.cfg │ │ ├── splash.png │ │ └── syslinux.cfg ├── lxqt │ ├── airootfs-options │ │ └── graphics │ │ │ ├── nvidia │ │ │ ├── nvidia-open │ │ │ └── etc │ │ │ │ └── modprobe.d │ │ │ │ ├── blacklist-nouveau.conf │ │ │ │ └── nvidia-drm.conf │ │ │ ├── optimus-nvidia │ │ │ └── etc │ │ │ │ ├── modprobe.d │ │ │ │ ├── blacklist-nouveau.conf │ │ │ │ └── nvidia-drm.conf │ │ │ │ ├── sddm.conf.d │ │ │ │ └── X11.conf │ │ │ │ └── sddm │ │ │ │ └── scripts │ │ │ │ └── Xsetup │ │ │ └── optimus-prime │ ├── airootfs │ │ ├── etc │ │ │ ├── X11 │ │ │ │ └── xorg.conf.d │ │ │ │ │ └── 30-touchpad.conf │ │ │ ├── hostname │ │ │ ├── hosts │ │ │ ├── initcpio │ │ │ │ └── hooks │ │ │ │ │ └── archiso │ │ │ ├── locale.conf │ │ │ ├── localtime │ │ │ ├── machine-id │ │ │ ├── mkinitcpio.conf │ │ │ ├── mkinitcpio.d │ │ │ │ └── linux.preset │ │ │ ├── modprobe.d │ │ │ │ └── broadcom-wl.conf │ │ │ ├── motd │ │ │ ├── passwd │ │ │ ├── resolv.conf │ │ │ ├── samba │ │ │ │ └── smb.conf │ │ │ ├── sddm.conf.d │ │ │ │ └── autologin.conf │ │ │ ├── shadow │ │ │ ├── skel │ │ │ │ ├── .Xresources │ │ │ │ ├── .config │ │ │ │ │ ├── Kvantum │ │ │ │ │ │ └── kvantum.kvconfig │ │ │ │ │ ├── gtk-3.0 │ │ │ │ │ │ └── settings.ini │ │ │ │ │ ├── lxqt │ │ │ │ │ │ ├── lxqt.conf │ │ │ │ │ │ ├── panel.conf │ │ │ │ │ │ └── session.conf │ │ │ │ │ ├── openbox │ │ │ │ │ │ └── lxqt-rc.xml │ │ │ │ │ ├── pcmanfm-qt │ │ │ │ │ │ └── lxqt │ │ │ │ │ │ │ └── settings.conf │ │ │ │ │ └── qterminal.org │ │ │ │ │ │ └── qterminal.ini │ │ │ │ ├── .fehbg │ │ │ │ ├── .firstboot │ │ │ │ ├── .gtkrc-2.0 │ │ │ │ ├── .local │ │ │ │ │ └── share │ │ │ │ │ │ └── wallpapers │ │ │ │ │ │ └── archlinux-simplyblack.png │ │ │ │ ├── .pam_environment │ │ │ │ ├── .xsession │ │ │ │ └── .zshrc.local │ │ │ ├── ssh │ │ │ │ └── sshd_config.d │ │ │ │ │ └── 10-archiso.conf │ │ │ ├── systemd │ │ │ │ ├── journald.conf.d │ │ │ │ │ └── volatile-storage.conf │ │ │ │ ├── logind.conf.d │ │ │ │ │ └── do-not-suspend.conf │ │ │ │ ├── network │ │ │ │ │ ├── 20-ethernet.network │ │ │ │ │ ├── 20-wlan.network │ │ │ │ │ └── 20-wwan.network │ │ │ │ ├── networkd.conf.d │ │ │ │ │ └── ipv6-privacy-extensions.conf │ │ │ │ ├── system-preset │ │ │ │ │ └── 10-aui-default.preset │ │ │ │ └── system │ │ │ │ │ ├── choose-mirror.service │ │ │ │ │ ├── dbus-org.freedesktop.ModemManager1.service │ │ │ │ │ ├── dbus-org.freedesktop.resolve1.service │ │ │ │ │ ├── dbus-org.freedesktop.timesync1.service │ │ │ │ │ ├── etc-pacman.d-gnupg.mount │ │ │ │ │ ├── getty@tty1.service.d │ │ │ │ │ └── autologin.conf │ │ │ │ │ ├── multi-user.target.wants │ │ │ │ │ ├── ModemManager.service │ │ │ │ │ ├── choose-mirror.service │ │ │ │ │ ├── hv_fcopy_daemon.service │ │ │ │ │ ├── hv_kvp_daemon.service │ │ │ │ │ ├── hv_vss_daemon.service │ │ │ │ │ ├── pacman-init.service │ │ │ │ │ ├── reflector.service │ │ │ │ │ ├── systemd-resolved.service │ │ │ │ │ ├── vboxservice.service │ │ │ │ │ ├── vmtoolsd.service │ │ │ │ │ └── vmware-vmblock-fuse.service │ │ │ │ │ ├── pacman-init.service │ │ │ │ │ ├── reflector.service.d │ │ │ │ │ └── archiso.conf │ │ │ │ │ ├── socket.target.wants │ │ │ │ │ └── pcscd.socket │ │ │ │ │ ├── sysinit.target.wants │ │ │ │ │ ├── systemd-time-wait-sync.service │ │ │ │ │ └── systemd-timesyncd.service │ │ │ │ │ └── systemd-networkd-wait-online.service.d │ │ │ │ │ └── wait-for-only-one-interface.conf │ │ │ ├── vconsole.conf │ │ │ └── xdg │ │ │ │ └── reflector │ │ │ │ └── reflector.conf │ │ ├── root │ │ │ ├── .automated_script.sh │ │ │ ├── .config │ │ │ │ └── user-dirs.conf │ │ │ ├── .gnupg │ │ │ │ └── scdaemon.conf │ │ │ ├── .zlogin │ │ │ └── customize_airootfs.sh │ │ └── usr │ │ │ └── local │ │ │ └── bin │ │ │ ├── Installation_guide │ │ │ └── choose-mirror │ ├── bootstrap_packages.x86_64 │ ├── drive │ │ ├── hybrid │ │ │ ├── auirootfs │ │ │ │ └── etc │ │ │ │ │ ├── fstab │ │ │ │ │ ├── initcpio │ │ │ │ │ ├── hooks │ │ │ │ │ │ └── bcachefs │ │ │ │ │ └── install │ │ │ │ │ │ └── bcachefs │ │ │ │ │ ├── mkinitcpio.conf │ │ │ │ │ ├── mkinitcpio.d │ │ │ │ │ └── linux.preset │ │ │ │ │ └── samba │ │ │ │ │ └── smb.conf │ │ │ ├── grub │ │ │ │ └── grub.cfg │ │ │ ├── loader │ │ │ │ ├── entries │ │ │ │ │ ├── archiso-aui-0-x86_64-linux.conf │ │ │ │ │ ├── archiso-x86_64-linux.conf │ │ │ │ │ ├── archiso_2_console-x86_64-linux.conf │ │ │ │ │ ├── archiso_3_ram-x86_64-linux.conf │ │ │ │ │ └── archiso_5_memtest86-x86_64-linux.conf │ │ │ │ └── loader.conf │ │ │ ├── refind │ │ │ │ ├── refind.conf │ │ │ │ └── refind_linux.conf │ │ │ └── syslinux │ │ │ │ ├── archiso_pxe-linux.cfg │ │ │ │ ├── archiso_sys-linux.cfg │ │ │ │ ├── archiso_sys.cfg │ │ │ │ └── archiso_tail.cfg │ │ ├── img │ │ │ ├── grub │ │ │ │ └── grub.cfg │ │ │ ├── loader │ │ │ │ ├── entries │ │ │ │ │ ├── archiso-aui-0-x86_64-linux.conf │ │ │ │ │ ├── archiso-aui-1-x86_64-linux.conf │ │ │ │ │ ├── archiso-x86_64-linux.conf │ │ │ │ │ ├── archiso_2_console-x86_64-linux.conf │ │ │ │ │ ├── archiso_3_ram-x86_64-linux.conf │ │ │ │ │ └── archiso_5_memtest86-x86_64-linux.conf │ │ │ │ └── loader.conf │ │ │ ├── persistent │ │ │ │ └── x86_64 │ │ │ │ │ └── upperdir │ │ │ │ │ └── etc │ │ │ │ │ └── fstab │ │ │ └── syslinux │ │ │ │ ├── archiso_pxe-linux.cfg │ │ │ │ ├── archiso_sys-linux.cfg │ │ │ │ └── archiso_sys.cfg │ │ ├── install │ │ │ ├── auirootfs │ │ │ │ └── etc │ │ │ │ │ ├── fstab │ │ │ │ │ ├── initcpio │ │ │ │ │ ├── hooks │ │ │ │ │ │ └── bcachefs │ │ │ │ │ └── install │ │ │ │ │ │ └── bcachefs │ │ │ │ │ ├── mkinitcpio.conf │ │ │ │ │ ├── mkinitcpio.d │ │ │ │ │ └── linux.preset │ │ │ │ │ └── samba │ │ │ │ │ └── smb.conf │ │ │ ├── grub │ │ │ │ └── grub.cfg │ │ │ ├── loader │ │ │ │ ├── entries │ │ │ │ │ ├── archiso-aui-0-x86_64-linux.conf │ │ │ │ │ ├── archiso_4_refind-x86_64-linux.conf │ │ │ │ │ └── archiso_5_memtest86-x86_64-linux.conf │ │ │ │ └── loader.conf │ │ │ ├── refind │ │ │ │ ├── refind.conf │ │ │ │ └── refind_linux.conf │ │ │ └── syslinux │ │ │ │ ├── archiso_pxe-linux.cfg │ │ │ │ ├── archiso_sys-linux.cfg │ │ │ │ ├── archiso_sys.cfg │ │ │ │ └── archiso_tail.cfg │ │ ├── liveusb │ │ │ ├── grub │ │ │ │ └── grub.cfg │ │ │ ├── loader │ │ │ │ ├── entries │ │ │ │ │ ├── archiso-aui-0-x86_64-linux.conf │ │ │ │ │ ├── archiso-aui-1-x86_64-linux.conf │ │ │ │ │ ├── archiso-x86_64-linux.conf │ │ │ │ │ ├── archiso_2_console-x86_64-linux.conf │ │ │ │ │ ├── archiso_3_ram-x86_64-linux.conf │ │ │ │ │ └── archiso_5_memtest86-x86_64-linux.conf │ │ │ │ └── loader.conf │ │ │ ├── persistent │ │ │ │ └── x86_64 │ │ │ │ │ └── upperdir │ │ │ │ │ └── etc │ │ │ │ │ ├── fstab │ │ │ │ │ ├── initcpio │ │ │ │ │ ├── hooks │ │ │ │ │ │ └── bcachefs │ │ │ │ │ └── install │ │ │ │ │ │ └── bcachefs │ │ │ │ │ ├── mkinitcpio.d │ │ │ │ │ └── linux.preset │ │ │ │ │ ├── samba │ │ │ │ │ └── smb.conf │ │ │ │ │ └── systemd │ │ │ │ │ ├── logind.conf.d │ │ │ │ │ └── do-not-suspend.conf │ │ │ │ │ └── system │ │ │ │ │ ├── etc-pacman.d-gnupg.mount │ │ │ │ │ ├── pacman-init.service │ │ │ │ │ └── pacman-init.service.d │ │ │ │ │ └── override.conf │ │ │ ├── refind │ │ │ │ └── refind.conf │ │ │ └── syslinux │ │ │ │ ├── archiso_pxe-linux.cfg │ │ │ │ ├── archiso_sys-linux.cfg │ │ │ │ ├── archiso_sys.cfg │ │ │ │ └── archiso_tail.cfg │ │ └── mediumdef.sh │ ├── efiboot │ │ ├── grub │ │ │ ├── grub.cfg │ │ │ └── loopback.cfg │ │ ├── loader │ │ │ ├── entries │ │ │ │ ├── archiso-x86_64-linux.conf │ │ │ │ ├── archiso_2_console-x86_64-linux.conf │ │ │ │ ├── archiso_3_ram-x86_64-linux.conf │ │ │ │ ├── archiso_4_refind-x86_64-linux.conf │ │ │ │ └── archiso_5_memtest86-x86_64-linux.conf │ │ │ └── loader.conf │ │ └── refind │ │ │ ├── refind-dvd.conf │ │ │ └── refind-usb.conf │ ├── lang │ │ ├── cs_CZ │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── de_DE │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── el_GR │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── es_ES │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── fr_FR │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── hu_HU │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── it_IT │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── nl_NL │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── pl_PL │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── pt_PT │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── ro_RO │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── ru_RU │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── sr_RS@latin │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── tr_TR │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ └── uk_UA │ │ │ ├── airootfs │ │ │ ├── etc │ │ │ │ ├── X11 │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ ├── environment │ │ │ │ ├── locale.conf │ │ │ │ └── vconsole.conf │ │ │ └── root │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ ├── packages.x86_64 │ ├── pacman-testing.conf │ ├── pacman.conf │ ├── profiledef.sh │ └── syslinux │ │ ├── archiso_head.cfg │ │ ├── archiso_pxe-linux.cfg │ │ ├── archiso_pxe.cfg │ │ ├── archiso_sys-linux.cfg │ │ ├── archiso_sys.cfg │ │ ├── archiso_tail.cfg │ │ ├── splash.png │ │ └── syslinux.cfg ├── mate │ ├── airootfs-options │ │ └── graphics │ │ │ ├── nvidia │ │ │ ├── nvidia-open │ │ │ └── etc │ │ │ │ └── modprobe.d │ │ │ │ ├── blacklist-nouveau.conf │ │ │ │ └── nvidia-drm.conf │ │ │ ├── optimus-nvidia │ │ │ └── etc │ │ │ │ ├── lightdm │ │ │ │ └── display_setup.sh │ │ │ │ └── modprobe.d │ │ │ │ ├── blacklist-nouveau.conf │ │ │ │ └── nvidia-drm.conf │ │ │ └── optimus-prime │ ├── airootfs │ │ ├── etc │ │ │ ├── X11 │ │ │ │ └── xorg.conf.d │ │ │ │ │ └── 30-touchpad.conf │ │ │ ├── hostname │ │ │ ├── hosts │ │ │ ├── initcpio │ │ │ │ └── hooks │ │ │ │ │ └── archiso │ │ │ ├── locale.conf │ │ │ ├── localtime │ │ │ ├── machine-id │ │ │ ├── mkinitcpio.conf │ │ │ ├── mkinitcpio.d │ │ │ │ └── linux.preset │ │ │ ├── modprobe.d │ │ │ │ └── broadcom-wl.conf │ │ │ ├── motd │ │ │ ├── passwd │ │ │ ├── resolv.conf │ │ │ ├── samba │ │ │ │ └── smb.conf │ │ │ ├── shadow │ │ │ ├── skel │ │ │ │ ├── .Xresources │ │ │ │ ├── .fehbg │ │ │ │ ├── .firstboot │ │ │ │ ├── .local │ │ │ │ │ └── share │ │ │ │ │ │ └── wallpapers │ │ │ │ │ │ └── archlinux-simplyblack.png │ │ │ │ ├── .pam_environment │ │ │ │ ├── .xsession │ │ │ │ └── .zshrc.local │ │ │ ├── ssh │ │ │ │ └── sshd_config.d │ │ │ │ │ └── 10-archiso.conf │ │ │ ├── systemd │ │ │ │ ├── journald.conf.d │ │ │ │ │ └── volatile-storage.conf │ │ │ │ ├── logind.conf.d │ │ │ │ │ └── do-not-suspend.conf │ │ │ │ ├── network │ │ │ │ │ ├── 20-ethernet.network │ │ │ │ │ ├── 20-wlan.network │ │ │ │ │ └── 20-wwan.network │ │ │ │ ├── networkd.conf.d │ │ │ │ │ └── ipv6-privacy-extensions.conf │ │ │ │ ├── system-preset │ │ │ │ │ └── 10-aui-default.preset │ │ │ │ └── system │ │ │ │ │ ├── choose-mirror.service │ │ │ │ │ ├── dbus-org.freedesktop.ModemManager1.service │ │ │ │ │ ├── dbus-org.freedesktop.resolve1.service │ │ │ │ │ ├── dbus-org.freedesktop.timesync1.service │ │ │ │ │ ├── etc-pacman.d-gnupg.mount │ │ │ │ │ ├── getty@tty1.service.d │ │ │ │ │ └── autologin.conf │ │ │ │ │ ├── multi-user.target.wants │ │ │ │ │ ├── ModemManager.service │ │ │ │ │ ├── choose-mirror.service │ │ │ │ │ ├── hv_fcopy_daemon.service │ │ │ │ │ ├── hv_kvp_daemon.service │ │ │ │ │ ├── hv_vss_daemon.service │ │ │ │ │ ├── pacman-init.service │ │ │ │ │ ├── reflector.service │ │ │ │ │ ├── systemd-resolved.service │ │ │ │ │ ├── vboxservice.service │ │ │ │ │ ├── vmtoolsd.service │ │ │ │ │ └── vmware-vmblock-fuse.service │ │ │ │ │ ├── pacman-init.service │ │ │ │ │ ├── reflector.service.d │ │ │ │ │ └── archiso.conf │ │ │ │ │ ├── socket.target.wants │ │ │ │ │ └── pcscd.socket │ │ │ │ │ ├── sysinit.target.wants │ │ │ │ │ ├── systemd-time-wait-sync.service │ │ │ │ │ └── systemd-timesyncd.service │ │ │ │ │ └── systemd-networkd-wait-online.service.d │ │ │ │ │ └── wait-for-only-one-interface.conf │ │ │ ├── vconsole.conf │ │ │ └── xdg │ │ │ │ └── reflector │ │ │ │ └── reflector.conf │ │ ├── root │ │ │ ├── .automated_script.sh │ │ │ ├── .config │ │ │ │ └── user-dirs.conf │ │ │ ├── .gnupg │ │ │ │ └── scdaemon.conf │ │ │ ├── .zlogin │ │ │ └── customize_airootfs.sh │ │ └── usr │ │ │ ├── local │ │ │ └── bin │ │ │ │ ├── Installation_guide │ │ │ │ └── choose-mirror │ │ │ └── share │ │ │ └── glib-2.0 │ │ │ └── schemas │ │ │ └── archuseriso.gschema.override │ ├── bootstrap_packages.x86_64 │ ├── drive │ │ ├── hybrid │ │ │ ├── auirootfs │ │ │ │ └── etc │ │ │ │ │ ├── fstab │ │ │ │ │ ├── initcpio │ │ │ │ │ ├── hooks │ │ │ │ │ │ └── bcachefs │ │ │ │ │ └── install │ │ │ │ │ │ └── bcachefs │ │ │ │ │ ├── mkinitcpio.conf │ │ │ │ │ ├── mkinitcpio.d │ │ │ │ │ └── linux.preset │ │ │ │ │ └── samba │ │ │ │ │ └── smb.conf │ │ │ ├── grub │ │ │ │ └── grub.cfg │ │ │ ├── loader │ │ │ │ ├── entries │ │ │ │ │ ├── archiso-aui-0-x86_64-linux.conf │ │ │ │ │ ├── archiso-x86_64-linux.conf │ │ │ │ │ ├── archiso_2_console-x86_64-linux.conf │ │ │ │ │ ├── archiso_3_ram-x86_64-linux.conf │ │ │ │ │ └── archiso_5_memtest86-x86_64-linux.conf │ │ │ │ └── loader.conf │ │ │ ├── refind │ │ │ │ ├── refind.conf │ │ │ │ └── refind_linux.conf │ │ │ └── syslinux │ │ │ │ ├── archiso_pxe-linux.cfg │ │ │ │ ├── archiso_sys-linux.cfg │ │ │ │ ├── archiso_sys.cfg │ │ │ │ └── archiso_tail.cfg │ │ ├── img │ │ │ ├── grub │ │ │ │ └── grub.cfg │ │ │ ├── loader │ │ │ │ ├── entries │ │ │ │ │ ├── archiso-aui-0-x86_64-linux.conf │ │ │ │ │ ├── archiso-aui-1-x86_64-linux.conf │ │ │ │ │ ├── archiso-x86_64-linux.conf │ │ │ │ │ ├── archiso_2_console-x86_64-linux.conf │ │ │ │ │ ├── archiso_3_ram-x86_64-linux.conf │ │ │ │ │ └── archiso_5_memtest86-x86_64-linux.conf │ │ │ │ └── loader.conf │ │ │ ├── persistent │ │ │ │ └── x86_64 │ │ │ │ │ └── upperdir │ │ │ │ │ └── etc │ │ │ │ │ └── fstab │ │ │ └── syslinux │ │ │ │ ├── archiso_pxe-linux.cfg │ │ │ │ ├── archiso_sys-linux.cfg │ │ │ │ └── archiso_sys.cfg │ │ ├── install │ │ │ ├── auirootfs │ │ │ │ └── etc │ │ │ │ │ ├── fstab │ │ │ │ │ ├── initcpio │ │ │ │ │ ├── hooks │ │ │ │ │ │ └── bcachefs │ │ │ │ │ └── install │ │ │ │ │ │ └── bcachefs │ │ │ │ │ ├── mkinitcpio.conf │ │ │ │ │ ├── mkinitcpio.d │ │ │ │ │ └── linux.preset │ │ │ │ │ └── samba │ │ │ │ │ └── smb.conf │ │ │ ├── grub │ │ │ │ └── grub.cfg │ │ │ ├── loader │ │ │ │ ├── entries │ │ │ │ │ ├── archiso-aui-0-x86_64-linux.conf │ │ │ │ │ ├── archiso_4_refind-x86_64-linux.conf │ │ │ │ │ └── archiso_5_memtest86-x86_64-linux.conf │ │ │ │ └── loader.conf │ │ │ ├── refind │ │ │ │ ├── refind.conf │ │ │ │ └── refind_linux.conf │ │ │ └── syslinux │ │ │ │ ├── archiso_pxe-linux.cfg │ │ │ │ ├── archiso_sys-linux.cfg │ │ │ │ ├── archiso_sys.cfg │ │ │ │ └── archiso_tail.cfg │ │ ├── liveusb │ │ │ ├── grub │ │ │ │ └── grub.cfg │ │ │ ├── loader │ │ │ │ ├── entries │ │ │ │ │ ├── archiso-aui-0-x86_64-linux.conf │ │ │ │ │ ├── archiso-aui-1-x86_64-linux.conf │ │ │ │ │ ├── archiso-x86_64-linux.conf │ │ │ │ │ ├── archiso_2_console-x86_64-linux.conf │ │ │ │ │ ├── archiso_3_ram-x86_64-linux.conf │ │ │ │ │ └── archiso_5_memtest86-x86_64-linux.conf │ │ │ │ └── loader.conf │ │ │ ├── persistent │ │ │ │ └── x86_64 │ │ │ │ │ └── upperdir │ │ │ │ │ └── etc │ │ │ │ │ ├── fstab │ │ │ │ │ ├── initcpio │ │ │ │ │ ├── hooks │ │ │ │ │ │ └── bcachefs │ │ │ │ │ └── install │ │ │ │ │ │ └── bcachefs │ │ │ │ │ ├── mkinitcpio.d │ │ │ │ │ └── linux.preset │ │ │ │ │ ├── samba │ │ │ │ │ └── smb.conf │ │ │ │ │ └── systemd │ │ │ │ │ ├── logind.conf.d │ │ │ │ │ └── do-not-suspend.conf │ │ │ │ │ └── system │ │ │ │ │ ├── etc-pacman.d-gnupg.mount │ │ │ │ │ ├── pacman-init.service │ │ │ │ │ └── pacman-init.service.d │ │ │ │ │ └── override.conf │ │ │ ├── refind │ │ │ │ └── refind.conf │ │ │ └── syslinux │ │ │ │ ├── archiso_pxe-linux.cfg │ │ │ │ ├── archiso_sys-linux.cfg │ │ │ │ ├── archiso_sys.cfg │ │ │ │ └── archiso_tail.cfg │ │ └── mediumdef.sh │ ├── efiboot │ │ ├── grub │ │ │ ├── grub.cfg │ │ │ └── loopback.cfg │ │ ├── loader │ │ │ ├── entries │ │ │ │ ├── archiso-x86_64-linux.conf │ │ │ │ ├── archiso_2_console-x86_64-linux.conf │ │ │ │ ├── archiso_3_ram-x86_64-linux.conf │ │ │ │ ├── archiso_4_refind-x86_64-linux.conf │ │ │ │ └── archiso_5_memtest86-x86_64-linux.conf │ │ │ └── loader.conf │ │ └── refind │ │ │ ├── refind-dvd.conf │ │ │ └── refind-usb.conf │ ├── lang │ │ ├── cs_CZ │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── de_DE │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── el_GR │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── es_ES │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── fr_FR │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── hu_HU │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── it_IT │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── nl_NL │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── pl_PL │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── pt_PT │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── ro_RO │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── ru_RU │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── sr_RS@latin │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── tr_TR │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── X11 │ │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ └── uk_UA │ │ │ ├── airootfs │ │ │ ├── etc │ │ │ │ ├── X11 │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ ├── environment │ │ │ │ ├── locale.conf │ │ │ │ └── vconsole.conf │ │ │ └── root │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ ├── packages.x86_64 │ ├── pacman-testing.conf │ ├── pacman.conf │ ├── profiledef.sh │ └── syslinux │ │ ├── archiso_head.cfg │ │ ├── archiso_pxe-linux.cfg │ │ ├── archiso_pxe.cfg │ │ ├── archiso_sys-linux.cfg │ │ ├── archiso_sys.cfg │ │ ├── archiso_tail.cfg │ │ ├── splash.png │ │ └── syslinux.cfg ├── sway │ ├── airootfs │ │ ├── etc │ │ │ ├── environment │ │ │ ├── hostname │ │ │ ├── hosts │ │ │ ├── initcpio │ │ │ │ └── hooks │ │ │ │ │ └── archiso │ │ │ ├── locale.conf │ │ │ ├── localtime │ │ │ ├── machine-id │ │ │ ├── mkinitcpio.conf │ │ │ ├── mkinitcpio.d │ │ │ │ └── linux.preset │ │ │ ├── modprobe.d │ │ │ │ └── broadcom-wl.conf │ │ │ ├── motd │ │ │ ├── passwd │ │ │ ├── resolv.conf │ │ │ ├── shadow │ │ │ ├── skel │ │ │ │ ├── .zprofile │ │ │ │ └── .zshrc.local │ │ │ ├── ssh │ │ │ │ └── sshd_config.d │ │ │ │ │ └── 10-archiso.conf │ │ │ ├── sway │ │ │ │ └── config.d │ │ │ │ │ └── touchpad.conf │ │ │ ├── systemd │ │ │ │ ├── journald.conf.d │ │ │ │ │ └── volatile-storage.conf │ │ │ │ ├── logind.conf.d │ │ │ │ │ └── do-not-suspend.conf │ │ │ │ ├── network │ │ │ │ │ ├── 20-ethernet.network │ │ │ │ │ ├── 20-wlan.network │ │ │ │ │ └── 20-wwan.network │ │ │ │ ├── networkd.conf.d │ │ │ │ │ └── ipv6-privacy-extensions.conf │ │ │ │ ├── system-preset │ │ │ │ │ └── 10-aui-default.preset │ │ │ │ └── system │ │ │ │ │ ├── choose-mirror.service │ │ │ │ │ ├── dbus-org.freedesktop.ModemManager1.service │ │ │ │ │ ├── dbus-org.freedesktop.resolve1.service │ │ │ │ │ ├── dbus-org.freedesktop.timesync1.service │ │ │ │ │ ├── etc-pacman.d-gnupg.mount │ │ │ │ │ ├── getty@tty1.service.d │ │ │ │ │ └── autologin.conf │ │ │ │ │ ├── multi-user.target.wants │ │ │ │ │ ├── ModemManager.service │ │ │ │ │ ├── choose-mirror.service │ │ │ │ │ ├── hv_fcopy_daemon.service │ │ │ │ │ ├── hv_kvp_daemon.service │ │ │ │ │ ├── hv_vss_daemon.service │ │ │ │ │ ├── pacman-init.service │ │ │ │ │ ├── reflector.service │ │ │ │ │ ├── systemd-resolved.service │ │ │ │ │ ├── vboxservice.service │ │ │ │ │ ├── vmtoolsd.service │ │ │ │ │ └── vmware-vmblock-fuse.service │ │ │ │ │ ├── pacman-init.service │ │ │ │ │ ├── reflector.service.d │ │ │ │ │ └── archiso.conf │ │ │ │ │ ├── socket.target.wants │ │ │ │ │ └── pcscd.socket │ │ │ │ │ ├── sysinit.target.wants │ │ │ │ │ ├── systemd-time-wait-sync.service │ │ │ │ │ └── systemd-timesyncd.service │ │ │ │ │ └── systemd-networkd-wait-online.service.d │ │ │ │ │ └── wait-for-only-one-interface.conf │ │ │ ├── vconsole.conf │ │ │ └── xdg │ │ │ │ └── reflector │ │ │ │ └── reflector.conf │ │ ├── root │ │ │ ├── .automated_script.sh │ │ │ ├── .config │ │ │ │ └── user-dirs.conf │ │ │ ├── .gnupg │ │ │ │ └── scdaemon.conf │ │ │ ├── .zlogin │ │ │ └── customize_airootfs.sh │ │ └── usr │ │ │ └── local │ │ │ └── bin │ │ │ ├── Installation_guide │ │ │ └── choose-mirror │ ├── bootstrap_packages.x86_64 │ ├── drive │ │ ├── hybrid │ │ │ ├── auirootfs │ │ │ │ └── etc │ │ │ │ │ ├── fstab │ │ │ │ │ ├── initcpio │ │ │ │ │ ├── hooks │ │ │ │ │ │ └── bcachefs │ │ │ │ │ └── install │ │ │ │ │ │ └── bcachefs │ │ │ │ │ ├── mkinitcpio.conf │ │ │ │ │ └── mkinitcpio.d │ │ │ │ │ └── linux.preset │ │ │ ├── grub │ │ │ │ └── grub.cfg │ │ │ ├── loader │ │ │ │ ├── entries │ │ │ │ │ ├── archiso-aui-0-x86_64-linux.conf │ │ │ │ │ ├── archiso-x86_64-linux.conf │ │ │ │ │ ├── archiso_2_console-x86_64-linux.conf │ │ │ │ │ ├── archiso_3_ram-x86_64-linux.conf │ │ │ │ │ └── archiso_5_memtest86-x86_64-linux.conf │ │ │ │ └── loader.conf │ │ │ ├── refind │ │ │ │ ├── refind.conf │ │ │ │ └── refind_linux.conf │ │ │ └── syslinux │ │ │ │ ├── archiso_pxe-linux.cfg │ │ │ │ ├── archiso_sys-linux.cfg │ │ │ │ ├── archiso_sys.cfg │ │ │ │ └── archiso_tail.cfg │ │ ├── img │ │ │ ├── grub │ │ │ │ └── grub.cfg │ │ │ ├── loader │ │ │ │ ├── entries │ │ │ │ │ ├── archiso-aui-0-x86_64-linux.conf │ │ │ │ │ ├── archiso-aui-1-x86_64-linux.conf │ │ │ │ │ ├── archiso-x86_64-linux.conf │ │ │ │ │ ├── archiso_2_console-x86_64-linux.conf │ │ │ │ │ ├── archiso_3_ram-x86_64-linux.conf │ │ │ │ │ └── archiso_5_memtest86-x86_64-linux.conf │ │ │ │ └── loader.conf │ │ │ ├── persistent │ │ │ │ └── x86_64 │ │ │ │ │ └── upperdir │ │ │ │ │ └── etc │ │ │ │ │ └── fstab │ │ │ └── syslinux │ │ │ │ ├── archiso_pxe-linux.cfg │ │ │ │ ├── archiso_sys-linux.cfg │ │ │ │ └── archiso_sys.cfg │ │ ├── install │ │ │ ├── auirootfs │ │ │ │ └── etc │ │ │ │ │ ├── fstab │ │ │ │ │ ├── initcpio │ │ │ │ │ ├── hooks │ │ │ │ │ │ └── bcachefs │ │ │ │ │ └── install │ │ │ │ │ │ └── bcachefs │ │ │ │ │ ├── mkinitcpio.conf │ │ │ │ │ └── mkinitcpio.d │ │ │ │ │ └── linux.preset │ │ │ ├── grub │ │ │ │ └── grub.cfg │ │ │ ├── loader │ │ │ │ ├── entries │ │ │ │ │ ├── archiso-aui-0-x86_64-linux.conf │ │ │ │ │ ├── archiso_4_refind-x86_64-linux.conf │ │ │ │ │ └── archiso_5_memtest86-x86_64-linux.conf │ │ │ │ └── loader.conf │ │ │ ├── refind │ │ │ │ ├── refind.conf │ │ │ │ └── refind_linux.conf │ │ │ └── syslinux │ │ │ │ ├── archiso_pxe-linux.cfg │ │ │ │ ├── archiso_sys-linux.cfg │ │ │ │ ├── archiso_sys.cfg │ │ │ │ └── archiso_tail.cfg │ │ ├── liveusb │ │ │ ├── grub │ │ │ │ └── grub.cfg │ │ │ ├── loader │ │ │ │ ├── entries │ │ │ │ │ ├── archiso-aui-0-x86_64-linux.conf │ │ │ │ │ ├── archiso-aui-1-x86_64-linux.conf │ │ │ │ │ ├── archiso-x86_64-linux.conf │ │ │ │ │ ├── archiso_2_console-x86_64-linux.conf │ │ │ │ │ ├── archiso_3_ram-x86_64-linux.conf │ │ │ │ │ └── archiso_5_memtest86-x86_64-linux.conf │ │ │ │ └── loader.conf │ │ │ ├── persistent │ │ │ │ └── x86_64 │ │ │ │ │ └── upperdir │ │ │ │ │ └── etc │ │ │ │ │ ├── fstab │ │ │ │ │ ├── initcpio │ │ │ │ │ ├── hooks │ │ │ │ │ │ └── bcachefs │ │ │ │ │ └── install │ │ │ │ │ │ └── bcachefs │ │ │ │ │ ├── mkinitcpio.d │ │ │ │ │ └── linux.preset │ │ │ │ │ └── systemd │ │ │ │ │ ├── logind.conf.d │ │ │ │ │ └── do-not-suspend.conf │ │ │ │ │ └── system │ │ │ │ │ ├── etc-pacman.d-gnupg.mount │ │ │ │ │ ├── pacman-init.service │ │ │ │ │ ├── pacman-init.service.d │ │ │ │ │ └── override.conf │ │ │ │ │ └── sysinit.target.wants │ │ │ │ │ └── haveged.service │ │ │ ├── refind │ │ │ │ └── refind.conf │ │ │ └── syslinux │ │ │ │ ├── archiso_pxe-linux.cfg │ │ │ │ ├── archiso_sys-linux.cfg │ │ │ │ ├── archiso_sys.cfg │ │ │ │ └── archiso_tail.cfg │ │ └── mediumdef.sh │ ├── efiboot │ │ ├── grub │ │ │ ├── grub.cfg │ │ │ └── loopback.cfg │ │ ├── loader │ │ │ ├── entries │ │ │ │ ├── archiso-x86_64-linux.conf │ │ │ │ ├── archiso_3_ram-x86_64-linux.conf │ │ │ │ ├── archiso_4_refind-x86_64-linux.conf │ │ │ │ └── archiso_5_memtest86-x86_64-linux.conf │ │ │ └── loader.conf │ │ └── refind │ │ │ ├── refind-dvd.conf │ │ │ └── refind-usb.conf │ ├── lang │ │ ├── cs_CZ │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── de_DE │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── el_GR │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── es_ES │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── fr_FR │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── hu_HU │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── it_IT │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── nl_NL │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── pl_PL │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── pt_PT │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── ro_RO │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── ru_RU │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── sr_RS@latin │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ ├── tr_TR │ │ │ ├── airootfs │ │ │ │ ├── etc │ │ │ │ │ ├── environment │ │ │ │ │ ├── locale.conf │ │ │ │ │ └── vconsole.conf │ │ │ │ └── root │ │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ │ └── uk_UA │ │ │ ├── airootfs │ │ │ ├── etc │ │ │ │ ├── environment │ │ │ │ ├── locale.conf │ │ │ │ └── vconsole.conf │ │ │ └── root │ │ │ │ └── customize_airootfs_lang.sh │ │ │ └── packages.x86_64 │ ├── packages.x86_64 │ ├── pacman-testing.conf │ ├── pacman.conf │ ├── profiledef.sh │ └── syslinux │ │ ├── archiso_head.cfg │ │ ├── archiso_pxe-linux.cfg │ │ ├── archiso_pxe.cfg │ │ ├── archiso_sys-linux.cfg │ │ ├── archiso_sys.cfg │ │ ├── archiso_tail.cfg │ │ ├── splash.png │ │ └── syslinux.cfg └── xfce │ ├── airootfs-options │ └── graphics │ │ ├── nvidia │ │ ├── nvidia-open │ │ └── etc │ │ │ └── modprobe.d │ │ │ ├── blacklist-nouveau.conf │ │ │ └── nvidia-drm.conf │ │ ├── optimus-nvidia │ │ └── etc │ │ │ ├── lightdm │ │ │ └── display_setup.sh │ │ │ └── modprobe.d │ │ │ ├── blacklist-nouveau.conf │ │ │ └── nvidia-drm.conf │ │ └── optimus-prime │ ├── airootfs │ ├── etc │ │ ├── X11 │ │ │ └── xorg.conf.d │ │ │ │ └── 30-touchpad.conf │ │ ├── hostname │ │ ├── hosts │ │ ├── initcpio │ │ │ └── hooks │ │ │ │ └── archiso │ │ ├── locale.conf │ │ ├── localtime │ │ ├── machine-id │ │ ├── mkinitcpio.conf │ │ ├── mkinitcpio.d │ │ │ └── linux.preset │ │ ├── modprobe.d │ │ │ └── broadcom-wl.conf │ │ ├── motd │ │ ├── passwd │ │ ├── resolv.conf │ │ ├── samba │ │ │ └── smb.conf │ │ ├── shadow │ │ ├── skel │ │ │ ├── .Xresources │ │ │ ├── .fehbg │ │ │ ├── .firstboot │ │ │ ├── .local │ │ │ │ └── share │ │ │ │ │ └── wallpapers │ │ │ │ │ └── archlinux-simplyblack.png │ │ │ ├── .pam_environment │ │ │ ├── .xsession │ │ │ └── .zshrc.local │ │ ├── ssh │ │ │ └── sshd_config.d │ │ │ │ └── 10-archiso.conf │ │ ├── systemd │ │ │ ├── journald.conf.d │ │ │ │ └── volatile-storage.conf │ │ │ ├── logind.conf.d │ │ │ │ └── do-not-suspend.conf │ │ │ ├── network │ │ │ │ ├── 20-ethernet.network │ │ │ │ ├── 20-wlan.network │ │ │ │ └── 20-wwan.network │ │ │ ├── networkd.conf.d │ │ │ │ └── ipv6-privacy-extensions.conf │ │ │ ├── system-preset │ │ │ │ └── 10-aui-default.preset │ │ │ └── system │ │ │ │ ├── choose-mirror.service │ │ │ │ ├── dbus-org.freedesktop.ModemManager1.service │ │ │ │ ├── dbus-org.freedesktop.resolve1.service │ │ │ │ ├── dbus-org.freedesktop.timesync1.service │ │ │ │ ├── etc-pacman.d-gnupg.mount │ │ │ │ ├── getty@tty1.service.d │ │ │ │ └── autologin.conf │ │ │ │ ├── multi-user.target.wants │ │ │ │ ├── ModemManager.service │ │ │ │ ├── choose-mirror.service │ │ │ │ ├── hv_fcopy_daemon.service │ │ │ │ ├── hv_kvp_daemon.service │ │ │ │ ├── hv_vss_daemon.service │ │ │ │ ├── pacman-init.service │ │ │ │ ├── reflector.service │ │ │ │ ├── systemd-resolved.service │ │ │ │ ├── vboxservice.service │ │ │ │ ├── vmtoolsd.service │ │ │ │ └── vmware-vmblock-fuse.service │ │ │ │ ├── pacman-init.service │ │ │ │ ├── reflector.service.d │ │ │ │ └── archiso.conf │ │ │ │ ├── socket.target.wants │ │ │ │ └── pcscd.socket │ │ │ │ ├── sysinit.target.wants │ │ │ │ ├── systemd-time-wait-sync.service │ │ │ │ └── systemd-timesyncd.service │ │ │ │ └── systemd-networkd-wait-online.service.d │ │ │ │ └── wait-for-only-one-interface.conf │ │ ├── vconsole.conf │ │ └── xdg │ │ │ └── reflector │ │ │ └── reflector.conf │ ├── root │ │ ├── .automated_script.sh │ │ ├── .config │ │ │ └── user-dirs.conf │ │ ├── .gnupg │ │ │ └── scdaemon.conf │ │ ├── .zlogin │ │ └── customize_airootfs.sh │ └── usr │ │ └── local │ │ └── bin │ │ ├── Installation_guide │ │ └── choose-mirror │ ├── bootstrap_packages.x86_64 │ ├── drive │ ├── hybrid │ │ ├── auirootfs │ │ │ └── etc │ │ │ │ ├── fstab │ │ │ │ ├── initcpio │ │ │ │ ├── hooks │ │ │ │ │ └── bcachefs │ │ │ │ └── install │ │ │ │ │ └── bcachefs │ │ │ │ ├── mkinitcpio.conf │ │ │ │ ├── mkinitcpio.d │ │ │ │ └── linux.preset │ │ │ │ └── samba │ │ │ │ └── smb.conf │ │ ├── grub │ │ │ └── grub.cfg │ │ ├── loader │ │ │ ├── entries │ │ │ │ ├── archiso-aui-0-x86_64-linux.conf │ │ │ │ ├── archiso-x86_64-linux.conf │ │ │ │ ├── archiso_2_console-x86_64-linux.conf │ │ │ │ ├── archiso_3_ram-x86_64-linux.conf │ │ │ │ └── archiso_5_memtest86-x86_64-linux.conf │ │ │ └── loader.conf │ │ ├── refind │ │ │ ├── refind.conf │ │ │ └── refind_linux.conf │ │ └── syslinux │ │ │ ├── archiso_pxe-linux.cfg │ │ │ ├── archiso_sys-linux.cfg │ │ │ ├── archiso_sys.cfg │ │ │ └── archiso_tail.cfg │ ├── img │ │ ├── grub │ │ │ └── grub.cfg │ │ ├── loader │ │ │ ├── entries │ │ │ │ ├── archiso-aui-0-x86_64-linux.conf │ │ │ │ ├── archiso-aui-1-x86_64-linux.conf │ │ │ │ ├── archiso-x86_64-linux.conf │ │ │ │ ├── archiso_2_console-x86_64-linux.conf │ │ │ │ └── archiso_3_ram-x86_64-linux.conf │ │ │ └── loader.conf │ │ ├── persistent │ │ │ └── x86_64 │ │ │ │ └── upperdir │ │ │ │ └── etc │ │ │ │ └── fstab │ │ └── syslinux │ │ │ ├── archiso_pxe-linux.cfg │ │ │ ├── archiso_sys-linux.cfg │ │ │ └── archiso_sys.cfg │ ├── install │ │ ├── auirootfs │ │ │ └── etc │ │ │ │ ├── fstab │ │ │ │ ├── initcpio │ │ │ │ ├── hooks │ │ │ │ │ └── bcachefs │ │ │ │ └── install │ │ │ │ │ └── bcachefs │ │ │ │ ├── mkinitcpio.conf │ │ │ │ ├── mkinitcpio.d │ │ │ │ └── linux.preset │ │ │ │ └── samba │ │ │ │ └── smb.conf │ │ ├── grub │ │ │ └── grub.cfg │ │ ├── loader │ │ │ ├── entries │ │ │ │ ├── archiso-aui-0-x86_64-linux.conf │ │ │ │ ├── archiso_4_refind-x86_64-linux.conf │ │ │ │ └── archiso_5_memtest86-x86_64-linux.conf │ │ │ └── loader.conf │ │ ├── refind │ │ │ ├── refind.conf │ │ │ └── refind_linux.conf │ │ └── syslinux │ │ │ ├── archiso_pxe-linux.cfg │ │ │ ├── archiso_sys-linux.cfg │ │ │ ├── archiso_sys.cfg │ │ │ └── archiso_tail.cfg │ ├── liveusb │ │ ├── grub │ │ │ └── grub.cfg │ │ ├── loader │ │ │ ├── entries │ │ │ │ ├── archiso-aui-0-x86_64-linux.conf │ │ │ │ ├── archiso-aui-1-x86_64-linux.conf │ │ │ │ ├── archiso-x86_64-linux.conf │ │ │ │ ├── archiso_2_console-x86_64-linux.conf │ │ │ │ ├── archiso_3_ram-x86_64-linux.conf │ │ │ │ └── archiso_5_memtest86-x86_64-linux.conf │ │ │ └── loader.conf │ │ ├── persistent │ │ │ └── x86_64 │ │ │ │ └── upperdir │ │ │ │ └── etc │ │ │ │ ├── fstab │ │ │ │ ├── mkinitcpio.d │ │ │ │ └── linux.preset │ │ │ │ ├── samba │ │ │ │ └── smb.conf │ │ │ │ └── systemd │ │ │ │ ├── logind.conf.d │ │ │ │ └── do-not-suspend.conf │ │ │ │ └── system │ │ │ │ ├── etc-pacman.d-gnupg.mount │ │ │ │ ├── pacman-init.service │ │ │ │ └── pacman-init.service.d │ │ │ │ └── override.conf │ │ ├── refind │ │ │ └── refind.conf │ │ └── syslinux │ │ │ ├── archiso_pxe-linux.cfg │ │ │ ├── archiso_sys-linux.cfg │ │ │ ├── archiso_sys.cfg │ │ │ └── archiso_tail.cfg │ └── mediumdef.sh │ ├── efiboot │ ├── grub │ │ ├── grub.cfg │ │ └── loopback.cfg │ ├── loader │ │ ├── entries │ │ │ ├── archiso-x86_64-linux.conf │ │ │ ├── archiso_2_console-x86_64-linux.conf │ │ │ ├── archiso_3_ram-x86_64-linux.conf │ │ │ ├── archiso_4_refind-x86_64-linux.conf │ │ │ └── archiso_5_memtest86-x86_64-linux.conf │ │ └── loader.conf │ └── refind │ │ ├── refind-dvd.conf │ │ └── refind-usb.conf │ ├── lang │ ├── cs_CZ │ │ ├── airootfs │ │ │ ├── etc │ │ │ │ ├── X11 │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ ├── environment │ │ │ │ ├── locale.conf │ │ │ │ └── vconsole.conf │ │ │ └── root │ │ │ │ └── customize_airootfs_lang.sh │ │ └── packages.x86_64 │ ├── de_DE │ │ ├── airootfs │ │ │ ├── etc │ │ │ │ ├── X11 │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ ├── environment │ │ │ │ ├── locale.conf │ │ │ │ └── vconsole.conf │ │ │ └── root │ │ │ │ └── customize_airootfs_lang.sh │ │ └── packages.x86_64 │ ├── el_GR │ │ ├── airootfs │ │ │ ├── etc │ │ │ │ ├── X11 │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ ├── environment │ │ │ │ ├── locale.conf │ │ │ │ └── vconsole.conf │ │ │ └── root │ │ │ │ └── customize_airootfs_lang.sh │ │ └── packages.x86_64 │ ├── es_ES │ │ ├── airootfs │ │ │ ├── etc │ │ │ │ ├── X11 │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ ├── environment │ │ │ │ ├── locale.conf │ │ │ │ └── vconsole.conf │ │ │ └── root │ │ │ │ └── customize_airootfs_lang.sh │ │ └── packages.x86_64 │ ├── fr_FR │ │ ├── airootfs │ │ │ ├── etc │ │ │ │ ├── X11 │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ ├── environment │ │ │ │ ├── locale.conf │ │ │ │ └── vconsole.conf │ │ │ └── root │ │ │ │ └── customize_airootfs_lang.sh │ │ └── packages.x86_64 │ ├── hu_HU │ │ ├── airootfs │ │ │ ├── etc │ │ │ │ ├── X11 │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ ├── environment │ │ │ │ ├── locale.conf │ │ │ │ └── vconsole.conf │ │ │ └── root │ │ │ │ └── customize_airootfs_lang.sh │ │ └── packages.x86_64 │ ├── it_IT │ │ ├── airootfs │ │ │ ├── etc │ │ │ │ ├── X11 │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ ├── environment │ │ │ │ ├── locale.conf │ │ │ │ └── vconsole.conf │ │ │ └── root │ │ │ │ └── customize_airootfs_lang.sh │ │ └── packages.x86_64 │ ├── nl_NL │ │ ├── airootfs │ │ │ ├── etc │ │ │ │ ├── X11 │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ ├── environment │ │ │ │ ├── locale.conf │ │ │ │ └── vconsole.conf │ │ │ └── root │ │ │ │ └── customize_airootfs_lang.sh │ │ └── packages.x86_64 │ ├── pl_PL │ │ ├── airootfs │ │ │ ├── etc │ │ │ │ ├── X11 │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ ├── environment │ │ │ │ ├── locale.conf │ │ │ │ └── vconsole.conf │ │ │ └── root │ │ │ │ └── customize_airootfs_lang.sh │ │ └── packages.x86_64 │ ├── pt_PT │ │ ├── airootfs │ │ │ ├── etc │ │ │ │ ├── X11 │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ ├── environment │ │ │ │ ├── locale.conf │ │ │ │ └── vconsole.conf │ │ │ └── root │ │ │ │ └── customize_airootfs_lang.sh │ │ └── packages.x86_64 │ ├── ro_RO │ │ ├── airootfs │ │ │ ├── etc │ │ │ │ ├── X11 │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ ├── environment │ │ │ │ ├── locale.conf │ │ │ │ └── vconsole.conf │ │ │ └── root │ │ │ │ └── customize_airootfs_lang.sh │ │ └── packages.x86_64 │ ├── ru_RU │ │ ├── airootfs │ │ │ ├── etc │ │ │ │ ├── X11 │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ ├── environment │ │ │ │ ├── locale.conf │ │ │ │ └── vconsole.conf │ │ │ └── root │ │ │ │ └── customize_airootfs_lang.sh │ │ └── packages.x86_64 │ ├── sr_RS@latin │ │ ├── airootfs │ │ │ ├── etc │ │ │ │ ├── X11 │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ ├── environment │ │ │ │ ├── locale.conf │ │ │ │ └── vconsole.conf │ │ │ └── root │ │ │ │ └── customize_airootfs_lang.sh │ │ └── packages.x86_64 │ ├── tr_TR │ │ ├── airootfs │ │ │ ├── etc │ │ │ │ ├── X11 │ │ │ │ │ └── xorg.conf.d │ │ │ │ │ │ └── 00-keyboard.conf │ │ │ │ ├── environment │ │ │ │ ├── locale.conf │ │ │ │ └── vconsole.conf │ │ │ └── root │ │ │ │ └── customize_airootfs_lang.sh │ │ └── packages.x86_64 │ └── uk_UA │ │ ├── airootfs │ │ ├── etc │ │ │ ├── X11 │ │ │ │ └── xorg.conf.d │ │ │ │ │ └── 00-keyboard.conf │ │ │ ├── environment │ │ │ ├── locale.conf │ │ │ └── vconsole.conf │ │ └── root │ │ │ └── customize_airootfs_lang.sh │ │ └── packages.x86_64 │ ├── packages.x86_64 │ ├── pacman-testing.conf │ ├── pacman.conf │ ├── profiledef.sh │ └── syslinux │ ├── archiso_head.cfg │ ├── archiso_pxe-linux.cfg │ ├── archiso_pxe.cfg │ ├── archiso_sys-linux.cfg │ ├── archiso_sys.cfg │ ├── archiso_tail.cfg │ ├── splash.png │ └── syslinux.cfg └── readme.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/.editorconfig -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/Makefile -------------------------------------------------------------------------------- /archuseriso/aui-buildzfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/archuseriso/aui-buildzfs -------------------------------------------------------------------------------- /archuseriso/aui-hd2aui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/archuseriso/aui-hd2aui -------------------------------------------------------------------------------- /archuseriso/aui-mkhybrid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/archuseriso/aui-mkhybrid -------------------------------------------------------------------------------- /archuseriso/aui-mkinstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/archuseriso/aui-mkinstall -------------------------------------------------------------------------------- /archuseriso/aui-mkiso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/archuseriso/aui-mkiso -------------------------------------------------------------------------------- /archuseriso/aui-mkusb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/archuseriso/aui-mkusb -------------------------------------------------------------------------------- /archuseriso/aui-run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/archuseriso/aui-run -------------------------------------------------------------------------------- /hd2aui/airootfs/etc/fstab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/hd2aui/airootfs/etc/fstab -------------------------------------------------------------------------------- /hd2aui/esp/limine.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/hd2aui/esp/limine.conf -------------------------------------------------------------------------------- /pkgbuild/aui-ipxe/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/pkgbuild/aui-ipxe/PKGBUILD -------------------------------------------------------------------------------- /pkgbuild/aui-ipxe/aui.ipxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/pkgbuild/aui-ipxe/aui.ipxe -------------------------------------------------------------------------------- /pkgbuild/aui-ipxe/general.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/pkgbuild/aui-ipxe/general.h -------------------------------------------------------------------------------- /pkgbuild/aui-ipxe/isrgrootx1.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/pkgbuild/aui-ipxe/isrgrootx1.pem -------------------------------------------------------------------------------- /pkgbuild/pacman-testing.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/pkgbuild/pacman-testing.conf -------------------------------------------------------------------------------- /pkgbuild/pacman.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/pkgbuild/pacman.conf -------------------------------------------------------------------------------- /pkgbuild/zfs-linux/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/pkgbuild/zfs-linux/PKGBUILD -------------------------------------------------------------------------------- /pkgbuild/zfs-linux/zfs.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/pkgbuild/zfs-linux/zfs.install -------------------------------------------------------------------------------- /pkgbuild/zfs-utils/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/pkgbuild/zfs-utils/PKGBUILD -------------------------------------------------------------------------------- /pkgbuild/zfs-utils/zfs-node-permission.conf: -------------------------------------------------------------------------------- 1 | z /dev/zfs 0666 - - 2 | -------------------------------------------------------------------------------- /profiles/cinnamon/airootfs-options/graphics/nvidia: -------------------------------------------------------------------------------- 1 | ./nvidia-open -------------------------------------------------------------------------------- /profiles/cinnamon/airootfs-options/graphics/nvidia-open/etc/modprobe.d/blacklist-nouveau.conf: -------------------------------------------------------------------------------- 1 | install nouveau /bin/false 2 | -------------------------------------------------------------------------------- /profiles/cinnamon/airootfs-options/graphics/nvidia-open/etc/modprobe.d/nvidia-drm.conf: -------------------------------------------------------------------------------- 1 | options nvidia-drm modeset=1 2 | -------------------------------------------------------------------------------- /profiles/cinnamon/airootfs-options/graphics/optimus-prime: -------------------------------------------------------------------------------- 1 | ./nvidia-open -------------------------------------------------------------------------------- /profiles/cinnamon/airootfs/etc/hostname: -------------------------------------------------------------------------------- 1 | archiso 2 | -------------------------------------------------------------------------------- /profiles/cinnamon/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=en_US.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/cinnamon/airootfs/etc/localtime: -------------------------------------------------------------------------------- 1 | /usr/share/zoneinfo/UTC -------------------------------------------------------------------------------- /profiles/cinnamon/airootfs/etc/machine-id: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /profiles/cinnamon/airootfs/etc/motd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/cinnamon/airootfs/etc/motd -------------------------------------------------------------------------------- /profiles/cinnamon/airootfs/etc/resolv.conf: -------------------------------------------------------------------------------- 1 | /run/systemd/resolve/stub-resolv.conf -------------------------------------------------------------------------------- /profiles/cinnamon/airootfs/etc/skel/.firstboot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /profiles/cinnamon/airootfs/etc/skel/.pam_environment: -------------------------------------------------------------------------------- 1 | TERMINAL=urxvt 2 | -------------------------------------------------------------------------------- /profiles/cinnamon/airootfs/etc/systemd/journald.conf.d/volatile-storage.conf: -------------------------------------------------------------------------------- 1 | [Journal] 2 | Storage=volatile 3 | -------------------------------------------------------------------------------- /profiles/cinnamon/airootfs/etc/systemd/networkd.conf.d/ipv6-privacy-extensions.conf: -------------------------------------------------------------------------------- 1 | [Network] 2 | IPv6PrivacyExtensions=yes 3 | -------------------------------------------------------------------------------- /profiles/cinnamon/airootfs/etc/systemd/system-preset/10-aui-default.preset: -------------------------------------------------------------------------------- 1 | disable systemd-networkd.service 2 | -------------------------------------------------------------------------------- /profiles/cinnamon/airootfs/etc/systemd/system/multi-user.target.wants/choose-mirror.service: -------------------------------------------------------------------------------- 1 | ../choose-mirror.service -------------------------------------------------------------------------------- /profiles/cinnamon/airootfs/etc/systemd/system/multi-user.target.wants/pacman-init.service: -------------------------------------------------------------------------------- 1 | ../pacman-init.service -------------------------------------------------------------------------------- /profiles/cinnamon/airootfs/etc/systemd/system/multi-user.target.wants/reflector.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/reflector.service -------------------------------------------------------------------------------- /profiles/cinnamon/airootfs/etc/systemd/system/multi-user.target.wants/vmtoolsd.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/vmtoolsd.service -------------------------------------------------------------------------------- /profiles/cinnamon/airootfs/etc/systemd/system/socket.target.wants/pcscd.socket: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/pcscd.socket -------------------------------------------------------------------------------- /profiles/cinnamon/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | FONT=eurlatgr 2 | -------------------------------------------------------------------------------- /profiles/cinnamon/airootfs/root/.zlogin: -------------------------------------------------------------------------------- 1 | ~/.automated_script.sh 2 | -------------------------------------------------------------------------------- /profiles/cinnamon/bootstrap_packages.x86_64: -------------------------------------------------------------------------------- 1 | arch-install-scripts 2 | base 3 | -------------------------------------------------------------------------------- /profiles/cinnamon/drive/hybrid/loader/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 15 2 | default archiso-aui-0-x86_64-linux.conf 3 | -------------------------------------------------------------------------------- /profiles/cinnamon/drive/img/loader/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 15 2 | default archiso-aui-0-x86_64-linux.conf 3 | -------------------------------------------------------------------------------- /profiles/cinnamon/drive/install/loader/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 15 2 | default archiso-aui-0-x86_64-linux.conf 3 | -------------------------------------------------------------------------------- /profiles/cinnamon/drive/liveusb/loader/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 15 2 | default archiso-aui-0-x86_64-linux.conf 3 | -------------------------------------------------------------------------------- /profiles/cinnamon/drive/liveusb/persistent/x86_64/upperdir/etc/systemd/system/etc-pacman.d-gnupg.mount: -------------------------------------------------------------------------------- 1 | /dev/null -------------------------------------------------------------------------------- /profiles/cinnamon/efiboot/loader/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 15 2 | default archiso-x86_64-linux.conf 3 | -------------------------------------------------------------------------------- /profiles/cinnamon/lang/cs_CZ/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=cs_CZ.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/cinnamon/lang/cs_CZ/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=cs_CZ.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/cinnamon/lang/cs_CZ/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=cz-lat2 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/cinnamon/lang/de_DE/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=de_DE.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/cinnamon/lang/de_DE/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=de_DE.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/cinnamon/lang/de_DE/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=de-latin1 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/cinnamon/lang/el_GR/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=el_GR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/cinnamon/lang/el_GR/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=el_GR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/cinnamon/lang/el_GR/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=gr 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/cinnamon/lang/es_ES/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=es_ES.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/cinnamon/lang/es_ES/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=es_ES.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/cinnamon/lang/es_ES/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=es 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/cinnamon/lang/fr_FR/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=fr_FR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/cinnamon/lang/fr_FR/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=fr_FR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/cinnamon/lang/fr_FR/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=fr-latin1 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/cinnamon/lang/hu_HU/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=hu_HU.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/cinnamon/lang/hu_HU/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=hu_HU.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/cinnamon/lang/hu_HU/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=hu 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/cinnamon/lang/it_IT/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=it_IT.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/cinnamon/lang/it_IT/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=it_IT.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/cinnamon/lang/it_IT/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=it 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/cinnamon/lang/nl_NL/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=nl_NL.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/cinnamon/lang/nl_NL/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=nl_NL.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/cinnamon/lang/nl_NL/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=nl 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/cinnamon/lang/pl_PL/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=pl_PL.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/cinnamon/lang/pl_PL/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=pl_PL.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/cinnamon/lang/pl_PL/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=pl2 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/cinnamon/lang/pt_PT/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=pt_PT.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/cinnamon/lang/pt_PT/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=pt_PT.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/cinnamon/lang/pt_PT/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=pt-latin1 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/cinnamon/lang/ro_RO/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=ro_RO.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/cinnamon/lang/ro_RO/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=ro_RO.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/cinnamon/lang/ro_RO/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=ro 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/cinnamon/lang/ru_RU/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=ru_RU.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/cinnamon/lang/ru_RU/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=ru_RU.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/cinnamon/lang/ru_RU/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=ru 2 | FONT=LatArCyrHeb-16 3 | -------------------------------------------------------------------------------- /profiles/cinnamon/lang/sr_RS@latin/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=sr_RS.UTF-8@latin 2 | -------------------------------------------------------------------------------- /profiles/cinnamon/lang/sr_RS@latin/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=sr_RS.UTF-8@latin 2 | -------------------------------------------------------------------------------- /profiles/cinnamon/lang/sr_RS@latin/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=sr-latin 2 | FONT=LatArCyrHeb-16 3 | -------------------------------------------------------------------------------- /profiles/cinnamon/lang/tr_TR/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=tr_TR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/cinnamon/lang/tr_TR/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=tr_TR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/cinnamon/lang/tr_TR/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=trq 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/cinnamon/lang/uk_UA/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=uk_UA.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/cinnamon/lang/uk_UA/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=uk_UA.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/cinnamon/lang/uk_UA/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=ua-utf 2 | FONT=LatArCyrHeb-16 3 | -------------------------------------------------------------------------------- /profiles/cinnamon/packages.x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/cinnamon/packages.x86_64 -------------------------------------------------------------------------------- /profiles/cinnamon/pacman.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/cinnamon/pacman.conf -------------------------------------------------------------------------------- /profiles/cinnamon/profiledef.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/cinnamon/profiledef.sh -------------------------------------------------------------------------------- /profiles/console/airootfs/etc/hostname: -------------------------------------------------------------------------------- 1 | archiso 2 | -------------------------------------------------------------------------------- /profiles/console/airootfs/etc/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/console/airootfs/etc/hosts -------------------------------------------------------------------------------- /profiles/console/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=en_US.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/console/airootfs/etc/localtime: -------------------------------------------------------------------------------- 1 | /usr/share/zoneinfo/UTC -------------------------------------------------------------------------------- /profiles/console/airootfs/etc/machine-id: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /profiles/console/airootfs/etc/motd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/console/airootfs/etc/motd -------------------------------------------------------------------------------- /profiles/console/airootfs/etc/resolv.conf: -------------------------------------------------------------------------------- 1 | /run/systemd/resolve/stub-resolv.conf -------------------------------------------------------------------------------- /profiles/console/airootfs/etc/systemd/journald.conf.d/volatile-storage.conf: -------------------------------------------------------------------------------- 1 | [Journal] 2 | Storage=volatile 3 | -------------------------------------------------------------------------------- /profiles/console/airootfs/etc/systemd/networkd.conf.d/ipv6-privacy-extensions.conf: -------------------------------------------------------------------------------- 1 | [Network] 2 | IPv6PrivacyExtensions=yes 3 | -------------------------------------------------------------------------------- /profiles/console/airootfs/etc/systemd/system/multi-user.target.wants/choose-mirror.service: -------------------------------------------------------------------------------- 1 | ../choose-mirror.service -------------------------------------------------------------------------------- /profiles/console/airootfs/etc/systemd/system/multi-user.target.wants/iwd.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/iwd.service -------------------------------------------------------------------------------- /profiles/console/airootfs/etc/systemd/system/multi-user.target.wants/livecd-talk.service: -------------------------------------------------------------------------------- 1 | /etc/systemd/system/livecd-talk.service -------------------------------------------------------------------------------- /profiles/console/airootfs/etc/systemd/system/multi-user.target.wants/pacman-init.service: -------------------------------------------------------------------------------- 1 | ../pacman-init.service -------------------------------------------------------------------------------- /profiles/console/airootfs/etc/systemd/system/multi-user.target.wants/reflector.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/reflector.service -------------------------------------------------------------------------------- /profiles/console/airootfs/etc/systemd/system/multi-user.target.wants/vmtoolsd.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/vmtoolsd.service -------------------------------------------------------------------------------- /profiles/console/airootfs/etc/systemd/system/socket.target.wants/pcscd.socket: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/pcscd.socket -------------------------------------------------------------------------------- /profiles/console/airootfs/etc/systemd/system/sound.target.wants/livecd-alsa-unmuter.service: -------------------------------------------------------------------------------- 1 | ../livecd-alsa-unmuter.service -------------------------------------------------------------------------------- /profiles/console/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | FONT=eurlatgr 2 | -------------------------------------------------------------------------------- /profiles/console/bootstrap_packages.x86_64: -------------------------------------------------------------------------------- 1 | arch-install-scripts 2 | base 3 | -------------------------------------------------------------------------------- /profiles/console/drive/hybrid/loader/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 15 2 | default archiso-aui-0-x86_64-linux.conf 3 | -------------------------------------------------------------------------------- /profiles/console/drive/img/loader/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 15 2 | default archiso-aui-0-x86_64-linux.conf 3 | -------------------------------------------------------------------------------- /profiles/console/drive/install/loader/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 15 2 | default archiso-aui-0-x86_64-linux.conf 3 | -------------------------------------------------------------------------------- /profiles/console/drive/liveusb/loader/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 15 2 | default archiso-aui-0-x86_64-linux.conf 3 | -------------------------------------------------------------------------------- /profiles/console/drive/liveusb/persistent/x86_64/upperdir/etc/systemd/system/etc-pacman.d-gnupg.mount: -------------------------------------------------------------------------------- 1 | /dev/null -------------------------------------------------------------------------------- /profiles/console/drive/mediumdef.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/console/drive/mediumdef.sh -------------------------------------------------------------------------------- /profiles/console/efiboot/loader/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 15 2 | default archiso-x86_64-linux.conf 3 | -------------------------------------------------------------------------------- /profiles/console/lang/cs_CZ/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=cs_CZ.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/console/lang/cs_CZ/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=cs_CZ.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/console/lang/cs_CZ/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=cz-lat2 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/console/lang/cs_CZ/packages.x86_64: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /profiles/console/lang/de_DE/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=de_DE.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/console/lang/de_DE/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=de_DE.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/console/lang/de_DE/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=de-latin1 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/console/lang/de_DE/packages.x86_64: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /profiles/console/lang/el_GR/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=el_GR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/console/lang/el_GR/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=el_GR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/console/lang/el_GR/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=gr 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/console/lang/el_GR/packages.x86_64: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /profiles/console/lang/es_ES/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=es_ES.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/console/lang/es_ES/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=es_ES.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/console/lang/es_ES/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=es 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/console/lang/es_ES/packages.x86_64: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /profiles/console/lang/fr_FR/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=fr_FR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/console/lang/fr_FR/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=fr_FR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/console/lang/fr_FR/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=fr-latin1 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/console/lang/fr_FR/packages.x86_64: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /profiles/console/lang/hu_HU/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=hu_HU.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/console/lang/hu_HU/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=hu_HU.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/console/lang/hu_HU/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=hu 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/console/lang/hu_HU/packages.x86_64: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /profiles/console/lang/it_IT/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=it_IT.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/console/lang/it_IT/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=it_IT.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/console/lang/it_IT/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=it 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/console/lang/it_IT/packages.x86_64: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /profiles/console/lang/nl_NL/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=nl_NL.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/console/lang/nl_NL/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=nl_NL.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/console/lang/nl_NL/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=nl 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/console/lang/nl_NL/packages.x86_64: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /profiles/console/lang/pl_PL/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=pl_PL.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/console/lang/pl_PL/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=pl_PL.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/console/lang/pl_PL/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=pl2 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/console/lang/pl_PL/packages.x86_64: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /profiles/console/lang/pt_PT/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=pt_PT.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/console/lang/pt_PT/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=pt_PT.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/console/lang/pt_PT/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=pt-latin1 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/console/lang/pt_PT/packages.x86_64: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /profiles/console/lang/ro_RO/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=ro_RO.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/console/lang/ro_RO/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=ro_RO.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/console/lang/ro_RO/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=ro 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/console/lang/ro_RO/packages.x86_64: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /profiles/console/lang/ru_RU/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=ru_RU.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/console/lang/ru_RU/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=ru_RU.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/console/lang/ru_RU/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=ru 2 | FONT=LatArCyrHeb-16 3 | -------------------------------------------------------------------------------- /profiles/console/lang/ru_RU/packages.x86_64: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /profiles/console/lang/sr_RS@latin/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=sr_RS.UTF-8@latin 2 | -------------------------------------------------------------------------------- /profiles/console/lang/sr_RS@latin/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=sr_RS.UTF-8@latin 2 | -------------------------------------------------------------------------------- /profiles/console/lang/sr_RS@latin/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=sr-latin 2 | FONT=LatArCyrHeb-16 3 | -------------------------------------------------------------------------------- /profiles/console/lang/sr_RS@latin/packages.x86_64: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /profiles/console/lang/tr_TR/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=tr_TR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/console/lang/tr_TR/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=tr_TR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/console/lang/tr_TR/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=trq 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/console/lang/tr_TR/packages.x86_64: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /profiles/console/lang/uk_UA/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=uk_UA.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/console/lang/uk_UA/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=uk_UA.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/console/lang/uk_UA/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=ua-utf 2 | FONT=LatArCyrHeb-16 3 | -------------------------------------------------------------------------------- /profiles/console/lang/uk_UA/packages.x86_64: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /profiles/console/packages.x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/console/packages.x86_64 -------------------------------------------------------------------------------- /profiles/console/pacman.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/console/pacman.conf -------------------------------------------------------------------------------- /profiles/console/profiledef.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/console/profiledef.sh -------------------------------------------------------------------------------- /profiles/cutefish/airootfs-options/graphics/nvidia: -------------------------------------------------------------------------------- 1 | ./nvidia-open -------------------------------------------------------------------------------- /profiles/cutefish/airootfs-options/graphics/nvidia-open/etc/modprobe.d/blacklist-nouveau.conf: -------------------------------------------------------------------------------- 1 | install nouveau /bin/false 2 | -------------------------------------------------------------------------------- /profiles/cutefish/airootfs-options/graphics/nvidia-open/etc/modprobe.d/nvidia-drm.conf: -------------------------------------------------------------------------------- 1 | options nvidia-drm modeset=1 2 | -------------------------------------------------------------------------------- /profiles/cutefish/airootfs-options/graphics/optimus-prime: -------------------------------------------------------------------------------- 1 | ./nvidia-open -------------------------------------------------------------------------------- /profiles/cutefish/airootfs/etc/hostname: -------------------------------------------------------------------------------- 1 | archiso 2 | -------------------------------------------------------------------------------- /profiles/cutefish/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=en_US.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/cutefish/airootfs/etc/localtime: -------------------------------------------------------------------------------- 1 | /usr/share/zoneinfo/UTC -------------------------------------------------------------------------------- /profiles/cutefish/airootfs/etc/machine-id: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /profiles/cutefish/airootfs/etc/motd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/cutefish/airootfs/etc/motd -------------------------------------------------------------------------------- /profiles/cutefish/airootfs/etc/resolv.conf: -------------------------------------------------------------------------------- 1 | /run/systemd/resolve/stub-resolv.conf -------------------------------------------------------------------------------- /profiles/cutefish/airootfs/etc/skel/.firstboot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /profiles/cutefish/airootfs/etc/skel/.pam_environment: -------------------------------------------------------------------------------- 1 | GTK_USE_PORTAL=1 2 | TERMINAL=urxvt 3 | -------------------------------------------------------------------------------- /profiles/cutefish/airootfs/etc/systemd/journald.conf.d/volatile-storage.conf: -------------------------------------------------------------------------------- 1 | [Journal] 2 | Storage=volatile 3 | -------------------------------------------------------------------------------- /profiles/cutefish/airootfs/etc/systemd/networkd.conf.d/ipv6-privacy-extensions.conf: -------------------------------------------------------------------------------- 1 | [Network] 2 | IPv6PrivacyExtensions=yes 3 | -------------------------------------------------------------------------------- /profiles/cutefish/airootfs/etc/systemd/system-preset/10-aui-default.preset: -------------------------------------------------------------------------------- 1 | disable systemd-networkd.service 2 | -------------------------------------------------------------------------------- /profiles/cutefish/airootfs/etc/systemd/system/multi-user.target.wants/choose-mirror.service: -------------------------------------------------------------------------------- 1 | ../choose-mirror.service -------------------------------------------------------------------------------- /profiles/cutefish/airootfs/etc/systemd/system/multi-user.target.wants/pacman-init.service: -------------------------------------------------------------------------------- 1 | ../pacman-init.service -------------------------------------------------------------------------------- /profiles/cutefish/airootfs/etc/systemd/system/multi-user.target.wants/reflector.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/reflector.service -------------------------------------------------------------------------------- /profiles/cutefish/airootfs/etc/systemd/system/multi-user.target.wants/vmtoolsd.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/vmtoolsd.service -------------------------------------------------------------------------------- /profiles/cutefish/airootfs/etc/systemd/system/socket.target.wants/pcscd.socket: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/pcscd.socket -------------------------------------------------------------------------------- /profiles/cutefish/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | FONT=eurlatgr 2 | -------------------------------------------------------------------------------- /profiles/cutefish/airootfs/root/.zlogin: -------------------------------------------------------------------------------- 1 | ~/.automated_script.sh 2 | -------------------------------------------------------------------------------- /profiles/cutefish/bootstrap_packages.x86_64: -------------------------------------------------------------------------------- 1 | arch-install-scripts 2 | base 3 | -------------------------------------------------------------------------------- /profiles/cutefish/drive/hybrid/loader/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 15 2 | default archiso-aui-0-x86_64-linux.conf 3 | -------------------------------------------------------------------------------- /profiles/cutefish/drive/img/loader/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 15 2 | default archiso-aui-0-x86_64-linux.conf 3 | -------------------------------------------------------------------------------- /profiles/cutefish/drive/install/loader/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 15 2 | default archiso-aui-0-x86_64-linux.conf 3 | -------------------------------------------------------------------------------- /profiles/cutefish/drive/liveusb/loader/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 15 2 | default archiso-aui-0-x86_64-linux.conf 3 | -------------------------------------------------------------------------------- /profiles/cutefish/drive/liveusb/persistent/x86_64/upperdir/etc/systemd/system/etc-pacman.d-gnupg.mount: -------------------------------------------------------------------------------- 1 | /dev/null -------------------------------------------------------------------------------- /profiles/cutefish/efiboot/loader/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 15 2 | default archiso-x86_64-linux.conf 3 | -------------------------------------------------------------------------------- /profiles/cutefish/lang/cs_CZ/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=cs_CZ.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/cutefish/lang/cs_CZ/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=cs_CZ.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/cutefish/lang/cs_CZ/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=cz-lat2 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/cutefish/lang/de_DE/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=de_DE.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/cutefish/lang/de_DE/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=de_DE.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/cutefish/lang/de_DE/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=de-latin1 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/cutefish/lang/el_GR/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=el_GR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/cutefish/lang/el_GR/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=el_GR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/cutefish/lang/el_GR/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=gr 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/cutefish/lang/es_ES/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=es_ES.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/cutefish/lang/es_ES/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=es_ES.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/cutefish/lang/es_ES/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=es 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/cutefish/lang/fr_FR/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=fr_FR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/cutefish/lang/fr_FR/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=fr_FR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/cutefish/lang/fr_FR/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=fr-latin1 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/cutefish/lang/hu_HU/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=hu_HU.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/cutefish/lang/hu_HU/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=hu_HU.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/cutefish/lang/hu_HU/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=hu 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/cutefish/lang/it_IT/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=it_IT.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/cutefish/lang/it_IT/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=it_IT.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/cutefish/lang/it_IT/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=it 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/cutefish/lang/nl_NL/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=nl_NL.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/cutefish/lang/nl_NL/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=nl_NL.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/cutefish/lang/nl_NL/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=nl 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/cutefish/lang/pl_PL/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=pl_PL.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/cutefish/lang/pl_PL/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=pl_PL.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/cutefish/lang/pl_PL/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=pl2 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/cutefish/lang/pt_PT/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=pt_PT.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/cutefish/lang/pt_PT/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=pt_PT.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/cutefish/lang/pt_PT/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=pt-latin1 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/cutefish/lang/ro_RO/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=ro_RO.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/cutefish/lang/ro_RO/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=ro_RO.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/cutefish/lang/ro_RO/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=ro 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/cutefish/lang/ru_RU/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=ru_RU.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/cutefish/lang/ru_RU/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=ru_RU.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/cutefish/lang/ru_RU/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=ru 2 | FONT=LatArCyrHeb-16 3 | -------------------------------------------------------------------------------- /profiles/cutefish/lang/sr_RS@latin/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=sr_RS.UTF-8@latin 2 | -------------------------------------------------------------------------------- /profiles/cutefish/lang/sr_RS@latin/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=sr_RS.UTF-8@latin 2 | -------------------------------------------------------------------------------- /profiles/cutefish/lang/sr_RS@latin/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=sr-latin 2 | FONT=LatArCyrHeb-16 3 | -------------------------------------------------------------------------------- /profiles/cutefish/lang/tr_TR/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=tr_TR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/cutefish/lang/tr_TR/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=tr_TR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/cutefish/lang/tr_TR/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=trq 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/cutefish/lang/uk_UA/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=uk_UA.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/cutefish/lang/uk_UA/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=uk_UA.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/cutefish/lang/uk_UA/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=ua-utf 2 | FONT=LatArCyrHeb-16 3 | -------------------------------------------------------------------------------- /profiles/cutefish/packages.x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/cutefish/packages.x86_64 -------------------------------------------------------------------------------- /profiles/cutefish/pacman.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/cutefish/pacman.conf -------------------------------------------------------------------------------- /profiles/cutefish/profiledef.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/cutefish/profiledef.sh -------------------------------------------------------------------------------- /profiles/deepin/airootfs-options/graphics/nvidia: -------------------------------------------------------------------------------- 1 | ./nvidia-open -------------------------------------------------------------------------------- /profiles/deepin/airootfs-options/graphics/nvidia-open/etc/modprobe.d/blacklist-nouveau.conf: -------------------------------------------------------------------------------- 1 | install nouveau /bin/false 2 | -------------------------------------------------------------------------------- /profiles/deepin/airootfs-options/graphics/nvidia-open/etc/modprobe.d/nvidia-drm.conf: -------------------------------------------------------------------------------- 1 | options nvidia-drm modeset=1 2 | -------------------------------------------------------------------------------- /profiles/deepin/airootfs-options/graphics/optimus-prime: -------------------------------------------------------------------------------- 1 | ./nvidia-open -------------------------------------------------------------------------------- /profiles/deepin/airootfs/etc/hostname: -------------------------------------------------------------------------------- 1 | archiso 2 | -------------------------------------------------------------------------------- /profiles/deepin/airootfs/etc/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/deepin/airootfs/etc/hosts -------------------------------------------------------------------------------- /profiles/deepin/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=en_US.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/deepin/airootfs/etc/localtime: -------------------------------------------------------------------------------- 1 | /usr/share/zoneinfo/UTC -------------------------------------------------------------------------------- /profiles/deepin/airootfs/etc/machine-id: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /profiles/deepin/airootfs/etc/motd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/deepin/airootfs/etc/motd -------------------------------------------------------------------------------- /profiles/deepin/airootfs/etc/passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/deepin/airootfs/etc/passwd -------------------------------------------------------------------------------- /profiles/deepin/airootfs/etc/resolv.conf: -------------------------------------------------------------------------------- 1 | /run/systemd/resolve/stub-resolv.conf -------------------------------------------------------------------------------- /profiles/deepin/airootfs/etc/shadow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/deepin/airootfs/etc/shadow -------------------------------------------------------------------------------- /profiles/deepin/airootfs/etc/skel/.firstboot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /profiles/deepin/airootfs/etc/skel/.pam_environment: -------------------------------------------------------------------------------- 1 | TERMINAL=urxvt 2 | -------------------------------------------------------------------------------- /profiles/deepin/airootfs/etc/systemd/journald.conf.d/volatile-storage.conf: -------------------------------------------------------------------------------- 1 | [Journal] 2 | Storage=volatile 3 | -------------------------------------------------------------------------------- /profiles/deepin/airootfs/etc/systemd/networkd.conf.d/ipv6-privacy-extensions.conf: -------------------------------------------------------------------------------- 1 | [Network] 2 | IPv6PrivacyExtensions=yes 3 | -------------------------------------------------------------------------------- /profiles/deepin/airootfs/etc/systemd/system-preset/10-aui-default.preset: -------------------------------------------------------------------------------- 1 | disable systemd-networkd.service 2 | -------------------------------------------------------------------------------- /profiles/deepin/airootfs/etc/systemd/system/multi-user.target.wants/choose-mirror.service: -------------------------------------------------------------------------------- 1 | ../choose-mirror.service -------------------------------------------------------------------------------- /profiles/deepin/airootfs/etc/systemd/system/multi-user.target.wants/pacman-init.service: -------------------------------------------------------------------------------- 1 | ../pacman-init.service -------------------------------------------------------------------------------- /profiles/deepin/airootfs/etc/systemd/system/multi-user.target.wants/reflector.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/reflector.service -------------------------------------------------------------------------------- /profiles/deepin/airootfs/etc/systemd/system/multi-user.target.wants/vmtoolsd.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/vmtoolsd.service -------------------------------------------------------------------------------- /profiles/deepin/airootfs/etc/systemd/system/socket.target.wants/pcscd.socket: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/pcscd.socket -------------------------------------------------------------------------------- /profiles/deepin/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | FONT=eurlatgr 2 | -------------------------------------------------------------------------------- /profiles/deepin/airootfs/root/.zlogin: -------------------------------------------------------------------------------- 1 | ~/.automated_script.sh 2 | -------------------------------------------------------------------------------- /profiles/deepin/bootstrap_packages.x86_64: -------------------------------------------------------------------------------- 1 | arch-install-scripts 2 | base 3 | -------------------------------------------------------------------------------- /profiles/deepin/drive/hybrid/loader/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 15 2 | default archiso-aui-0-x86_64-linux.conf 3 | -------------------------------------------------------------------------------- /profiles/deepin/drive/img/loader/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 15 2 | default archiso-aui-0-x86_64-linux.conf 3 | -------------------------------------------------------------------------------- /profiles/deepin/drive/install/loader/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 15 2 | default archiso-aui-0-x86_64-linux.conf 3 | -------------------------------------------------------------------------------- /profiles/deepin/drive/liveusb/loader/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 15 2 | default archiso-aui-0-x86_64-linux.conf 3 | -------------------------------------------------------------------------------- /profiles/deepin/drive/liveusb/persistent/x86_64/upperdir/etc/systemd/system/etc-pacman.d-gnupg.mount: -------------------------------------------------------------------------------- 1 | /dev/null -------------------------------------------------------------------------------- /profiles/deepin/drive/mediumdef.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/deepin/drive/mediumdef.sh -------------------------------------------------------------------------------- /profiles/deepin/efiboot/loader/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 15 2 | default archiso-x86_64-linux.conf 3 | -------------------------------------------------------------------------------- /profiles/deepin/lang/cs_CZ/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=cs_CZ.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/deepin/lang/cs_CZ/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=cs_CZ.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/deepin/lang/cs_CZ/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=cz-lat2 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/deepin/lang/de_DE/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=de_DE.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/deepin/lang/de_DE/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=de_DE.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/deepin/lang/de_DE/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=de-latin1 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/deepin/lang/el_GR/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=el_GR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/deepin/lang/el_GR/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=el_GR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/deepin/lang/el_GR/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=gr 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/deepin/lang/es_ES/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=es_ES.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/deepin/lang/es_ES/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=es_ES.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/deepin/lang/es_ES/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=es 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/deepin/lang/fr_FR/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=fr_FR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/deepin/lang/fr_FR/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=fr_FR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/deepin/lang/fr_FR/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=fr-latin1 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/deepin/lang/hu_HU/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=hu_HU.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/deepin/lang/hu_HU/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=hu_HU.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/deepin/lang/hu_HU/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=hu 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/deepin/lang/it_IT/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=it_IT.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/deepin/lang/it_IT/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=it_IT.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/deepin/lang/it_IT/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=it 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/deepin/lang/nl_NL/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=nl_NL.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/deepin/lang/nl_NL/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=nl_NL.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/deepin/lang/nl_NL/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=nl 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/deepin/lang/pl_PL/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=pl_PL.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/deepin/lang/pl_PL/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=pl_PL.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/deepin/lang/pl_PL/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=pl2 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/deepin/lang/pt_PT/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=pt_PT.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/deepin/lang/pt_PT/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=pt_PT.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/deepin/lang/pt_PT/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=pt-latin1 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/deepin/lang/ro_RO/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=ro_RO.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/deepin/lang/ro_RO/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=ro_RO.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/deepin/lang/ro_RO/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=ro 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/deepin/lang/ru_RU/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=ru_RU.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/deepin/lang/ru_RU/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=ru_RU.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/deepin/lang/ru_RU/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=ru 2 | FONT=LatArCyrHeb-16 3 | -------------------------------------------------------------------------------- /profiles/deepin/lang/sr_RS@latin/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=sr_RS.UTF-8@latin 2 | -------------------------------------------------------------------------------- /profiles/deepin/lang/sr_RS@latin/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=sr_RS.UTF-8@latin 2 | -------------------------------------------------------------------------------- /profiles/deepin/lang/sr_RS@latin/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=sr-latin 2 | FONT=LatArCyrHeb-16 3 | -------------------------------------------------------------------------------- /profiles/deepin/lang/tr_TR/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=tr_TR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/deepin/lang/tr_TR/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=tr_TR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/deepin/lang/tr_TR/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=trq 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/deepin/lang/uk_UA/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=uk_UA.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/deepin/lang/uk_UA/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=uk_UA.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/deepin/lang/uk_UA/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=ua-utf 2 | FONT=LatArCyrHeb-16 3 | -------------------------------------------------------------------------------- /profiles/deepin/packages.x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/deepin/packages.x86_64 -------------------------------------------------------------------------------- /profiles/deepin/pacman-testing.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/deepin/pacman-testing.conf -------------------------------------------------------------------------------- /profiles/deepin/pacman.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/deepin/pacman.conf -------------------------------------------------------------------------------- /profiles/deepin/profiledef.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/deepin/profiledef.sh -------------------------------------------------------------------------------- /profiles/deepin/syslinux/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/deepin/syslinux/splash.png -------------------------------------------------------------------------------- /profiles/gnome/airootfs-options/graphics/nvidia: -------------------------------------------------------------------------------- 1 | ./nvidia-open -------------------------------------------------------------------------------- /profiles/gnome/airootfs-options/graphics/nvidia-open/etc/modprobe.d/blacklist-nouveau.conf: -------------------------------------------------------------------------------- 1 | install nouveau /bin/false 2 | -------------------------------------------------------------------------------- /profiles/gnome/airootfs-options/graphics/nvidia-open/etc/modprobe.d/nvidia-drm.conf: -------------------------------------------------------------------------------- 1 | options nvidia-drm modeset=1 2 | -------------------------------------------------------------------------------- /profiles/gnome/airootfs-options/graphics/optimus-prime: -------------------------------------------------------------------------------- 1 | ./nvidia-open -------------------------------------------------------------------------------- /profiles/gnome/airootfs/etc/hostname: -------------------------------------------------------------------------------- 1 | archiso 2 | -------------------------------------------------------------------------------- /profiles/gnome/airootfs/etc/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/gnome/airootfs/etc/hosts -------------------------------------------------------------------------------- /profiles/gnome/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=en_US.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/gnome/airootfs/etc/localtime: -------------------------------------------------------------------------------- 1 | /usr/share/zoneinfo/UTC -------------------------------------------------------------------------------- /profiles/gnome/airootfs/etc/machine-id: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /profiles/gnome/airootfs/etc/motd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/gnome/airootfs/etc/motd -------------------------------------------------------------------------------- /profiles/gnome/airootfs/etc/passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/gnome/airootfs/etc/passwd -------------------------------------------------------------------------------- /profiles/gnome/airootfs/etc/resolv.conf: -------------------------------------------------------------------------------- 1 | /run/systemd/resolve/stub-resolv.conf -------------------------------------------------------------------------------- /profiles/gnome/airootfs/etc/shadow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/gnome/airootfs/etc/shadow -------------------------------------------------------------------------------- /profiles/gnome/airootfs/etc/skel/.firstboot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /profiles/gnome/airootfs/etc/skel/.pam_environment: -------------------------------------------------------------------------------- 1 | TERMINAL=urxvt 2 | -------------------------------------------------------------------------------- /profiles/gnome/airootfs/etc/systemd/journald.conf.d/volatile-storage.conf: -------------------------------------------------------------------------------- 1 | [Journal] 2 | Storage=volatile 3 | -------------------------------------------------------------------------------- /profiles/gnome/airootfs/etc/systemd/networkd.conf.d/ipv6-privacy-extensions.conf: -------------------------------------------------------------------------------- 1 | [Network] 2 | IPv6PrivacyExtensions=yes 3 | -------------------------------------------------------------------------------- /profiles/gnome/airootfs/etc/systemd/system-preset/10-aui-default.preset: -------------------------------------------------------------------------------- 1 | disable systemd-networkd.service 2 | -------------------------------------------------------------------------------- /profiles/gnome/airootfs/etc/systemd/system/dbus-org.freedesktop.resolve1.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/systemd-resolved.service -------------------------------------------------------------------------------- /profiles/gnome/airootfs/etc/systemd/system/multi-user.target.wants/choose-mirror.service: -------------------------------------------------------------------------------- 1 | ../choose-mirror.service -------------------------------------------------------------------------------- /profiles/gnome/airootfs/etc/systemd/system/multi-user.target.wants/pacman-init.service: -------------------------------------------------------------------------------- 1 | ../pacman-init.service -------------------------------------------------------------------------------- /profiles/gnome/airootfs/etc/systemd/system/multi-user.target.wants/reflector.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/reflector.service -------------------------------------------------------------------------------- /profiles/gnome/airootfs/etc/systemd/system/multi-user.target.wants/vmtoolsd.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/vmtoolsd.service -------------------------------------------------------------------------------- /profiles/gnome/airootfs/etc/systemd/system/socket.target.wants/pcscd.socket: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/pcscd.socket -------------------------------------------------------------------------------- /profiles/gnome/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | FONT=eurlatgr 2 | -------------------------------------------------------------------------------- /profiles/gnome/airootfs/root/.zlogin: -------------------------------------------------------------------------------- 1 | ~/.automated_script.sh 2 | -------------------------------------------------------------------------------- /profiles/gnome/bootstrap_packages.x86_64: -------------------------------------------------------------------------------- 1 | arch-install-scripts 2 | base 3 | -------------------------------------------------------------------------------- /profiles/gnome/drive/hybrid/loader/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 15 2 | default archiso-aui-0-x86_64-linux.conf 3 | -------------------------------------------------------------------------------- /profiles/gnome/drive/img/loader/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 15 2 | default archiso-aui-0-x86_64-linux.conf 3 | -------------------------------------------------------------------------------- /profiles/gnome/drive/install/loader/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 15 2 | default archiso-aui-0-x86_64-linux.conf 3 | -------------------------------------------------------------------------------- /profiles/gnome/drive/liveusb/loader/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 15 2 | default archiso-aui-0-x86_64-linux.conf 3 | -------------------------------------------------------------------------------- /profiles/gnome/drive/liveusb/persistent/x86_64/upperdir/etc/systemd/system/etc-pacman.d-gnupg.mount: -------------------------------------------------------------------------------- 1 | /dev/null -------------------------------------------------------------------------------- /profiles/gnome/drive/mediumdef.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/gnome/drive/mediumdef.sh -------------------------------------------------------------------------------- /profiles/gnome/efiboot/loader/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 15 2 | default archiso-x86_64-linux.conf 3 | -------------------------------------------------------------------------------- /profiles/gnome/lang/cs_CZ/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=cs_CZ.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/gnome/lang/cs_CZ/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=cs_CZ.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/gnome/lang/cs_CZ/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=cz-lat2 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/gnome/lang/de_DE/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=de_DE.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/gnome/lang/de_DE/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=de_DE.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/gnome/lang/de_DE/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=de-latin1 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/gnome/lang/el_GR/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=el_GR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/gnome/lang/el_GR/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=el_GR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/gnome/lang/el_GR/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=gr 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/gnome/lang/es_ES/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=es_ES.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/gnome/lang/es_ES/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=es_ES.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/gnome/lang/es_ES/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=es 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/gnome/lang/fr_FR/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=fr_FR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/gnome/lang/fr_FR/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=fr_FR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/gnome/lang/fr_FR/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=fr-latin1 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/gnome/lang/hu_HU/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=hu_HU.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/gnome/lang/hu_HU/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=hu_HU.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/gnome/lang/hu_HU/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=hu 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/gnome/lang/it_IT/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=it_IT.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/gnome/lang/it_IT/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=it_IT.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/gnome/lang/it_IT/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=it 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/gnome/lang/nl_NL/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=nl_NL.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/gnome/lang/nl_NL/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=nl_NL.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/gnome/lang/nl_NL/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=nl 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/gnome/lang/pl_PL/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=pl_PL.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/gnome/lang/pl_PL/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=pl_PL.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/gnome/lang/pl_PL/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=pl2 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/gnome/lang/pt_PT/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=pt_PT.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/gnome/lang/pt_PT/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=pt_PT.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/gnome/lang/pt_PT/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=pt-latin1 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/gnome/lang/ro_RO/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=ro_RO.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/gnome/lang/ro_RO/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=ro_RO.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/gnome/lang/ro_RO/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=ro 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/gnome/lang/ru_RU/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=ru_RU.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/gnome/lang/ru_RU/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=ru_RU.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/gnome/lang/ru_RU/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=ru 2 | FONT=LatArCyrHeb-16 3 | -------------------------------------------------------------------------------- /profiles/gnome/lang/sr_RS@latin/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=sr_RS.UTF-8@latin 2 | -------------------------------------------------------------------------------- /profiles/gnome/lang/sr_RS@latin/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=sr_RS.UTF-8@latin 2 | -------------------------------------------------------------------------------- /profiles/gnome/lang/sr_RS@latin/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=sr-latin 2 | FONT=LatArCyrHeb-16 3 | -------------------------------------------------------------------------------- /profiles/gnome/lang/tr_TR/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=tr_TR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/gnome/lang/tr_TR/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=tr_TR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/gnome/lang/tr_TR/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=trq 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/gnome/lang/uk_UA/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=uk_UA.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/gnome/lang/uk_UA/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=uk_UA.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/gnome/lang/uk_UA/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=ua-utf 2 | FONT=LatArCyrHeb-16 3 | -------------------------------------------------------------------------------- /profiles/gnome/packages.x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/gnome/packages.x86_64 -------------------------------------------------------------------------------- /profiles/gnome/pacman-testing.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/gnome/pacman-testing.conf -------------------------------------------------------------------------------- /profiles/gnome/pacman.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/gnome/pacman.conf -------------------------------------------------------------------------------- /profiles/gnome/profiledef.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/gnome/profiledef.sh -------------------------------------------------------------------------------- /profiles/gnome/syslinux/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/gnome/syslinux/splash.png -------------------------------------------------------------------------------- /profiles/i3/airootfs-options/graphics/nvidia: -------------------------------------------------------------------------------- 1 | ./nvidia-open -------------------------------------------------------------------------------- /profiles/i3/airootfs-options/graphics/nvidia-open/etc/modprobe.d/blacklist-nouveau.conf: -------------------------------------------------------------------------------- 1 | install nouveau /bin/false 2 | -------------------------------------------------------------------------------- /profiles/i3/airootfs-options/graphics/nvidia-open/etc/modprobe.d/nvidia-drm.conf: -------------------------------------------------------------------------------- 1 | options nvidia-drm modeset=1 2 | -------------------------------------------------------------------------------- /profiles/i3/airootfs-options/graphics/optimus-prime: -------------------------------------------------------------------------------- 1 | ./nvidia-open -------------------------------------------------------------------------------- /profiles/i3/airootfs/etc/hostname: -------------------------------------------------------------------------------- 1 | archiso 2 | -------------------------------------------------------------------------------- /profiles/i3/airootfs/etc/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/i3/airootfs/etc/hosts -------------------------------------------------------------------------------- /profiles/i3/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=en_US.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/i3/airootfs/etc/localtime: -------------------------------------------------------------------------------- 1 | /usr/share/zoneinfo/UTC -------------------------------------------------------------------------------- /profiles/i3/airootfs/etc/machine-id: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /profiles/i3/airootfs/etc/motd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/i3/airootfs/etc/motd -------------------------------------------------------------------------------- /profiles/i3/airootfs/etc/passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/i3/airootfs/etc/passwd -------------------------------------------------------------------------------- /profiles/i3/airootfs/etc/resolv.conf: -------------------------------------------------------------------------------- 1 | /run/systemd/resolve/stub-resolv.conf -------------------------------------------------------------------------------- /profiles/i3/airootfs/etc/shadow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/i3/airootfs/etc/shadow -------------------------------------------------------------------------------- /profiles/i3/airootfs/etc/skel/.firstboot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /profiles/i3/airootfs/etc/systemd/journald.conf.d/volatile-storage.conf: -------------------------------------------------------------------------------- 1 | [Journal] 2 | Storage=volatile 3 | -------------------------------------------------------------------------------- /profiles/i3/airootfs/etc/systemd/networkd.conf.d/ipv6-privacy-extensions.conf: -------------------------------------------------------------------------------- 1 | [Network] 2 | IPv6PrivacyExtensions=yes 3 | -------------------------------------------------------------------------------- /profiles/i3/airootfs/etc/systemd/system-preset/10-aui-default.preset: -------------------------------------------------------------------------------- 1 | disable systemd-networkd.service 2 | -------------------------------------------------------------------------------- /profiles/i3/airootfs/etc/systemd/system/dbus-org.freedesktop.ModemManager1.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/ModemManager.service -------------------------------------------------------------------------------- /profiles/i3/airootfs/etc/systemd/system/dbus-org.freedesktop.resolve1.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/systemd-resolved.service -------------------------------------------------------------------------------- /profiles/i3/airootfs/etc/systemd/system/dbus-org.freedesktop.timesync1.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/systemd-timesyncd.service -------------------------------------------------------------------------------- /profiles/i3/airootfs/etc/systemd/system/multi-user.target.wants/ModemManager.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/ModemManager.service -------------------------------------------------------------------------------- /profiles/i3/airootfs/etc/systemd/system/multi-user.target.wants/choose-mirror.service: -------------------------------------------------------------------------------- 1 | ../choose-mirror.service -------------------------------------------------------------------------------- /profiles/i3/airootfs/etc/systemd/system/multi-user.target.wants/pacman-init.service: -------------------------------------------------------------------------------- 1 | ../pacman-init.service -------------------------------------------------------------------------------- /profiles/i3/airootfs/etc/systemd/system/multi-user.target.wants/reflector.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/reflector.service -------------------------------------------------------------------------------- /profiles/i3/airootfs/etc/systemd/system/multi-user.target.wants/vboxservice.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/vboxservice.service -------------------------------------------------------------------------------- /profiles/i3/airootfs/etc/systemd/system/multi-user.target.wants/vmtoolsd.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/vmtoolsd.service -------------------------------------------------------------------------------- /profiles/i3/airootfs/etc/systemd/system/socket.target.wants/pcscd.socket: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/pcscd.socket -------------------------------------------------------------------------------- /profiles/i3/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | FONT=eurlatgr 2 | -------------------------------------------------------------------------------- /profiles/i3/airootfs/root/.zlogin: -------------------------------------------------------------------------------- 1 | ~/.automated_script.sh 2 | -------------------------------------------------------------------------------- /profiles/i3/bootstrap_packages.x86_64: -------------------------------------------------------------------------------- 1 | arch-install-scripts 2 | base 3 | -------------------------------------------------------------------------------- /profiles/i3/drive/hybrid/loader/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 15 2 | default archiso-aui-0-x86_64-linux.conf 3 | -------------------------------------------------------------------------------- /profiles/i3/drive/img/grub/grub.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/i3/drive/img/grub/grub.cfg -------------------------------------------------------------------------------- /profiles/i3/drive/img/loader/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 15 2 | default archiso-aui-0-x86_64-linux.conf 3 | -------------------------------------------------------------------------------- /profiles/i3/drive/install/loader/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 15 2 | default archiso-aui-0-x86_64-linux.conf 3 | -------------------------------------------------------------------------------- /profiles/i3/drive/liveusb/loader/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 15 2 | default archiso-aui-0-x86_64-linux.conf 3 | -------------------------------------------------------------------------------- /profiles/i3/drive/liveusb/persistent/x86_64/upperdir/etc/systemd/system/etc-pacman.d-gnupg.mount: -------------------------------------------------------------------------------- 1 | /dev/null -------------------------------------------------------------------------------- /profiles/i3/drive/mediumdef.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/i3/drive/mediumdef.sh -------------------------------------------------------------------------------- /profiles/i3/efiboot/grub/grub.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/i3/efiboot/grub/grub.cfg -------------------------------------------------------------------------------- /profiles/i3/efiboot/loader/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 15 2 | default archiso-x86_64-linux.conf 3 | -------------------------------------------------------------------------------- /profiles/i3/lang/cs_CZ/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=cs_CZ.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/i3/lang/cs_CZ/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=cs_CZ.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/i3/lang/cs_CZ/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=cz-lat2 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/i3/lang/de_DE/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=de_DE.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/i3/lang/de_DE/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=de_DE.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/i3/lang/de_DE/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=de-latin1 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/i3/lang/el_GR/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=el_GR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/i3/lang/el_GR/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=el_GR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/i3/lang/el_GR/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=gr 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/i3/lang/es_ES/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=es_ES.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/i3/lang/es_ES/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=es_ES.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/i3/lang/es_ES/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=es 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/i3/lang/fr_FR/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=fr_FR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/i3/lang/fr_FR/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=fr_FR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/i3/lang/fr_FR/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=fr-latin1 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/i3/lang/hu_HU/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=hu_HU.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/i3/lang/hu_HU/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=hu_HU.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/i3/lang/hu_HU/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=hu 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/i3/lang/it_IT/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=it_IT.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/i3/lang/it_IT/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=it_IT.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/i3/lang/it_IT/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=it 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/i3/lang/nl_NL/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=nl_NL.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/i3/lang/nl_NL/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=nl_NL.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/i3/lang/nl_NL/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=nl 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/i3/lang/pl_PL/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=pl_PL.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/i3/lang/pl_PL/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=pl_PL.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/i3/lang/pl_PL/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=pl2 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/i3/lang/pt_PT/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=pt_PT.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/i3/lang/pt_PT/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=pt_PT.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/i3/lang/pt_PT/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=pt-latin1 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/i3/lang/ro_RO/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=ro_RO.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/i3/lang/ro_RO/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=ro_RO.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/i3/lang/ro_RO/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=ro 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/i3/lang/ru_RU/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=ru_RU.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/i3/lang/ru_RU/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=ru_RU.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/i3/lang/ru_RU/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=ru 2 | FONT=LatArCyrHeb-16 3 | -------------------------------------------------------------------------------- /profiles/i3/lang/sr_RS@latin/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=sr_RS.UTF-8@latin 2 | -------------------------------------------------------------------------------- /profiles/i3/lang/sr_RS@latin/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=sr_RS.UTF-8@latin 2 | -------------------------------------------------------------------------------- /profiles/i3/lang/sr_RS@latin/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=sr-latin 2 | FONT=LatArCyrHeb-16 3 | -------------------------------------------------------------------------------- /profiles/i3/lang/tr_TR/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=tr_TR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/i3/lang/tr_TR/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=tr_TR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/i3/lang/tr_TR/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=trq 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/i3/lang/uk_UA/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=uk_UA.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/i3/lang/uk_UA/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=uk_UA.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/i3/lang/uk_UA/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=ua-utf 2 | FONT=LatArCyrHeb-16 3 | -------------------------------------------------------------------------------- /profiles/i3/packages.x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/i3/packages.x86_64 -------------------------------------------------------------------------------- /profiles/i3/pacman-testing.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/i3/pacman-testing.conf -------------------------------------------------------------------------------- /profiles/i3/pacman.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/i3/pacman.conf -------------------------------------------------------------------------------- /profiles/i3/profiledef.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/i3/profiledef.sh -------------------------------------------------------------------------------- /profiles/i3/syslinux/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/i3/syslinux/splash.png -------------------------------------------------------------------------------- /profiles/i3/syslinux/syslinux.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/i3/syslinux/syslinux.cfg -------------------------------------------------------------------------------- /profiles/kde/airootfs-options/graphics/nvidia: -------------------------------------------------------------------------------- 1 | ./nvidia-open -------------------------------------------------------------------------------- /profiles/kde/airootfs-options/graphics/nvidia-open/etc/modprobe.d/blacklist-nouveau.conf: -------------------------------------------------------------------------------- 1 | install nouveau /bin/false 2 | -------------------------------------------------------------------------------- /profiles/kde/airootfs-options/graphics/nvidia-open/etc/modprobe.d/nvidia-drm.conf: -------------------------------------------------------------------------------- 1 | options nvidia-drm modeset=1 2 | -------------------------------------------------------------------------------- /profiles/kde/airootfs-options/graphics/optimus-prime: -------------------------------------------------------------------------------- 1 | ./nvidia-open -------------------------------------------------------------------------------- /profiles/kde/airootfs/etc/hostname: -------------------------------------------------------------------------------- 1 | archiso 2 | -------------------------------------------------------------------------------- /profiles/kde/airootfs/etc/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/kde/airootfs/etc/hosts -------------------------------------------------------------------------------- /profiles/kde/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=en_US.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/kde/airootfs/etc/localtime: -------------------------------------------------------------------------------- 1 | /usr/share/zoneinfo/UTC -------------------------------------------------------------------------------- /profiles/kde/airootfs/etc/machine-id: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /profiles/kde/airootfs/etc/motd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/kde/airootfs/etc/motd -------------------------------------------------------------------------------- /profiles/kde/airootfs/etc/passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/kde/airootfs/etc/passwd -------------------------------------------------------------------------------- /profiles/kde/airootfs/etc/resolv.conf: -------------------------------------------------------------------------------- 1 | /run/systemd/resolve/stub-resolv.conf -------------------------------------------------------------------------------- /profiles/kde/airootfs/etc/shadow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/kde/airootfs/etc/shadow -------------------------------------------------------------------------------- /profiles/kde/airootfs/etc/skel/.firstboot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /profiles/kde/airootfs/etc/skel/.pam_environment: -------------------------------------------------------------------------------- 1 | GTK_USE_PORTAL=1 2 | TERMINAL=urxvt 3 | -------------------------------------------------------------------------------- /profiles/kde/airootfs/etc/systemd/journald.conf.d/volatile-storage.conf: -------------------------------------------------------------------------------- 1 | [Journal] 2 | Storage=volatile 3 | -------------------------------------------------------------------------------- /profiles/kde/airootfs/etc/systemd/networkd.conf.d/ipv6-privacy-extensions.conf: -------------------------------------------------------------------------------- 1 | [Network] 2 | IPv6PrivacyExtensions=yes 3 | -------------------------------------------------------------------------------- /profiles/kde/airootfs/etc/systemd/system-preset/10-aui-default.preset: -------------------------------------------------------------------------------- 1 | disable systemd-networkd.service 2 | -------------------------------------------------------------------------------- /profiles/kde/airootfs/etc/systemd/system/dbus-org.freedesktop.ModemManager1.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/ModemManager.service -------------------------------------------------------------------------------- /profiles/kde/airootfs/etc/systemd/system/dbus-org.freedesktop.resolve1.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/systemd-resolved.service -------------------------------------------------------------------------------- /profiles/kde/airootfs/etc/systemd/system/dbus-org.freedesktop.timesync1.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/systemd-timesyncd.service -------------------------------------------------------------------------------- /profiles/kde/airootfs/etc/systemd/system/multi-user.target.wants/choose-mirror.service: -------------------------------------------------------------------------------- 1 | ../choose-mirror.service -------------------------------------------------------------------------------- /profiles/kde/airootfs/etc/systemd/system/multi-user.target.wants/pacman-init.service: -------------------------------------------------------------------------------- 1 | ../pacman-init.service -------------------------------------------------------------------------------- /profiles/kde/airootfs/etc/systemd/system/multi-user.target.wants/reflector.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/reflector.service -------------------------------------------------------------------------------- /profiles/kde/airootfs/etc/systemd/system/multi-user.target.wants/vboxservice.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/vboxservice.service -------------------------------------------------------------------------------- /profiles/kde/airootfs/etc/systemd/system/multi-user.target.wants/vmtoolsd.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/vmtoolsd.service -------------------------------------------------------------------------------- /profiles/kde/airootfs/etc/systemd/system/socket.target.wants/pcscd.socket: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/pcscd.socket -------------------------------------------------------------------------------- /profiles/kde/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | FONT=eurlatgr 2 | -------------------------------------------------------------------------------- /profiles/kde/airootfs/root/.zlogin: -------------------------------------------------------------------------------- 1 | ~/.automated_script.sh 2 | -------------------------------------------------------------------------------- /profiles/kde/bootstrap_packages.x86_64: -------------------------------------------------------------------------------- 1 | arch-install-scripts 2 | base 3 | -------------------------------------------------------------------------------- /profiles/kde/drive/hybrid/loader/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 15 2 | default archiso-aui-0-x86_64-linux.conf 3 | -------------------------------------------------------------------------------- /profiles/kde/drive/img/loader/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 15 2 | default archiso-aui-0-x86_64-linux.conf 3 | -------------------------------------------------------------------------------- /profiles/kde/drive/install/loader/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 15 2 | default archiso-aui-0-x86_64-linux.conf 3 | -------------------------------------------------------------------------------- /profiles/kde/drive/liveusb/loader/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 15 2 | default archiso-aui-0-x86_64-linux.conf 3 | -------------------------------------------------------------------------------- /profiles/kde/drive/liveusb/persistent/x86_64/upperdir/etc/systemd/system/etc-pacman.d-gnupg.mount: -------------------------------------------------------------------------------- 1 | /dev/null -------------------------------------------------------------------------------- /profiles/kde/drive/mediumdef.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/kde/drive/mediumdef.sh -------------------------------------------------------------------------------- /profiles/kde/efiboot/grub/grub.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/kde/efiboot/grub/grub.cfg -------------------------------------------------------------------------------- /profiles/kde/efiboot/loader/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 15 2 | default archiso-x86_64-linux.conf 3 | -------------------------------------------------------------------------------- /profiles/kde/lang/cs_CZ/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=cs_CZ.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/kde/lang/cs_CZ/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=cs_CZ.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/kde/lang/cs_CZ/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=cz-lat2 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/kde/lang/de_DE/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=de_DE.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/kde/lang/de_DE/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=de_DE.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/kde/lang/de_DE/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=de-latin1 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/kde/lang/el_GR/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=el_GR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/kde/lang/el_GR/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=el_GR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/kde/lang/el_GR/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=gr 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/kde/lang/es_ES/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=es_ES.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/kde/lang/es_ES/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=es_ES.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/kde/lang/es_ES/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=es 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/kde/lang/fr_FR/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=fr_FR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/kde/lang/fr_FR/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=fr_FR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/kde/lang/fr_FR/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=fr-latin1 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/kde/lang/hu_HU/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=hu_HU.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/kde/lang/hu_HU/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=hu_HU.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/kde/lang/hu_HU/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=hu 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/kde/lang/it_IT/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=it_IT.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/kde/lang/it_IT/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=it_IT.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/kde/lang/it_IT/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=it 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/kde/lang/nl_NL/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=nl_NL.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/kde/lang/nl_NL/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=nl_NL.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/kde/lang/nl_NL/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=nl 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/kde/lang/pl_PL/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=pl_PL.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/kde/lang/pl_PL/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=pl_PL.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/kde/lang/pl_PL/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=pl2 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/kde/lang/pt_PT/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=pt_PT.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/kde/lang/pt_PT/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=pt_PT.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/kde/lang/pt_PT/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=pt-latin1 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/kde/lang/ro_RO/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=ro_RO.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/kde/lang/ro_RO/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=ro_RO.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/kde/lang/ro_RO/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=ro 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/kde/lang/ru_RU/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=ru_RU.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/kde/lang/ru_RU/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=ru_RU.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/kde/lang/ru_RU/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=ru 2 | FONT=LatArCyrHeb-16 3 | -------------------------------------------------------------------------------- /profiles/kde/lang/sr_RS@latin/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=sr_RS.UTF-8@latin 2 | -------------------------------------------------------------------------------- /profiles/kde/lang/sr_RS@latin/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=sr_RS.UTF-8@latin 2 | -------------------------------------------------------------------------------- /profiles/kde/lang/sr_RS@latin/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=sr-latin 2 | FONT=LatArCyrHeb-16 3 | -------------------------------------------------------------------------------- /profiles/kde/lang/tr_TR/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=tr_TR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/kde/lang/tr_TR/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=tr_TR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/kde/lang/tr_TR/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=trq 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/kde/lang/uk_UA/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=uk_UA.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/kde/lang/uk_UA/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=uk_UA.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/kde/lang/uk_UA/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=ua-utf 2 | FONT=LatArCyrHeb-16 3 | -------------------------------------------------------------------------------- /profiles/kde/packages.x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/kde/packages.x86_64 -------------------------------------------------------------------------------- /profiles/kde/pacman-testing.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/kde/pacman-testing.conf -------------------------------------------------------------------------------- /profiles/kde/pacman.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/kde/pacman.conf -------------------------------------------------------------------------------- /profiles/kde/profiledef.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/kde/profiledef.sh -------------------------------------------------------------------------------- /profiles/kde/syslinux/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/kde/syslinux/splash.png -------------------------------------------------------------------------------- /profiles/kde/syslinux/syslinux.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/kde/syslinux/syslinux.cfg -------------------------------------------------------------------------------- /profiles/lxqt/airootfs-options/graphics/nvidia: -------------------------------------------------------------------------------- 1 | ./nvidia-open -------------------------------------------------------------------------------- /profiles/lxqt/airootfs-options/graphics/nvidia-open/etc/modprobe.d/blacklist-nouveau.conf: -------------------------------------------------------------------------------- 1 | install nouveau /bin/false 2 | -------------------------------------------------------------------------------- /profiles/lxqt/airootfs-options/graphics/nvidia-open/etc/modprobe.d/nvidia-drm.conf: -------------------------------------------------------------------------------- 1 | options nvidia-drm modeset=1 2 | -------------------------------------------------------------------------------- /profiles/lxqt/airootfs-options/graphics/optimus-prime: -------------------------------------------------------------------------------- 1 | ./nvidia-open -------------------------------------------------------------------------------- /profiles/lxqt/airootfs/etc/hostname: -------------------------------------------------------------------------------- 1 | archiso 2 | -------------------------------------------------------------------------------- /profiles/lxqt/airootfs/etc/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/lxqt/airootfs/etc/hosts -------------------------------------------------------------------------------- /profiles/lxqt/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=en_US.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/lxqt/airootfs/etc/localtime: -------------------------------------------------------------------------------- 1 | /usr/share/zoneinfo/UTC -------------------------------------------------------------------------------- /profiles/lxqt/airootfs/etc/machine-id: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /profiles/lxqt/airootfs/etc/motd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/lxqt/airootfs/etc/motd -------------------------------------------------------------------------------- /profiles/lxqt/airootfs/etc/passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/lxqt/airootfs/etc/passwd -------------------------------------------------------------------------------- /profiles/lxqt/airootfs/etc/resolv.conf: -------------------------------------------------------------------------------- 1 | /run/systemd/resolve/stub-resolv.conf -------------------------------------------------------------------------------- /profiles/lxqt/airootfs/etc/shadow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/lxqt/airootfs/etc/shadow -------------------------------------------------------------------------------- /profiles/lxqt/airootfs/etc/skel/.config/Kvantum/kvantum.kvconfig: -------------------------------------------------------------------------------- 1 | [General] 2 | theme=KvGnome 3 | -------------------------------------------------------------------------------- /profiles/lxqt/airootfs/etc/skel/.config/qterminal.org/qterminal.ini: -------------------------------------------------------------------------------- 1 | [General] 2 | fontSize=10 3 | -------------------------------------------------------------------------------- /profiles/lxqt/airootfs/etc/skel/.firstboot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /profiles/lxqt/airootfs/etc/skel/.pam_environment: -------------------------------------------------------------------------------- 1 | TERMINAL=urxvt 2 | -------------------------------------------------------------------------------- /profiles/lxqt/airootfs/etc/systemd/journald.conf.d/volatile-storage.conf: -------------------------------------------------------------------------------- 1 | [Journal] 2 | Storage=volatile 3 | -------------------------------------------------------------------------------- /profiles/lxqt/airootfs/etc/systemd/networkd.conf.d/ipv6-privacy-extensions.conf: -------------------------------------------------------------------------------- 1 | [Network] 2 | IPv6PrivacyExtensions=yes 3 | -------------------------------------------------------------------------------- /profiles/lxqt/airootfs/etc/systemd/system-preset/10-aui-default.preset: -------------------------------------------------------------------------------- 1 | disable systemd-networkd.service 2 | -------------------------------------------------------------------------------- /profiles/lxqt/airootfs/etc/systemd/system/dbus-org.freedesktop.ModemManager1.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/ModemManager.service -------------------------------------------------------------------------------- /profiles/lxqt/airootfs/etc/systemd/system/dbus-org.freedesktop.resolve1.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/systemd-resolved.service -------------------------------------------------------------------------------- /profiles/lxqt/airootfs/etc/systemd/system/multi-user.target.wants/choose-mirror.service: -------------------------------------------------------------------------------- 1 | ../choose-mirror.service -------------------------------------------------------------------------------- /profiles/lxqt/airootfs/etc/systemd/system/multi-user.target.wants/pacman-init.service: -------------------------------------------------------------------------------- 1 | ../pacman-init.service -------------------------------------------------------------------------------- /profiles/lxqt/airootfs/etc/systemd/system/multi-user.target.wants/reflector.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/reflector.service -------------------------------------------------------------------------------- /profiles/lxqt/airootfs/etc/systemd/system/multi-user.target.wants/vboxservice.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/vboxservice.service -------------------------------------------------------------------------------- /profiles/lxqt/airootfs/etc/systemd/system/multi-user.target.wants/vmtoolsd.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/vmtoolsd.service -------------------------------------------------------------------------------- /profiles/lxqt/airootfs/etc/systemd/system/socket.target.wants/pcscd.socket: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/pcscd.socket -------------------------------------------------------------------------------- /profiles/lxqt/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | FONT=eurlatgr 2 | -------------------------------------------------------------------------------- /profiles/lxqt/airootfs/root/.zlogin: -------------------------------------------------------------------------------- 1 | ~/.automated_script.sh 2 | -------------------------------------------------------------------------------- /profiles/lxqt/bootstrap_packages.x86_64: -------------------------------------------------------------------------------- 1 | arch-install-scripts 2 | base 3 | -------------------------------------------------------------------------------- /profiles/lxqt/drive/hybrid/loader/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 15 2 | default archiso-aui-0-x86_64-linux.conf 3 | -------------------------------------------------------------------------------- /profiles/lxqt/drive/img/loader/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 15 2 | default archiso-aui-0-x86_64-linux.conf 3 | -------------------------------------------------------------------------------- /profiles/lxqt/drive/install/loader/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 15 2 | default archiso-aui-0-x86_64-linux.conf 3 | -------------------------------------------------------------------------------- /profiles/lxqt/drive/liveusb/loader/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 15 2 | default archiso-aui-0-x86_64-linux.conf 3 | -------------------------------------------------------------------------------- /profiles/lxqt/drive/liveusb/persistent/x86_64/upperdir/etc/systemd/system/etc-pacman.d-gnupg.mount: -------------------------------------------------------------------------------- 1 | /dev/null -------------------------------------------------------------------------------- /profiles/lxqt/drive/mediumdef.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/lxqt/drive/mediumdef.sh -------------------------------------------------------------------------------- /profiles/lxqt/efiboot/grub/grub.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/lxqt/efiboot/grub/grub.cfg -------------------------------------------------------------------------------- /profiles/lxqt/efiboot/loader/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 15 2 | default archiso-x86_64-linux.conf 3 | -------------------------------------------------------------------------------- /profiles/lxqt/lang/cs_CZ/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=cs_CZ.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/lxqt/lang/cs_CZ/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=cs_CZ.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/lxqt/lang/cs_CZ/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=cz-lat2 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/lxqt/lang/de_DE/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=de_DE.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/lxqt/lang/de_DE/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=de_DE.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/lxqt/lang/de_DE/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=de-latin1 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/lxqt/lang/el_GR/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=el_GR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/lxqt/lang/el_GR/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=el_GR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/lxqt/lang/el_GR/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=gr 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/lxqt/lang/es_ES/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=es_ES.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/lxqt/lang/es_ES/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=es_ES.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/lxqt/lang/es_ES/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=es 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/lxqt/lang/fr_FR/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=fr_FR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/lxqt/lang/fr_FR/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=fr_FR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/lxqt/lang/fr_FR/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=fr-latin1 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/lxqt/lang/hu_HU/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=hu_HU.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/lxqt/lang/hu_HU/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=hu_HU.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/lxqt/lang/hu_HU/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=hu 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/lxqt/lang/it_IT/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=it_IT.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/lxqt/lang/it_IT/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=it_IT.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/lxqt/lang/it_IT/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=it 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/lxqt/lang/nl_NL/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=nl_NL.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/lxqt/lang/nl_NL/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=nl_NL.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/lxqt/lang/nl_NL/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=nl 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/lxqt/lang/pl_PL/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=pl_PL.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/lxqt/lang/pl_PL/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=pl_PL.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/lxqt/lang/pl_PL/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=pl2 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/lxqt/lang/pt_PT/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=pt_PT.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/lxqt/lang/pt_PT/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=pt_PT.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/lxqt/lang/pt_PT/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=pt-latin1 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/lxqt/lang/ro_RO/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=ro_RO.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/lxqt/lang/ro_RO/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=ro_RO.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/lxqt/lang/ro_RO/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=ro 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/lxqt/lang/ru_RU/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=ru_RU.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/lxqt/lang/ru_RU/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=ru_RU.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/lxqt/lang/ru_RU/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=ru 2 | FONT=LatArCyrHeb-16 3 | -------------------------------------------------------------------------------- /profiles/lxqt/lang/sr_RS@latin/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=sr_RS.UTF-8@latin 2 | -------------------------------------------------------------------------------- /profiles/lxqt/lang/sr_RS@latin/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=sr_RS.UTF-8@latin 2 | -------------------------------------------------------------------------------- /profiles/lxqt/lang/sr_RS@latin/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=sr-latin 2 | FONT=LatArCyrHeb-16 3 | -------------------------------------------------------------------------------- /profiles/lxqt/lang/tr_TR/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=tr_TR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/lxqt/lang/tr_TR/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=tr_TR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/lxqt/lang/tr_TR/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=trq 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/lxqt/lang/uk_UA/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=uk_UA.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/lxqt/lang/uk_UA/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=uk_UA.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/lxqt/lang/uk_UA/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=ua-utf 2 | FONT=LatArCyrHeb-16 3 | -------------------------------------------------------------------------------- /profiles/lxqt/packages.x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/lxqt/packages.x86_64 -------------------------------------------------------------------------------- /profiles/lxqt/pacman-testing.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/lxqt/pacman-testing.conf -------------------------------------------------------------------------------- /profiles/lxqt/pacman.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/lxqt/pacman.conf -------------------------------------------------------------------------------- /profiles/lxqt/profiledef.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/lxqt/profiledef.sh -------------------------------------------------------------------------------- /profiles/lxqt/syslinux/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/lxqt/syslinux/splash.png -------------------------------------------------------------------------------- /profiles/lxqt/syslinux/syslinux.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/lxqt/syslinux/syslinux.cfg -------------------------------------------------------------------------------- /profiles/mate/airootfs-options/graphics/nvidia: -------------------------------------------------------------------------------- 1 | ./nvidia-open -------------------------------------------------------------------------------- /profiles/mate/airootfs-options/graphics/nvidia-open/etc/modprobe.d/blacklist-nouveau.conf: -------------------------------------------------------------------------------- 1 | install nouveau /bin/false 2 | -------------------------------------------------------------------------------- /profiles/mate/airootfs-options/graphics/nvidia-open/etc/modprobe.d/nvidia-drm.conf: -------------------------------------------------------------------------------- 1 | options nvidia-drm modeset=1 2 | -------------------------------------------------------------------------------- /profiles/mate/airootfs-options/graphics/optimus-prime: -------------------------------------------------------------------------------- 1 | ./nvidia-open -------------------------------------------------------------------------------- /profiles/mate/airootfs/etc/hostname: -------------------------------------------------------------------------------- 1 | archiso 2 | -------------------------------------------------------------------------------- /profiles/mate/airootfs/etc/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/mate/airootfs/etc/hosts -------------------------------------------------------------------------------- /profiles/mate/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=en_US.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/mate/airootfs/etc/localtime: -------------------------------------------------------------------------------- 1 | /usr/share/zoneinfo/UTC -------------------------------------------------------------------------------- /profiles/mate/airootfs/etc/machine-id: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /profiles/mate/airootfs/etc/motd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/mate/airootfs/etc/motd -------------------------------------------------------------------------------- /profiles/mate/airootfs/etc/passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/mate/airootfs/etc/passwd -------------------------------------------------------------------------------- /profiles/mate/airootfs/etc/resolv.conf: -------------------------------------------------------------------------------- 1 | /run/systemd/resolve/stub-resolv.conf -------------------------------------------------------------------------------- /profiles/mate/airootfs/etc/shadow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/mate/airootfs/etc/shadow -------------------------------------------------------------------------------- /profiles/mate/airootfs/etc/skel/.firstboot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /profiles/mate/airootfs/etc/skel/.pam_environment: -------------------------------------------------------------------------------- 1 | TERMINAL=urxvt 2 | -------------------------------------------------------------------------------- /profiles/mate/airootfs/etc/systemd/journald.conf.d/volatile-storage.conf: -------------------------------------------------------------------------------- 1 | [Journal] 2 | Storage=volatile 3 | -------------------------------------------------------------------------------- /profiles/mate/airootfs/etc/systemd/networkd.conf.d/ipv6-privacy-extensions.conf: -------------------------------------------------------------------------------- 1 | [Network] 2 | IPv6PrivacyExtensions=yes 3 | -------------------------------------------------------------------------------- /profiles/mate/airootfs/etc/systemd/system-preset/10-aui-default.preset: -------------------------------------------------------------------------------- 1 | disable systemd-networkd.service 2 | -------------------------------------------------------------------------------- /profiles/mate/airootfs/etc/systemd/system/dbus-org.freedesktop.ModemManager1.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/ModemManager.service -------------------------------------------------------------------------------- /profiles/mate/airootfs/etc/systemd/system/dbus-org.freedesktop.resolve1.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/systemd-resolved.service -------------------------------------------------------------------------------- /profiles/mate/airootfs/etc/systemd/system/multi-user.target.wants/choose-mirror.service: -------------------------------------------------------------------------------- 1 | ../choose-mirror.service -------------------------------------------------------------------------------- /profiles/mate/airootfs/etc/systemd/system/multi-user.target.wants/pacman-init.service: -------------------------------------------------------------------------------- 1 | ../pacman-init.service -------------------------------------------------------------------------------- /profiles/mate/airootfs/etc/systemd/system/multi-user.target.wants/reflector.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/reflector.service -------------------------------------------------------------------------------- /profiles/mate/airootfs/etc/systemd/system/multi-user.target.wants/vboxservice.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/vboxservice.service -------------------------------------------------------------------------------- /profiles/mate/airootfs/etc/systemd/system/multi-user.target.wants/vmtoolsd.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/vmtoolsd.service -------------------------------------------------------------------------------- /profiles/mate/airootfs/etc/systemd/system/socket.target.wants/pcscd.socket: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/pcscd.socket -------------------------------------------------------------------------------- /profiles/mate/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | FONT=eurlatgr 2 | -------------------------------------------------------------------------------- /profiles/mate/airootfs/root/.zlogin: -------------------------------------------------------------------------------- 1 | ~/.automated_script.sh 2 | -------------------------------------------------------------------------------- /profiles/mate/bootstrap_packages.x86_64: -------------------------------------------------------------------------------- 1 | arch-install-scripts 2 | base 3 | -------------------------------------------------------------------------------- /profiles/mate/drive/hybrid/loader/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 15 2 | default archiso-aui-0-x86_64-linux.conf 3 | -------------------------------------------------------------------------------- /profiles/mate/drive/img/loader/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 15 2 | default archiso-aui-0-x86_64-linux.conf 3 | -------------------------------------------------------------------------------- /profiles/mate/drive/install/loader/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 15 2 | default archiso-aui-0-x86_64-linux.conf 3 | -------------------------------------------------------------------------------- /profiles/mate/drive/liveusb/loader/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 15 2 | default archiso-aui-0-x86_64-linux.conf 3 | -------------------------------------------------------------------------------- /profiles/mate/drive/liveusb/persistent/x86_64/upperdir/etc/systemd/system/etc-pacman.d-gnupg.mount: -------------------------------------------------------------------------------- 1 | /dev/null -------------------------------------------------------------------------------- /profiles/mate/drive/mediumdef.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/mate/drive/mediumdef.sh -------------------------------------------------------------------------------- /profiles/mate/efiboot/grub/grub.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/mate/efiboot/grub/grub.cfg -------------------------------------------------------------------------------- /profiles/mate/efiboot/loader/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 15 2 | default archiso-x86_64-linux.conf 3 | -------------------------------------------------------------------------------- /profiles/mate/lang/cs_CZ/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=cs_CZ.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/mate/lang/cs_CZ/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=cs_CZ.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/mate/lang/cs_CZ/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=cz-lat2 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/mate/lang/de_DE/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=de_DE.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/mate/lang/de_DE/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=de_DE.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/mate/lang/de_DE/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=de-latin1 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/mate/lang/el_GR/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=el_GR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/mate/lang/el_GR/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=el_GR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/mate/lang/el_GR/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=gr 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/mate/lang/es_ES/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=es_ES.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/mate/lang/es_ES/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=es_ES.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/mate/lang/es_ES/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=es 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/mate/lang/fr_FR/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=fr_FR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/mate/lang/fr_FR/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=fr_FR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/mate/lang/fr_FR/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=fr-latin1 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/mate/lang/hu_HU/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=hu_HU.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/mate/lang/hu_HU/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=hu_HU.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/mate/lang/hu_HU/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=hu 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/mate/lang/it_IT/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=it_IT.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/mate/lang/it_IT/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=it_IT.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/mate/lang/it_IT/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=it 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/mate/lang/nl_NL/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=nl_NL.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/mate/lang/nl_NL/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=nl_NL.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/mate/lang/nl_NL/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=nl 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/mate/lang/pl_PL/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=pl_PL.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/mate/lang/pl_PL/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=pl_PL.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/mate/lang/pl_PL/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=pl2 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/mate/lang/pt_PT/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=pt_PT.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/mate/lang/pt_PT/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=pt_PT.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/mate/lang/pt_PT/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=pt-latin1 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/mate/lang/ro_RO/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=ro_RO.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/mate/lang/ro_RO/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=ro_RO.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/mate/lang/ro_RO/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=ro 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/mate/lang/ru_RU/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=ru_RU.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/mate/lang/ru_RU/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=ru_RU.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/mate/lang/ru_RU/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=ru 2 | FONT=LatArCyrHeb-16 3 | -------------------------------------------------------------------------------- /profiles/mate/lang/sr_RS@latin/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=sr_RS.UTF-8@latin 2 | -------------------------------------------------------------------------------- /profiles/mate/lang/sr_RS@latin/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=sr_RS.UTF-8@latin 2 | -------------------------------------------------------------------------------- /profiles/mate/lang/sr_RS@latin/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=sr-latin 2 | FONT=LatArCyrHeb-16 3 | -------------------------------------------------------------------------------- /profiles/mate/lang/tr_TR/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=tr_TR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/mate/lang/tr_TR/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=tr_TR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/mate/lang/tr_TR/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=trq 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/mate/lang/uk_UA/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=uk_UA.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/mate/lang/uk_UA/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=uk_UA.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/mate/lang/uk_UA/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=ua-utf 2 | FONT=LatArCyrHeb-16 3 | -------------------------------------------------------------------------------- /profiles/mate/packages.x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/mate/packages.x86_64 -------------------------------------------------------------------------------- /profiles/mate/pacman-testing.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/mate/pacman-testing.conf -------------------------------------------------------------------------------- /profiles/mate/pacman.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/mate/pacman.conf -------------------------------------------------------------------------------- /profiles/mate/profiledef.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/mate/profiledef.sh -------------------------------------------------------------------------------- /profiles/mate/syslinux/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/mate/syslinux/splash.png -------------------------------------------------------------------------------- /profiles/mate/syslinux/syslinux.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/mate/syslinux/syslinux.cfg -------------------------------------------------------------------------------- /profiles/sway/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | MOZ_ENABLE_WAYLAND=1 2 | -------------------------------------------------------------------------------- /profiles/sway/airootfs/etc/hostname: -------------------------------------------------------------------------------- 1 | archiso 2 | -------------------------------------------------------------------------------- /profiles/sway/airootfs/etc/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/sway/airootfs/etc/hosts -------------------------------------------------------------------------------- /profiles/sway/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=en_US.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/sway/airootfs/etc/localtime: -------------------------------------------------------------------------------- 1 | /usr/share/zoneinfo/UTC -------------------------------------------------------------------------------- /profiles/sway/airootfs/etc/machine-id: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /profiles/sway/airootfs/etc/motd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/sway/airootfs/etc/motd -------------------------------------------------------------------------------- /profiles/sway/airootfs/etc/passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/sway/airootfs/etc/passwd -------------------------------------------------------------------------------- /profiles/sway/airootfs/etc/resolv.conf: -------------------------------------------------------------------------------- 1 | /run/systemd/resolve/stub-resolv.conf -------------------------------------------------------------------------------- /profiles/sway/airootfs/etc/shadow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/sway/airootfs/etc/shadow -------------------------------------------------------------------------------- /profiles/sway/airootfs/etc/systemd/journald.conf.d/volatile-storage.conf: -------------------------------------------------------------------------------- 1 | [Journal] 2 | Storage=volatile 3 | -------------------------------------------------------------------------------- /profiles/sway/airootfs/etc/systemd/networkd.conf.d/ipv6-privacy-extensions.conf: -------------------------------------------------------------------------------- 1 | [Network] 2 | IPv6PrivacyExtensions=yes 3 | -------------------------------------------------------------------------------- /profiles/sway/airootfs/etc/systemd/system-preset/10-aui-default.preset: -------------------------------------------------------------------------------- 1 | disable systemd-networkd.service 2 | -------------------------------------------------------------------------------- /profiles/sway/airootfs/etc/systemd/system/dbus-org.freedesktop.ModemManager1.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/ModemManager.service -------------------------------------------------------------------------------- /profiles/sway/airootfs/etc/systemd/system/dbus-org.freedesktop.resolve1.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/systemd-resolved.service -------------------------------------------------------------------------------- /profiles/sway/airootfs/etc/systemd/system/multi-user.target.wants/choose-mirror.service: -------------------------------------------------------------------------------- 1 | ../choose-mirror.service -------------------------------------------------------------------------------- /profiles/sway/airootfs/etc/systemd/system/multi-user.target.wants/pacman-init.service: -------------------------------------------------------------------------------- 1 | ../pacman-init.service -------------------------------------------------------------------------------- /profiles/sway/airootfs/etc/systemd/system/multi-user.target.wants/reflector.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/reflector.service -------------------------------------------------------------------------------- /profiles/sway/airootfs/etc/systemd/system/multi-user.target.wants/vboxservice.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/vboxservice.service -------------------------------------------------------------------------------- /profiles/sway/airootfs/etc/systemd/system/multi-user.target.wants/vmtoolsd.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/vmtoolsd.service -------------------------------------------------------------------------------- /profiles/sway/airootfs/etc/systemd/system/socket.target.wants/pcscd.socket: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/pcscd.socket -------------------------------------------------------------------------------- /profiles/sway/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | FONT=eurlatgr 2 | -------------------------------------------------------------------------------- /profiles/sway/airootfs/root/.zlogin: -------------------------------------------------------------------------------- 1 | ~/.automated_script.sh 2 | -------------------------------------------------------------------------------- /profiles/sway/bootstrap_packages.x86_64: -------------------------------------------------------------------------------- 1 | arch-install-scripts 2 | base 3 | -------------------------------------------------------------------------------- /profiles/sway/drive/hybrid/loader/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 15 2 | default archiso-aui-0-x86_64-linux.conf 3 | -------------------------------------------------------------------------------- /profiles/sway/drive/img/loader/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 15 2 | default archiso-aui-0-x86_64-linux.conf 3 | -------------------------------------------------------------------------------- /profiles/sway/drive/install/loader/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 15 2 | default archiso-aui-0-x86_64-linux.conf 3 | -------------------------------------------------------------------------------- /profiles/sway/drive/liveusb/loader/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 15 2 | default archiso-aui-0-x86_64-linux.conf 3 | -------------------------------------------------------------------------------- /profiles/sway/drive/liveusb/persistent/x86_64/upperdir/etc/systemd/system/etc-pacman.d-gnupg.mount: -------------------------------------------------------------------------------- 1 | /dev/null -------------------------------------------------------------------------------- /profiles/sway/drive/mediumdef.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/sway/drive/mediumdef.sh -------------------------------------------------------------------------------- /profiles/sway/efiboot/grub/grub.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/sway/efiboot/grub/grub.cfg -------------------------------------------------------------------------------- /profiles/sway/efiboot/loader/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 15 2 | default archiso-x86_64-linux.conf 3 | -------------------------------------------------------------------------------- /profiles/sway/lang/cs_CZ/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | MOZ_ENABLE_WAYLAND=1 2 | LANG=cs_CZ.UTF-8 3 | -------------------------------------------------------------------------------- /profiles/sway/lang/cs_CZ/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=cs_CZ.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/sway/lang/cs_CZ/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=cz-lat2 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/sway/lang/de_DE/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | MOZ_ENABLE_WAYLAND=1 2 | LANG=de_DE.UTF-8 3 | -------------------------------------------------------------------------------- /profiles/sway/lang/de_DE/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=de_DE.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/sway/lang/de_DE/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=de-latin1 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/sway/lang/el_GR/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | MOZ_ENABLE_WAYLAND=1 2 | LANG=el_GR.UTF-8 3 | -------------------------------------------------------------------------------- /profiles/sway/lang/el_GR/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=el_GR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/sway/lang/el_GR/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=gr 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/sway/lang/es_ES/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | MOZ_ENABLE_WAYLAND=1 2 | LANG=es_ES.UTF-8 3 | -------------------------------------------------------------------------------- /profiles/sway/lang/es_ES/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=es_ES.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/sway/lang/es_ES/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=es 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/sway/lang/fr_FR/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=fr_FR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/sway/lang/fr_FR/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=fr-latin1 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/sway/lang/hu_HU/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | MOZ_ENABLE_WAYLAND=1 2 | LANG=hu_HU.UTF-8 3 | -------------------------------------------------------------------------------- /profiles/sway/lang/hu_HU/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=hu_HU.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/sway/lang/hu_HU/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=hu 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/sway/lang/it_IT/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | MOZ_ENABLE_WAYLAND=1 2 | LANG=it_IT.UTF-8 3 | -------------------------------------------------------------------------------- /profiles/sway/lang/it_IT/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=it_IT.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/sway/lang/it_IT/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=it 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/sway/lang/nl_NL/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | MOZ_ENABLE_WAYLAND=1 2 | LANG=nl_NL.UTF-8 3 | -------------------------------------------------------------------------------- /profiles/sway/lang/nl_NL/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=nl_NL.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/sway/lang/nl_NL/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=nl 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/sway/lang/pl_PL/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | MOZ_ENABLE_WAYLAND=1 2 | LANG=pl_PL.UTF-8 3 | -------------------------------------------------------------------------------- /profiles/sway/lang/pl_PL/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=pl_PL.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/sway/lang/pl_PL/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=pl2 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/sway/lang/pt_PT/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | MOZ_ENABLE_WAYLAND=1 2 | LANG=pt_PT.UTF-8 3 | -------------------------------------------------------------------------------- /profiles/sway/lang/pt_PT/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=pt_PT.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/sway/lang/pt_PT/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=pt-latin1 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/sway/lang/ro_RO/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | MOZ_ENABLE_WAYLAND=1 2 | LANG=ro_RO.UTF-8 3 | -------------------------------------------------------------------------------- /profiles/sway/lang/ro_RO/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=ro_RO.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/sway/lang/ro_RO/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=ro 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/sway/lang/ru_RU/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | MOZ_ENABLE_WAYLAND=1 2 | LANG=ru_RU.UTF-8 3 | -------------------------------------------------------------------------------- /profiles/sway/lang/ru_RU/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=ru_RU.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/sway/lang/ru_RU/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=ru 2 | FONT=LatArCyrHeb-16 3 | -------------------------------------------------------------------------------- /profiles/sway/lang/sr_RS@latin/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | MOZ_ENABLE_WAYLAND=1 2 | LANG=sr_RS.UTF-8@latin 3 | -------------------------------------------------------------------------------- /profiles/sway/lang/sr_RS@latin/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=sr_RS.UTF-8@latin 2 | -------------------------------------------------------------------------------- /profiles/sway/lang/sr_RS@latin/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=sr-latin 2 | FONT=LatArCyrHeb-16 3 | -------------------------------------------------------------------------------- /profiles/sway/lang/tr_TR/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | MOZ_ENABLE_WAYLAND=1 2 | LANG=tr_TR.UTF-8 3 | -------------------------------------------------------------------------------- /profiles/sway/lang/tr_TR/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=tr_TR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/sway/lang/tr_TR/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=trq 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/sway/lang/uk_UA/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | MOZ_ENABLE_WAYLAND=1 2 | LANG=uk_UA.UTF-8 3 | -------------------------------------------------------------------------------- /profiles/sway/lang/uk_UA/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=uk_UA.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/sway/lang/uk_UA/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=ua-utf 2 | FONT=LatArCyrHeb-16 3 | -------------------------------------------------------------------------------- /profiles/sway/packages.x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/sway/packages.x86_64 -------------------------------------------------------------------------------- /profiles/sway/pacman-testing.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/sway/pacman-testing.conf -------------------------------------------------------------------------------- /profiles/sway/pacman.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/sway/pacman.conf -------------------------------------------------------------------------------- /profiles/sway/profiledef.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/sway/profiledef.sh -------------------------------------------------------------------------------- /profiles/sway/syslinux/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/sway/syslinux/splash.png -------------------------------------------------------------------------------- /profiles/sway/syslinux/syslinux.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/sway/syslinux/syslinux.cfg -------------------------------------------------------------------------------- /profiles/xfce/airootfs-options/graphics/nvidia: -------------------------------------------------------------------------------- 1 | ./nvidia-open -------------------------------------------------------------------------------- /profiles/xfce/airootfs-options/graphics/nvidia-open/etc/modprobe.d/blacklist-nouveau.conf: -------------------------------------------------------------------------------- 1 | install nouveau /bin/false 2 | -------------------------------------------------------------------------------- /profiles/xfce/airootfs-options/graphics/nvidia-open/etc/modprobe.d/nvidia-drm.conf: -------------------------------------------------------------------------------- 1 | options nvidia-drm modeset=1 2 | -------------------------------------------------------------------------------- /profiles/xfce/airootfs-options/graphics/optimus-prime: -------------------------------------------------------------------------------- 1 | ./nvidia-open -------------------------------------------------------------------------------- /profiles/xfce/airootfs/etc/hostname: -------------------------------------------------------------------------------- 1 | archiso 2 | -------------------------------------------------------------------------------- /profiles/xfce/airootfs/etc/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/xfce/airootfs/etc/hosts -------------------------------------------------------------------------------- /profiles/xfce/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=en_US.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/xfce/airootfs/etc/localtime: -------------------------------------------------------------------------------- 1 | /usr/share/zoneinfo/UTC -------------------------------------------------------------------------------- /profiles/xfce/airootfs/etc/machine-id: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /profiles/xfce/airootfs/etc/motd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/xfce/airootfs/etc/motd -------------------------------------------------------------------------------- /profiles/xfce/airootfs/etc/passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/xfce/airootfs/etc/passwd -------------------------------------------------------------------------------- /profiles/xfce/airootfs/etc/resolv.conf: -------------------------------------------------------------------------------- 1 | /run/systemd/resolve/stub-resolv.conf -------------------------------------------------------------------------------- /profiles/xfce/airootfs/etc/shadow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/xfce/airootfs/etc/shadow -------------------------------------------------------------------------------- /profiles/xfce/airootfs/etc/skel/.firstboot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /profiles/xfce/airootfs/etc/skel/.pam_environment: -------------------------------------------------------------------------------- 1 | TERMINAL=urxvt 2 | -------------------------------------------------------------------------------- /profiles/xfce/airootfs/etc/systemd/journald.conf.d/volatile-storage.conf: -------------------------------------------------------------------------------- 1 | [Journal] 2 | Storage=volatile 3 | -------------------------------------------------------------------------------- /profiles/xfce/airootfs/etc/systemd/networkd.conf.d/ipv6-privacy-extensions.conf: -------------------------------------------------------------------------------- 1 | [Network] 2 | IPv6PrivacyExtensions=yes 3 | -------------------------------------------------------------------------------- /profiles/xfce/airootfs/etc/systemd/system-preset/10-aui-default.preset: -------------------------------------------------------------------------------- 1 | disable systemd-networkd.service 2 | -------------------------------------------------------------------------------- /profiles/xfce/airootfs/etc/systemd/system/dbus-org.freedesktop.ModemManager1.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/ModemManager.service -------------------------------------------------------------------------------- /profiles/xfce/airootfs/etc/systemd/system/dbus-org.freedesktop.resolve1.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/systemd-resolved.service -------------------------------------------------------------------------------- /profiles/xfce/airootfs/etc/systemd/system/multi-user.target.wants/choose-mirror.service: -------------------------------------------------------------------------------- 1 | ../choose-mirror.service -------------------------------------------------------------------------------- /profiles/xfce/airootfs/etc/systemd/system/multi-user.target.wants/pacman-init.service: -------------------------------------------------------------------------------- 1 | ../pacman-init.service -------------------------------------------------------------------------------- /profiles/xfce/airootfs/etc/systemd/system/multi-user.target.wants/vmtoolsd.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/vmtoolsd.service -------------------------------------------------------------------------------- /profiles/xfce/airootfs/etc/systemd/system/socket.target.wants/pcscd.socket: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/pcscd.socket -------------------------------------------------------------------------------- /profiles/xfce/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | FONT=eurlatgr 2 | -------------------------------------------------------------------------------- /profiles/xfce/airootfs/root/.zlogin: -------------------------------------------------------------------------------- 1 | ~/.automated_script.sh 2 | -------------------------------------------------------------------------------- /profiles/xfce/bootstrap_packages.x86_64: -------------------------------------------------------------------------------- 1 | arch-install-scripts 2 | base 3 | -------------------------------------------------------------------------------- /profiles/xfce/drive/hybrid/loader/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 15 2 | default archiso-aui-0-x86_64-linux.conf 3 | -------------------------------------------------------------------------------- /profiles/xfce/drive/img/loader/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 15 2 | default archiso-aui-0-x86_64-linux.conf 3 | -------------------------------------------------------------------------------- /profiles/xfce/drive/install/loader/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 15 2 | default archiso-aui-0-x86_64-linux.conf 3 | -------------------------------------------------------------------------------- /profiles/xfce/drive/liveusb/loader/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 15 2 | default archiso-aui-0-x86_64-linux.conf 3 | -------------------------------------------------------------------------------- /profiles/xfce/drive/liveusb/persistent/x86_64/upperdir/etc/systemd/system/etc-pacman.d-gnupg.mount: -------------------------------------------------------------------------------- 1 | /dev/null -------------------------------------------------------------------------------- /profiles/xfce/drive/mediumdef.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/xfce/drive/mediumdef.sh -------------------------------------------------------------------------------- /profiles/xfce/efiboot/loader/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 15 2 | default archiso-x86_64-linux.conf 3 | -------------------------------------------------------------------------------- /profiles/xfce/lang/cs_CZ/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=cs_CZ.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/xfce/lang/cs_CZ/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=cs_CZ.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/xfce/lang/cs_CZ/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=cz-lat2 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/xfce/lang/de_DE/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=de_DE.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/xfce/lang/de_DE/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=de_DE.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/xfce/lang/de_DE/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=de-latin1 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/xfce/lang/el_GR/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=el_GR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/xfce/lang/el_GR/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=el_GR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/xfce/lang/el_GR/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=gr 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/xfce/lang/es_ES/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=es_ES.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/xfce/lang/es_ES/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=es_ES.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/xfce/lang/es_ES/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=es 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/xfce/lang/fr_FR/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=fr_FR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/xfce/lang/fr_FR/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=fr_FR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/xfce/lang/fr_FR/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=fr-latin1 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/xfce/lang/hu_HU/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=hu_HU.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/xfce/lang/hu_HU/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=hu_HU.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/xfce/lang/hu_HU/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=hu 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/xfce/lang/it_IT/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=it_IT.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/xfce/lang/it_IT/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=it_IT.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/xfce/lang/it_IT/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=it 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/xfce/lang/nl_NL/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=nl_NL.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/xfce/lang/nl_NL/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=nl_NL.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/xfce/lang/nl_NL/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=nl 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/xfce/lang/pl_PL/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=pl_PL.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/xfce/lang/pl_PL/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=pl_PL.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/xfce/lang/pl_PL/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=pl2 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/xfce/lang/pt_PT/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=pt_PT.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/xfce/lang/pt_PT/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=pt_PT.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/xfce/lang/pt_PT/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=pt-latin1 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/xfce/lang/ro_RO/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=ro_RO.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/xfce/lang/ro_RO/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=ro_RO.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/xfce/lang/ro_RO/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=ro 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/xfce/lang/ru_RU/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=ru_RU.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/xfce/lang/ru_RU/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=ru_RU.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/xfce/lang/ru_RU/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=ru 2 | FONT=LatArCyrHeb-16 3 | -------------------------------------------------------------------------------- /profiles/xfce/lang/sr_RS@latin/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=sr_RS.UTF-8@latin 2 | -------------------------------------------------------------------------------- /profiles/xfce/lang/sr_RS@latin/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=sr_RS.UTF-8@latin 2 | -------------------------------------------------------------------------------- /profiles/xfce/lang/sr_RS@latin/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=sr-latin 2 | FONT=LatArCyrHeb-16 3 | -------------------------------------------------------------------------------- /profiles/xfce/lang/tr_TR/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=tr_TR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/xfce/lang/tr_TR/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=tr_TR.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/xfce/lang/tr_TR/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=trq 2 | FONT=eurlatgr 3 | -------------------------------------------------------------------------------- /profiles/xfce/lang/uk_UA/airootfs/etc/environment: -------------------------------------------------------------------------------- 1 | LANG=uk_UA.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/xfce/lang/uk_UA/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=uk_UA.UTF-8 2 | -------------------------------------------------------------------------------- /profiles/xfce/lang/uk_UA/airootfs/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=ua-utf 2 | FONT=LatArCyrHeb-16 3 | -------------------------------------------------------------------------------- /profiles/xfce/packages.x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/xfce/packages.x86_64 -------------------------------------------------------------------------------- /profiles/xfce/pacman.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/xfce/pacman.conf -------------------------------------------------------------------------------- /profiles/xfce/profiledef.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/profiles/xfce/profiledef.sh -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent85v/archuseriso/HEAD/readme.md --------------------------------------------------------------------------------