├── CHANGELOG ├── CONTRIBUTING ├── LICENSE ├── README.md ├── etc └── archboot │ ├── aarch64-init.conf │ ├── aarch64-latest.conf │ ├── aarch64-local.conf │ ├── aarch64-update_installer.conf │ ├── aarch64.conf │ ├── defaults │ ├── riscv64-init.conf │ ├── riscv64.conf │ ├── server-update.conf │ ├── x86_64-init.conf │ ├── x86_64-latest.conf │ ├── x86_64-local.conf │ ├── x86_64-update_installer.conf │ └── x86_64.conf ├── install.sh ├── old └── CHANGELOG └── usr ├── bin ├── archboot-binary-check.sh ├── archboot-clean-blockdevice.sh ├── archboot-clock.sh ├── archboot-copy-mountpoint.sh ├── archboot-cpio.sh ├── archboot-detect-vconsole.sh ├── archboot-fw-check.sh ├── archboot-hwsim.sh ├── archboot-ipxe-certs.sh ├── archboot-ipxe-sign.sh ├── archboot-launcher.sh ├── archboot-localize.sh ├── archboot-mkkeys.sh ├── archboot-network.sh ├── archboot-not-installed.sh ├── archboot-pacsetup.sh ├── archboot-quickinst.sh ├── archboot-restore-usbstick.sh ├── archboot-rsync-backup.sh ├── archboot-secureboot-keys.sh ├── archboot-server-update.sh ├── archboot-setup.sh ├── archboot-testsuite.sh └── archboot-update.sh ├── lib ├── archboot │ ├── common.sh │ ├── container.sh │ ├── cpio │ │ ├── cpio.sh │ │ ├── hooks │ │ │ ├── base_common │ │ │ ├── base_common_cleanup │ │ │ ├── base_common_mods │ │ │ ├── base_common_system │ │ │ ├── base_common_system_cleanup │ │ │ ├── base_common_system_mods │ │ │ ├── base_init │ │ │ ├── base_init_mods │ │ │ ├── base_system │ │ │ ├── base_system_cleanup │ │ │ ├── block_mods │ │ │ ├── cache │ │ │ ├── cache_cleanup │ │ │ ├── clock │ │ │ ├── cpufreq │ │ │ ├── cpufreq_mods │ │ │ ├── devicemapper │ │ │ ├── devicemapper_mods │ │ │ ├── dmidecode │ │ │ ├── efi │ │ │ ├── filesystems │ │ │ ├── filesystems_cleanup │ │ │ ├── filesystems_mods │ │ │ ├── firmware │ │ │ ├── firmware_cleanup │ │ │ ├── firmware_mods │ │ │ ├── hypervisor_mods │ │ │ ├── installer │ │ │ ├── installer_common │ │ │ ├── kexec │ │ │ ├── kms_mods │ │ │ ├── licenses │ │ │ ├── lshw │ │ │ ├── lvm2 │ │ │ ├── mdadm │ │ │ ├── mdadm_mods │ │ │ ├── mods_cleanup │ │ │ ├── motd │ │ │ ├── neovim │ │ │ ├── net │ │ │ ├── net_cleanup │ │ │ ├── net_common │ │ │ ├── net_mods │ │ │ ├── pciutils │ │ │ ├── remote │ │ │ ├── secureboot │ │ │ ├── smartmontools │ │ │ ├── usbutils │ │ │ ├── vconsole │ │ │ ├── wireless │ │ │ └── wireless_mods │ │ └── init.sh │ ├── installer │ │ ├── autoconfiguration.sh │ │ ├── base.sh │ │ ├── blockdevices.sh │ │ ├── bootloader.sh │ │ ├── bootloader_grub.sh │ │ ├── bootloader_limine.sh │ │ ├── bootloader_pacman_hooks.sh │ │ ├── bootloader_refind.sh │ │ ├── bootloader_sb.sh │ │ ├── bootloader_systemd_bootd.sh │ │ ├── bootloader_uboot.sh │ │ ├── bootloader_uki.sh │ │ ├── btrfs.sh │ │ ├── common.sh │ │ ├── configuration.sh │ │ ├── help │ │ │ ├── guid-partition.txt │ │ │ ├── guid.txt │ │ │ ├── luks.txt │ │ │ ├── lvm2.txt │ │ │ ├── mbr-partition.txt │ │ │ └── md.txt │ │ ├── mountpoints.sh │ │ ├── pacman.sh │ │ ├── partition.sh │ │ ├── quicksetup.sh │ │ └── storage.sh │ ├── ipxe.sh │ ├── iso.sh │ ├── login.sh │ ├── release.sh │ ├── repository.sh │ ├── run │ │ ├── container-tarball.sh │ │ ├── container.sh │ │ ├── iso.sh │ │ ├── release.sh │ │ ├── repository.sh │ │ ├── server-release.sh │ │ └── uki.sh │ ├── server.sh │ ├── uki.sh │ └── update │ │ ├── desktop.sh │ │ ├── gnome.sh │ │ ├── manage.sh │ │ ├── plasma.sh │ │ ├── sway.sh │ │ ├── update.sh │ │ └── xfce.sh └── systemd │ └── system │ ├── archboot-server-update.service │ └── archboot-server-update.timer └── share ├── archboot ├── base │ └── etc │ │ ├── dialogrc │ │ ├── hostname │ │ ├── issue │ │ ├── locale.conf │ │ ├── modprobe.d │ │ └── modprobe.conf │ │ ├── os-release │ │ ├── profile.d │ │ └── custom-bash-options.sh │ │ ├── sysctl.d │ │ └── 99-sysctl.conf │ │ ├── systemd │ │ ├── journald.conf.d │ │ │ └── fw-tty12.conf │ │ └── system │ │ │ ├── archboot-init.service │ │ │ ├── detect-vconsole.service │ │ │ ├── getty@.service │ │ │ ├── initrd-cleanup.service │ │ │ ├── pacman-init.service │ │ │ ├── serial-getty@.service │ │ │ └── windowkeys.service │ │ ├── tmpfiles.d │ │ └── var.conf │ │ ├── udev │ │ └── rules.d │ │ │ └── 60-ioschedulers.rules │ │ └── vconsole.conf ├── doc │ ├── archboot-autorun.txt │ ├── archboot.html │ ├── archboot.png │ ├── clock.png │ ├── donate.png │ ├── early-userspace.png │ ├── favicon.ico │ ├── gallery.html │ ├── gnome.png │ ├── grub.png │ ├── htaccess │ ├── launcher.png │ ├── localization.png │ ├── logo.png │ ├── motd.png │ ├── network.png │ ├── pacsetup.png │ ├── plasma.png │ ├── setup-main.png │ ├── styles.css │ ├── sway.png │ ├── update-installer-finish.png │ ├── update-installer.png │ └── xfce.png ├── gpg │ └── tpowa.gpg ├── grub │ ├── archboot-background.png │ ├── archboot-iso-grub.cfg │ └── archboot-main-grub.cfg ├── ipxe │ ├── archboot.ipxe │ └── archboot.ipxe.sig ├── net │ ├── etc │ │ ├── elinks │ │ │ └── bookmarks │ │ ├── profile.d │ │ │ └── elinks.sh │ │ └── systemd │ │ │ ├── network.conf.d │ │ │ └── ipv6-privacy-extensions.conf │ │ │ └── network │ │ │ └── 10-wired-auto-dhcp.network │ └── usr │ │ └── share │ │ └── tiny │ │ └── config.yml ├── nvim │ └── nvim-lastplace.lua ├── patches │ └── pacman-key-aarch64 ├── remote │ ├── etc │ │ └── systemd │ │ │ └── system │ │ │ └── ttyd.service │ └── usr │ │ └── bin │ │ └── remote-login.sh ├── server │ ├── create-ipxe-symlinks.sh │ ├── lsws-autoindex.sh │ └── sync.sh ├── uki │ ├── archboot-background.bmp │ └── create-uki-bmp.sh └── wireless │ └── etc │ └── udev │ └── rules.d │ └── 60-wifi-disable-powersave.rules ├── bash-completion └── completions │ └── archboot └── zsh └── site-functions └── _archboot /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/CHANGELOG -------------------------------------------------------------------------------- /CONTRIBUTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/CONTRIBUTING -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/README.md -------------------------------------------------------------------------------- /etc/archboot/aarch64-init.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/etc/archboot/aarch64-init.conf -------------------------------------------------------------------------------- /etc/archboot/aarch64-latest.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/etc/archboot/aarch64-latest.conf -------------------------------------------------------------------------------- /etc/archboot/aarch64-local.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/etc/archboot/aarch64-local.conf -------------------------------------------------------------------------------- /etc/archboot/aarch64-update_installer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/etc/archboot/aarch64-update_installer.conf -------------------------------------------------------------------------------- /etc/archboot/aarch64.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/etc/archboot/aarch64.conf -------------------------------------------------------------------------------- /etc/archboot/defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/etc/archboot/defaults -------------------------------------------------------------------------------- /etc/archboot/riscv64-init.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/etc/archboot/riscv64-init.conf -------------------------------------------------------------------------------- /etc/archboot/riscv64.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/etc/archboot/riscv64.conf -------------------------------------------------------------------------------- /etc/archboot/server-update.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/etc/archboot/server-update.conf -------------------------------------------------------------------------------- /etc/archboot/x86_64-init.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/etc/archboot/x86_64-init.conf -------------------------------------------------------------------------------- /etc/archboot/x86_64-latest.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/etc/archboot/x86_64-latest.conf -------------------------------------------------------------------------------- /etc/archboot/x86_64-local.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/etc/archboot/x86_64-local.conf -------------------------------------------------------------------------------- /etc/archboot/x86_64-update_installer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/etc/archboot/x86_64-update_installer.conf -------------------------------------------------------------------------------- /etc/archboot/x86_64.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/etc/archboot/x86_64.conf -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/install.sh -------------------------------------------------------------------------------- /old/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/old/CHANGELOG -------------------------------------------------------------------------------- /usr/bin/archboot-binary-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/bin/archboot-binary-check.sh -------------------------------------------------------------------------------- /usr/bin/archboot-clean-blockdevice.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/bin/archboot-clean-blockdevice.sh -------------------------------------------------------------------------------- /usr/bin/archboot-clock.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/bin/archboot-clock.sh -------------------------------------------------------------------------------- /usr/bin/archboot-copy-mountpoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/bin/archboot-copy-mountpoint.sh -------------------------------------------------------------------------------- /usr/bin/archboot-cpio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/bin/archboot-cpio.sh -------------------------------------------------------------------------------- /usr/bin/archboot-detect-vconsole.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/bin/archboot-detect-vconsole.sh -------------------------------------------------------------------------------- /usr/bin/archboot-fw-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/bin/archboot-fw-check.sh -------------------------------------------------------------------------------- /usr/bin/archboot-hwsim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/bin/archboot-hwsim.sh -------------------------------------------------------------------------------- /usr/bin/archboot-ipxe-certs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/bin/archboot-ipxe-certs.sh -------------------------------------------------------------------------------- /usr/bin/archboot-ipxe-sign.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/bin/archboot-ipxe-sign.sh -------------------------------------------------------------------------------- /usr/bin/archboot-launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/bin/archboot-launcher.sh -------------------------------------------------------------------------------- /usr/bin/archboot-localize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/bin/archboot-localize.sh -------------------------------------------------------------------------------- /usr/bin/archboot-mkkeys.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/bin/archboot-mkkeys.sh -------------------------------------------------------------------------------- /usr/bin/archboot-network.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/bin/archboot-network.sh -------------------------------------------------------------------------------- /usr/bin/archboot-not-installed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/bin/archboot-not-installed.sh -------------------------------------------------------------------------------- /usr/bin/archboot-pacsetup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/bin/archboot-pacsetup.sh -------------------------------------------------------------------------------- /usr/bin/archboot-quickinst.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/bin/archboot-quickinst.sh -------------------------------------------------------------------------------- /usr/bin/archboot-restore-usbstick.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/bin/archboot-restore-usbstick.sh -------------------------------------------------------------------------------- /usr/bin/archboot-rsync-backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/bin/archboot-rsync-backup.sh -------------------------------------------------------------------------------- /usr/bin/archboot-secureboot-keys.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/bin/archboot-secureboot-keys.sh -------------------------------------------------------------------------------- /usr/bin/archboot-server-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/bin/archboot-server-update.sh -------------------------------------------------------------------------------- /usr/bin/archboot-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/bin/archboot-setup.sh -------------------------------------------------------------------------------- /usr/bin/archboot-testsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/bin/archboot-testsuite.sh -------------------------------------------------------------------------------- /usr/bin/archboot-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/bin/archboot-update.sh -------------------------------------------------------------------------------- /usr/lib/archboot/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/common.sh -------------------------------------------------------------------------------- /usr/lib/archboot/container.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/container.sh -------------------------------------------------------------------------------- /usr/lib/archboot/cpio/cpio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/cpio/cpio.sh -------------------------------------------------------------------------------- /usr/lib/archboot/cpio/hooks/base_common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/cpio/hooks/base_common -------------------------------------------------------------------------------- /usr/lib/archboot/cpio/hooks/base_common_cleanup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/cpio/hooks/base_common_cleanup -------------------------------------------------------------------------------- /usr/lib/archboot/cpio/hooks/base_common_mods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/cpio/hooks/base_common_mods -------------------------------------------------------------------------------- /usr/lib/archboot/cpio/hooks/base_common_system: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/cpio/hooks/base_common_system -------------------------------------------------------------------------------- /usr/lib/archboot/cpio/hooks/base_common_system_cleanup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/cpio/hooks/base_common_system_cleanup -------------------------------------------------------------------------------- /usr/lib/archboot/cpio/hooks/base_common_system_mods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/cpio/hooks/base_common_system_mods -------------------------------------------------------------------------------- /usr/lib/archboot/cpio/hooks/base_init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/cpio/hooks/base_init -------------------------------------------------------------------------------- /usr/lib/archboot/cpio/hooks/base_init_mods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/cpio/hooks/base_init_mods -------------------------------------------------------------------------------- /usr/lib/archboot/cpio/hooks/base_system: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/cpio/hooks/base_system -------------------------------------------------------------------------------- /usr/lib/archboot/cpio/hooks/base_system_cleanup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/cpio/hooks/base_system_cleanup -------------------------------------------------------------------------------- /usr/lib/archboot/cpio/hooks/block_mods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/cpio/hooks/block_mods -------------------------------------------------------------------------------- /usr/lib/archboot/cpio/hooks/cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/cpio/hooks/cache -------------------------------------------------------------------------------- /usr/lib/archboot/cpio/hooks/cache_cleanup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/cpio/hooks/cache_cleanup -------------------------------------------------------------------------------- /usr/lib/archboot/cpio/hooks/clock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/cpio/hooks/clock -------------------------------------------------------------------------------- /usr/lib/archboot/cpio/hooks/cpufreq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/cpio/hooks/cpufreq -------------------------------------------------------------------------------- /usr/lib/archboot/cpio/hooks/cpufreq_mods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/cpio/hooks/cpufreq_mods -------------------------------------------------------------------------------- /usr/lib/archboot/cpio/hooks/devicemapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/cpio/hooks/devicemapper -------------------------------------------------------------------------------- /usr/lib/archboot/cpio/hooks/devicemapper_mods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/cpio/hooks/devicemapper_mods -------------------------------------------------------------------------------- /usr/lib/archboot/cpio/hooks/dmidecode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/cpio/hooks/dmidecode -------------------------------------------------------------------------------- /usr/lib/archboot/cpio/hooks/efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/cpio/hooks/efi -------------------------------------------------------------------------------- /usr/lib/archboot/cpio/hooks/filesystems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/cpio/hooks/filesystems -------------------------------------------------------------------------------- /usr/lib/archboot/cpio/hooks/filesystems_cleanup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/cpio/hooks/filesystems_cleanup -------------------------------------------------------------------------------- /usr/lib/archboot/cpio/hooks/filesystems_mods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/cpio/hooks/filesystems_mods -------------------------------------------------------------------------------- /usr/lib/archboot/cpio/hooks/firmware: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/cpio/hooks/firmware -------------------------------------------------------------------------------- /usr/lib/archboot/cpio/hooks/firmware_cleanup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/cpio/hooks/firmware_cleanup -------------------------------------------------------------------------------- /usr/lib/archboot/cpio/hooks/firmware_mods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/cpio/hooks/firmware_mods -------------------------------------------------------------------------------- /usr/lib/archboot/cpio/hooks/hypervisor_mods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/cpio/hooks/hypervisor_mods -------------------------------------------------------------------------------- /usr/lib/archboot/cpio/hooks/installer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/cpio/hooks/installer -------------------------------------------------------------------------------- /usr/lib/archboot/cpio/hooks/installer_common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/cpio/hooks/installer_common -------------------------------------------------------------------------------- /usr/lib/archboot/cpio/hooks/kexec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/cpio/hooks/kexec -------------------------------------------------------------------------------- /usr/lib/archboot/cpio/hooks/kms_mods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/cpio/hooks/kms_mods -------------------------------------------------------------------------------- /usr/lib/archboot/cpio/hooks/licenses: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/cpio/hooks/licenses -------------------------------------------------------------------------------- /usr/lib/archboot/cpio/hooks/lshw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/cpio/hooks/lshw -------------------------------------------------------------------------------- /usr/lib/archboot/cpio/hooks/lvm2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/cpio/hooks/lvm2 -------------------------------------------------------------------------------- /usr/lib/archboot/cpio/hooks/mdadm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/cpio/hooks/mdadm -------------------------------------------------------------------------------- /usr/lib/archboot/cpio/hooks/mdadm_mods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/cpio/hooks/mdadm_mods -------------------------------------------------------------------------------- /usr/lib/archboot/cpio/hooks/mods_cleanup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/cpio/hooks/mods_cleanup -------------------------------------------------------------------------------- /usr/lib/archboot/cpio/hooks/motd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/cpio/hooks/motd -------------------------------------------------------------------------------- /usr/lib/archboot/cpio/hooks/neovim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/cpio/hooks/neovim -------------------------------------------------------------------------------- /usr/lib/archboot/cpio/hooks/net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/cpio/hooks/net -------------------------------------------------------------------------------- /usr/lib/archboot/cpio/hooks/net_cleanup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/cpio/hooks/net_cleanup -------------------------------------------------------------------------------- /usr/lib/archboot/cpio/hooks/net_common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/cpio/hooks/net_common -------------------------------------------------------------------------------- /usr/lib/archboot/cpio/hooks/net_mods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/cpio/hooks/net_mods -------------------------------------------------------------------------------- /usr/lib/archboot/cpio/hooks/pciutils: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/cpio/hooks/pciutils -------------------------------------------------------------------------------- /usr/lib/archboot/cpio/hooks/remote: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/cpio/hooks/remote -------------------------------------------------------------------------------- /usr/lib/archboot/cpio/hooks/secureboot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/cpio/hooks/secureboot -------------------------------------------------------------------------------- /usr/lib/archboot/cpio/hooks/smartmontools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/cpio/hooks/smartmontools -------------------------------------------------------------------------------- /usr/lib/archboot/cpio/hooks/usbutils: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/cpio/hooks/usbutils -------------------------------------------------------------------------------- /usr/lib/archboot/cpio/hooks/vconsole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/cpio/hooks/vconsole -------------------------------------------------------------------------------- /usr/lib/archboot/cpio/hooks/wireless: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/cpio/hooks/wireless -------------------------------------------------------------------------------- /usr/lib/archboot/cpio/hooks/wireless_mods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/cpio/hooks/wireless_mods -------------------------------------------------------------------------------- /usr/lib/archboot/cpio/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/cpio/init.sh -------------------------------------------------------------------------------- /usr/lib/archboot/installer/autoconfiguration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/installer/autoconfiguration.sh -------------------------------------------------------------------------------- /usr/lib/archboot/installer/base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/installer/base.sh -------------------------------------------------------------------------------- /usr/lib/archboot/installer/blockdevices.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/installer/blockdevices.sh -------------------------------------------------------------------------------- /usr/lib/archboot/installer/bootloader.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/installer/bootloader.sh -------------------------------------------------------------------------------- /usr/lib/archboot/installer/bootloader_grub.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/installer/bootloader_grub.sh -------------------------------------------------------------------------------- /usr/lib/archboot/installer/bootloader_limine.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/installer/bootloader_limine.sh -------------------------------------------------------------------------------- /usr/lib/archboot/installer/bootloader_pacman_hooks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/installer/bootloader_pacman_hooks.sh -------------------------------------------------------------------------------- /usr/lib/archboot/installer/bootloader_refind.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/installer/bootloader_refind.sh -------------------------------------------------------------------------------- /usr/lib/archboot/installer/bootloader_sb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/installer/bootloader_sb.sh -------------------------------------------------------------------------------- /usr/lib/archboot/installer/bootloader_systemd_bootd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/installer/bootloader_systemd_bootd.sh -------------------------------------------------------------------------------- /usr/lib/archboot/installer/bootloader_uboot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/installer/bootloader_uboot.sh -------------------------------------------------------------------------------- /usr/lib/archboot/installer/bootloader_uki.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/installer/bootloader_uki.sh -------------------------------------------------------------------------------- /usr/lib/archboot/installer/btrfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/installer/btrfs.sh -------------------------------------------------------------------------------- /usr/lib/archboot/installer/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/installer/common.sh -------------------------------------------------------------------------------- /usr/lib/archboot/installer/configuration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/installer/configuration.sh -------------------------------------------------------------------------------- /usr/lib/archboot/installer/help/guid-partition.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/installer/help/guid-partition.txt -------------------------------------------------------------------------------- /usr/lib/archboot/installer/help/guid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/installer/help/guid.txt -------------------------------------------------------------------------------- /usr/lib/archboot/installer/help/luks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/installer/help/luks.txt -------------------------------------------------------------------------------- /usr/lib/archboot/installer/help/lvm2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/installer/help/lvm2.txt -------------------------------------------------------------------------------- /usr/lib/archboot/installer/help/mbr-partition.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/installer/help/mbr-partition.txt -------------------------------------------------------------------------------- /usr/lib/archboot/installer/help/md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/installer/help/md.txt -------------------------------------------------------------------------------- /usr/lib/archboot/installer/mountpoints.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/installer/mountpoints.sh -------------------------------------------------------------------------------- /usr/lib/archboot/installer/pacman.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/installer/pacman.sh -------------------------------------------------------------------------------- /usr/lib/archboot/installer/partition.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/installer/partition.sh -------------------------------------------------------------------------------- /usr/lib/archboot/installer/quicksetup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/installer/quicksetup.sh -------------------------------------------------------------------------------- /usr/lib/archboot/installer/storage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/installer/storage.sh -------------------------------------------------------------------------------- /usr/lib/archboot/ipxe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/ipxe.sh -------------------------------------------------------------------------------- /usr/lib/archboot/iso.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/iso.sh -------------------------------------------------------------------------------- /usr/lib/archboot/login.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/login.sh -------------------------------------------------------------------------------- /usr/lib/archboot/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/release.sh -------------------------------------------------------------------------------- /usr/lib/archboot/repository.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/repository.sh -------------------------------------------------------------------------------- /usr/lib/archboot/run/container-tarball.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/run/container-tarball.sh -------------------------------------------------------------------------------- /usr/lib/archboot/run/container.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/run/container.sh -------------------------------------------------------------------------------- /usr/lib/archboot/run/iso.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/run/iso.sh -------------------------------------------------------------------------------- /usr/lib/archboot/run/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/run/release.sh -------------------------------------------------------------------------------- /usr/lib/archboot/run/repository.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/run/repository.sh -------------------------------------------------------------------------------- /usr/lib/archboot/run/server-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/run/server-release.sh -------------------------------------------------------------------------------- /usr/lib/archboot/run/uki.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/run/uki.sh -------------------------------------------------------------------------------- /usr/lib/archboot/server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/server.sh -------------------------------------------------------------------------------- /usr/lib/archboot/uki.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/uki.sh -------------------------------------------------------------------------------- /usr/lib/archboot/update/desktop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/update/desktop.sh -------------------------------------------------------------------------------- /usr/lib/archboot/update/gnome.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/update/gnome.sh -------------------------------------------------------------------------------- /usr/lib/archboot/update/manage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/update/manage.sh -------------------------------------------------------------------------------- /usr/lib/archboot/update/plasma.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/update/plasma.sh -------------------------------------------------------------------------------- /usr/lib/archboot/update/sway.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/update/sway.sh -------------------------------------------------------------------------------- /usr/lib/archboot/update/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/update/update.sh -------------------------------------------------------------------------------- /usr/lib/archboot/update/xfce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/archboot/update/xfce.sh -------------------------------------------------------------------------------- /usr/lib/systemd/system/archboot-server-update.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/systemd/system/archboot-server-update.service -------------------------------------------------------------------------------- /usr/lib/systemd/system/archboot-server-update.timer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/lib/systemd/system/archboot-server-update.timer -------------------------------------------------------------------------------- /usr/share/archboot/base/etc/dialogrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/share/archboot/base/etc/dialogrc -------------------------------------------------------------------------------- /usr/share/archboot/base/etc/hostname: -------------------------------------------------------------------------------- 1 | archboot 2 | -------------------------------------------------------------------------------- /usr/share/archboot/base/etc/issue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/share/archboot/base/etc/issue -------------------------------------------------------------------------------- /usr/share/archboot/base/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=C.UTF-8 2 | LC_COLLATE=C 3 | -------------------------------------------------------------------------------- /usr/share/archboot/base/etc/modprobe.d/modprobe.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/share/archboot/base/etc/modprobe.d/modprobe.conf -------------------------------------------------------------------------------- /usr/share/archboot/base/etc/os-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/share/archboot/base/etc/os-release -------------------------------------------------------------------------------- /usr/share/archboot/base/etc/profile.d/custom-bash-options.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/share/archboot/base/etc/profile.d/custom-bash-options.sh -------------------------------------------------------------------------------- /usr/share/archboot/base/etc/sysctl.d/99-sysctl.conf: -------------------------------------------------------------------------------- 1 | vm.swappiness=1 2 | vm.vfs_cache_pressure=50 3 | -------------------------------------------------------------------------------- /usr/share/archboot/base/etc/systemd/journald.conf.d/fw-tty12.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/share/archboot/base/etc/systemd/journald.conf.d/fw-tty12.conf -------------------------------------------------------------------------------- /usr/share/archboot/base/etc/systemd/system/archboot-init.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/share/archboot/base/etc/systemd/system/archboot-init.service -------------------------------------------------------------------------------- /usr/share/archboot/base/etc/systemd/system/detect-vconsole.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/share/archboot/base/etc/systemd/system/detect-vconsole.service -------------------------------------------------------------------------------- /usr/share/archboot/base/etc/systemd/system/getty@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/share/archboot/base/etc/systemd/system/getty@.service -------------------------------------------------------------------------------- /usr/share/archboot/base/etc/systemd/system/initrd-cleanup.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/share/archboot/base/etc/systemd/system/initrd-cleanup.service -------------------------------------------------------------------------------- /usr/share/archboot/base/etc/systemd/system/pacman-init.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/share/archboot/base/etc/systemd/system/pacman-init.service -------------------------------------------------------------------------------- /usr/share/archboot/base/etc/systemd/system/serial-getty@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/share/archboot/base/etc/systemd/system/serial-getty@.service -------------------------------------------------------------------------------- /usr/share/archboot/base/etc/systemd/system/windowkeys.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/share/archboot/base/etc/systemd/system/windowkeys.service -------------------------------------------------------------------------------- /usr/share/archboot/base/etc/tmpfiles.d/var.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/share/archboot/base/etc/tmpfiles.d/var.conf -------------------------------------------------------------------------------- /usr/share/archboot/base/etc/udev/rules.d/60-ioschedulers.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/share/archboot/base/etc/udev/rules.d/60-ioschedulers.rules -------------------------------------------------------------------------------- /usr/share/archboot/base/etc/vconsole.conf: -------------------------------------------------------------------------------- 1 | KEYMAP=us 2 | -------------------------------------------------------------------------------- /usr/share/archboot/doc/archboot-autorun.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/share/archboot/doc/archboot-autorun.txt -------------------------------------------------------------------------------- /usr/share/archboot/doc/archboot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/share/archboot/doc/archboot.html -------------------------------------------------------------------------------- /usr/share/archboot/doc/archboot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/share/archboot/doc/archboot.png -------------------------------------------------------------------------------- /usr/share/archboot/doc/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/share/archboot/doc/clock.png -------------------------------------------------------------------------------- /usr/share/archboot/doc/donate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/share/archboot/doc/donate.png -------------------------------------------------------------------------------- /usr/share/archboot/doc/early-userspace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/share/archboot/doc/early-userspace.png -------------------------------------------------------------------------------- /usr/share/archboot/doc/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/share/archboot/doc/favicon.ico -------------------------------------------------------------------------------- /usr/share/archboot/doc/gallery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/share/archboot/doc/gallery.html -------------------------------------------------------------------------------- /usr/share/archboot/doc/gnome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/share/archboot/doc/gnome.png -------------------------------------------------------------------------------- /usr/share/archboot/doc/grub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/share/archboot/doc/grub.png -------------------------------------------------------------------------------- /usr/share/archboot/doc/htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/share/archboot/doc/htaccess -------------------------------------------------------------------------------- /usr/share/archboot/doc/launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/share/archboot/doc/launcher.png -------------------------------------------------------------------------------- /usr/share/archboot/doc/localization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/share/archboot/doc/localization.png -------------------------------------------------------------------------------- /usr/share/archboot/doc/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/share/archboot/doc/logo.png -------------------------------------------------------------------------------- /usr/share/archboot/doc/motd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/share/archboot/doc/motd.png -------------------------------------------------------------------------------- /usr/share/archboot/doc/network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/share/archboot/doc/network.png -------------------------------------------------------------------------------- /usr/share/archboot/doc/pacsetup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/share/archboot/doc/pacsetup.png -------------------------------------------------------------------------------- /usr/share/archboot/doc/plasma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/share/archboot/doc/plasma.png -------------------------------------------------------------------------------- /usr/share/archboot/doc/setup-main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/share/archboot/doc/setup-main.png -------------------------------------------------------------------------------- /usr/share/archboot/doc/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/share/archboot/doc/styles.css -------------------------------------------------------------------------------- /usr/share/archboot/doc/sway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/share/archboot/doc/sway.png -------------------------------------------------------------------------------- /usr/share/archboot/doc/update-installer-finish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/share/archboot/doc/update-installer-finish.png -------------------------------------------------------------------------------- /usr/share/archboot/doc/update-installer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/share/archboot/doc/update-installer.png -------------------------------------------------------------------------------- /usr/share/archboot/doc/xfce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/share/archboot/doc/xfce.png -------------------------------------------------------------------------------- /usr/share/archboot/gpg/tpowa.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/share/archboot/gpg/tpowa.gpg -------------------------------------------------------------------------------- /usr/share/archboot/grub/archboot-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/share/archboot/grub/archboot-background.png -------------------------------------------------------------------------------- /usr/share/archboot/grub/archboot-iso-grub.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/share/archboot/grub/archboot-iso-grub.cfg -------------------------------------------------------------------------------- /usr/share/archboot/grub/archboot-main-grub.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/share/archboot/grub/archboot-main-grub.cfg -------------------------------------------------------------------------------- /usr/share/archboot/ipxe/archboot.ipxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/share/archboot/ipxe/archboot.ipxe -------------------------------------------------------------------------------- /usr/share/archboot/ipxe/archboot.ipxe.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/share/archboot/ipxe/archboot.ipxe.sig -------------------------------------------------------------------------------- /usr/share/archboot/net/etc/elinks/bookmarks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/share/archboot/net/etc/elinks/bookmarks -------------------------------------------------------------------------------- /usr/share/archboot/net/etc/profile.d/elinks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/share/archboot/net/etc/profile.d/elinks.sh -------------------------------------------------------------------------------- /usr/share/archboot/net/etc/systemd/network.conf.d/ipv6-privacy-extensions.conf: -------------------------------------------------------------------------------- 1 | [Network] 2 | IPv6PrivacyExtensions=yes 3 | -------------------------------------------------------------------------------- /usr/share/archboot/net/etc/systemd/network/10-wired-auto-dhcp.network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/share/archboot/net/etc/systemd/network/10-wired-auto-dhcp.network -------------------------------------------------------------------------------- /usr/share/archboot/net/usr/share/tiny/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/share/archboot/net/usr/share/tiny/config.yml -------------------------------------------------------------------------------- /usr/share/archboot/nvim/nvim-lastplace.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/share/archboot/nvim/nvim-lastplace.lua -------------------------------------------------------------------------------- /usr/share/archboot/patches/pacman-key-aarch64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/share/archboot/patches/pacman-key-aarch64 -------------------------------------------------------------------------------- /usr/share/archboot/remote/etc/systemd/system/ttyd.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/share/archboot/remote/etc/systemd/system/ttyd.service -------------------------------------------------------------------------------- /usr/share/archboot/remote/usr/bin/remote-login.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/share/archboot/remote/usr/bin/remote-login.sh -------------------------------------------------------------------------------- /usr/share/archboot/server/create-ipxe-symlinks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/share/archboot/server/create-ipxe-symlinks.sh -------------------------------------------------------------------------------- /usr/share/archboot/server/lsws-autoindex.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/share/archboot/server/lsws-autoindex.sh -------------------------------------------------------------------------------- /usr/share/archboot/server/sync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/share/archboot/server/sync.sh -------------------------------------------------------------------------------- /usr/share/archboot/uki/archboot-background.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/share/archboot/uki/archboot-background.bmp -------------------------------------------------------------------------------- /usr/share/archboot/uki/create-uki-bmp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/share/archboot/uki/create-uki-bmp.sh -------------------------------------------------------------------------------- /usr/share/archboot/wireless/etc/udev/rules.d/60-wifi-disable-powersave.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/share/archboot/wireless/etc/udev/rules.d/60-wifi-disable-powersave.rules -------------------------------------------------------------------------------- /usr/share/bash-completion/completions/archboot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/share/bash-completion/completions/archboot -------------------------------------------------------------------------------- /usr/share/zsh/site-functions/_archboot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpowa/Archboot/HEAD/usr/share/zsh/site-functions/_archboot --------------------------------------------------------------------------------