├── CONTRIBUTING ├── LICENSE ├── README.md ├── releng ├── airootfs │ ├── etc │ │ ├── X11 │ │ │ └── xinit │ │ │ │ └── xinitrc │ │ ├── fstab │ │ ├── hostname │ │ ├── locale.conf │ │ ├── machine-id │ │ ├── modules-load.d │ │ │ └── modules.conf │ │ ├── os-release │ │ ├── pam.d │ │ │ └── su │ │ ├── sudoers.d │ │ │ └── g_wheel │ │ ├── systemd │ │ │ ├── scripts │ │ │ │ └── choose-mirror │ │ │ └── system │ │ │ │ ├── choose-mirror.service │ │ │ │ ├── etc-pacman.d-gnupg.mount │ │ │ │ ├── getty@tty1.service.d │ │ │ │ └── autologin.conf │ │ │ │ └── pacman-init.service │ │ └── udev │ │ │ └── rules.d │ │ │ └── 81-dhcpcd.rules │ ├── root │ │ ├── .Xdefaults │ │ ├── .automated_script.sh │ │ ├── .config │ │ │ └── ranger │ │ │ │ ├── README.md │ │ │ │ ├── bookmarks │ │ │ │ ├── colorschemes │ │ │ │ ├── __init__.py │ │ │ │ ├── __init__.py.save │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-34.pyc │ │ │ │ │ ├── __init__.cpython-34.pyo │ │ │ │ │ ├── butter.cpython-34.pyc │ │ │ │ │ └── butter.cpython-34.pyo │ │ │ │ └── butter.py │ │ │ │ ├── history │ │ │ │ ├── rc.conf │ │ │ │ └── tagged │ │ ├── .i3 │ │ │ ├── config │ │ │ ├── i3status.conf │ │ │ └── wallpaper.png │ │ ├── .zlogin │ │ ├── LICENSE │ │ ├── bin │ │ │ ├── README.md │ │ │ ├── colors.sh │ │ │ ├── invaders.sh │ │ │ ├── lock.sh │ │ │ ├── matrix.sh │ │ │ └── rain.sh │ │ ├── conky │ │ │ └── .conkyrc │ │ ├── customize_airootfs.sh │ │ ├── fonts.conf │ │ └── getPacks.sh │ └── usr │ │ └── bin │ │ └── screenfetch ├── build.sh ├── efiboot │ └── loader │ │ ├── entries │ │ ├── archiso-x86_64-cd.conf │ │ ├── archiso-x86_64-usb.conf │ │ ├── uefi-shell-v1-x86_64.conf │ │ └── uefi-shell-v2-x86_64.conf │ │ └── loader.conf ├── isolinux │ └── isolinux.cfg ├── mkinitcpio.conf ├── packages.both ├── packages.i686 ├── packages.x86_64 ├── pacman.conf └── syslinux │ ├── archiso.cfg │ ├── archiso_head.cfg │ ├── archiso_pxe32.cfg │ ├── archiso_pxe64.cfg │ ├── archiso_pxe_32_inc.cfg │ ├── archiso_pxe_both_inc.cfg │ ├── archiso_pxe_choose.cfg │ ├── archiso_sys32.cfg │ ├── archiso_sys64.cfg │ ├── archiso_sys_32_inc.cfg │ ├── archiso_sys_both_inc.cfg │ ├── archiso_sys_choose.cfg │ ├── archiso_tail.cfg │ ├── splash.png │ └── syslinux.cfg └── todo.md /CONTRIBUTING: -------------------------------------------------------------------------------- 1 | Geraldt Weißbach - logo creator from /gd/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/README.md -------------------------------------------------------------------------------- /releng/airootfs/etc/X11/xinit/xinitrc: -------------------------------------------------------------------------------- 1 | feh --bg-scale ~/.i3/wallpaper.png 2 | mpd & 3 | exec i3 4 | -------------------------------------------------------------------------------- /releng/airootfs/etc/fstab: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /releng/airootfs/etc/hostname: -------------------------------------------------------------------------------- 1 | logos-iso 2 | -------------------------------------------------------------------------------- /releng/airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=en_US.UTF-8 2 | -------------------------------------------------------------------------------- /releng/airootfs/etc/machine-id: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /releng/airootfs/etc/modules-load.d/modules.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/releng/airootfs/etc/modules-load.d/modules.conf -------------------------------------------------------------------------------- /releng/airootfs/etc/os-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/releng/airootfs/etc/os-release -------------------------------------------------------------------------------- /releng/airootfs/etc/pam.d/su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/releng/airootfs/etc/pam.d/su -------------------------------------------------------------------------------- /releng/airootfs/etc/sudoers.d/g_wheel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/releng/airootfs/etc/sudoers.d/g_wheel -------------------------------------------------------------------------------- /releng/airootfs/etc/systemd/scripts/choose-mirror: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/releng/airootfs/etc/systemd/scripts/choose-mirror -------------------------------------------------------------------------------- /releng/airootfs/etc/systemd/system/choose-mirror.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/releng/airootfs/etc/systemd/system/choose-mirror.service -------------------------------------------------------------------------------- /releng/airootfs/etc/systemd/system/etc-pacman.d-gnupg.mount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/releng/airootfs/etc/systemd/system/etc-pacman.d-gnupg.mount -------------------------------------------------------------------------------- /releng/airootfs/etc/systemd/system/getty@tty1.service.d/autologin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/releng/airootfs/etc/systemd/system/getty@tty1.service.d/autologin.conf -------------------------------------------------------------------------------- /releng/airootfs/etc/systemd/system/pacman-init.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/releng/airootfs/etc/systemd/system/pacman-init.service -------------------------------------------------------------------------------- /releng/airootfs/etc/udev/rules.d/81-dhcpcd.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/releng/airootfs/etc/udev/rules.d/81-dhcpcd.rules -------------------------------------------------------------------------------- /releng/airootfs/root/.Xdefaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/releng/airootfs/root/.Xdefaults -------------------------------------------------------------------------------- /releng/airootfs/root/.automated_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/releng/airootfs/root/.automated_script.sh -------------------------------------------------------------------------------- /releng/airootfs/root/.config/ranger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/releng/airootfs/root/.config/ranger/README.md -------------------------------------------------------------------------------- /releng/airootfs/root/.config/ranger/bookmarks: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /releng/airootfs/root/.config/ranger/colorschemes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /releng/airootfs/root/.config/ranger/colorschemes/__init__.py.save: -------------------------------------------------------------------------------- 1 | :q 2 | q 3 | -------------------------------------------------------------------------------- /releng/airootfs/root/.config/ranger/colorschemes/__pycache__/__init__.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/releng/airootfs/root/.config/ranger/colorschemes/__pycache__/__init__.cpython-34.pyc -------------------------------------------------------------------------------- /releng/airootfs/root/.config/ranger/colorschemes/__pycache__/__init__.cpython-34.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/releng/airootfs/root/.config/ranger/colorschemes/__pycache__/__init__.cpython-34.pyo -------------------------------------------------------------------------------- /releng/airootfs/root/.config/ranger/colorschemes/__pycache__/butter.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/releng/airootfs/root/.config/ranger/colorschemes/__pycache__/butter.cpython-34.pyc -------------------------------------------------------------------------------- /releng/airootfs/root/.config/ranger/colorschemes/__pycache__/butter.cpython-34.pyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/releng/airootfs/root/.config/ranger/colorschemes/__pycache__/butter.cpython-34.pyo -------------------------------------------------------------------------------- /releng/airootfs/root/.config/ranger/colorschemes/butter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/releng/airootfs/root/.config/ranger/colorschemes/butter.py -------------------------------------------------------------------------------- /releng/airootfs/root/.config/ranger/history: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /releng/airootfs/root/.config/ranger/rc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/releng/airootfs/root/.config/ranger/rc.conf -------------------------------------------------------------------------------- /releng/airootfs/root/.config/ranger/tagged: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /releng/airootfs/root/.i3/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/releng/airootfs/root/.i3/config -------------------------------------------------------------------------------- /releng/airootfs/root/.i3/i3status.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/releng/airootfs/root/.i3/i3status.conf -------------------------------------------------------------------------------- /releng/airootfs/root/.i3/wallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/releng/airootfs/root/.i3/wallpaper.png -------------------------------------------------------------------------------- /releng/airootfs/root/.zlogin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/releng/airootfs/root/.zlogin -------------------------------------------------------------------------------- /releng/airootfs/root/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/releng/airootfs/root/LICENSE -------------------------------------------------------------------------------- /releng/airootfs/root/bin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/releng/airootfs/root/bin/README.md -------------------------------------------------------------------------------- /releng/airootfs/root/bin/colors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/releng/airootfs/root/bin/colors.sh -------------------------------------------------------------------------------- /releng/airootfs/root/bin/invaders.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/releng/airootfs/root/bin/invaders.sh -------------------------------------------------------------------------------- /releng/airootfs/root/bin/lock.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/releng/airootfs/root/bin/lock.sh -------------------------------------------------------------------------------- /releng/airootfs/root/bin/matrix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/releng/airootfs/root/bin/matrix.sh -------------------------------------------------------------------------------- /releng/airootfs/root/bin/rain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/releng/airootfs/root/bin/rain.sh -------------------------------------------------------------------------------- /releng/airootfs/root/conky/.conkyrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/releng/airootfs/root/conky/.conkyrc -------------------------------------------------------------------------------- /releng/airootfs/root/customize_airootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/releng/airootfs/root/customize_airootfs.sh -------------------------------------------------------------------------------- /releng/airootfs/root/fonts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/releng/airootfs/root/fonts.conf -------------------------------------------------------------------------------- /releng/airootfs/root/getPacks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/releng/airootfs/root/getPacks.sh -------------------------------------------------------------------------------- /releng/airootfs/usr/bin/screenfetch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/releng/airootfs/usr/bin/screenfetch -------------------------------------------------------------------------------- /releng/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/releng/build.sh -------------------------------------------------------------------------------- /releng/efiboot/loader/entries/archiso-x86_64-cd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/releng/efiboot/loader/entries/archiso-x86_64-cd.conf -------------------------------------------------------------------------------- /releng/efiboot/loader/entries/archiso-x86_64-usb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/releng/efiboot/loader/entries/archiso-x86_64-usb.conf -------------------------------------------------------------------------------- /releng/efiboot/loader/entries/uefi-shell-v1-x86_64.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/releng/efiboot/loader/entries/uefi-shell-v1-x86_64.conf -------------------------------------------------------------------------------- /releng/efiboot/loader/entries/uefi-shell-v2-x86_64.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/releng/efiboot/loader/entries/uefi-shell-v2-x86_64.conf -------------------------------------------------------------------------------- /releng/efiboot/loader/loader.conf: -------------------------------------------------------------------------------- 1 | timeout 3 2 | default archiso-x86_64 3 | -------------------------------------------------------------------------------- /releng/isolinux/isolinux.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/releng/isolinux/isolinux.cfg -------------------------------------------------------------------------------- /releng/mkinitcpio.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/releng/mkinitcpio.conf -------------------------------------------------------------------------------- /releng/packages.both: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/releng/packages.both -------------------------------------------------------------------------------- /releng/packages.i686: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /releng/packages.x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/releng/packages.x86_64 -------------------------------------------------------------------------------- /releng/pacman.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/releng/pacman.conf -------------------------------------------------------------------------------- /releng/syslinux/archiso.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/releng/syslinux/archiso.cfg -------------------------------------------------------------------------------- /releng/syslinux/archiso_head.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/releng/syslinux/archiso_head.cfg -------------------------------------------------------------------------------- /releng/syslinux/archiso_pxe32.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/releng/syslinux/archiso_pxe32.cfg -------------------------------------------------------------------------------- /releng/syslinux/archiso_pxe64.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/releng/syslinux/archiso_pxe64.cfg -------------------------------------------------------------------------------- /releng/syslinux/archiso_pxe_32_inc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/releng/syslinux/archiso_pxe_32_inc.cfg -------------------------------------------------------------------------------- /releng/syslinux/archiso_pxe_both_inc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/releng/syslinux/archiso_pxe_both_inc.cfg -------------------------------------------------------------------------------- /releng/syslinux/archiso_pxe_choose.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/releng/syslinux/archiso_pxe_choose.cfg -------------------------------------------------------------------------------- /releng/syslinux/archiso_sys32.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/releng/syslinux/archiso_sys32.cfg -------------------------------------------------------------------------------- /releng/syslinux/archiso_sys64.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/releng/syslinux/archiso_sys64.cfg -------------------------------------------------------------------------------- /releng/syslinux/archiso_sys_32_inc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/releng/syslinux/archiso_sys_32_inc.cfg -------------------------------------------------------------------------------- /releng/syslinux/archiso_sys_both_inc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/releng/syslinux/archiso_sys_both_inc.cfg -------------------------------------------------------------------------------- /releng/syslinux/archiso_sys_choose.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/releng/syslinux/archiso_sys_choose.cfg -------------------------------------------------------------------------------- /releng/syslinux/archiso_tail.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/releng/syslinux/archiso_tail.cfg -------------------------------------------------------------------------------- /releng/syslinux/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/releng/syslinux/splash.png -------------------------------------------------------------------------------- /releng/syslinux/syslinux.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/releng/syslinux/syslinux.cfg -------------------------------------------------------------------------------- /todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/logos/HEAD/todo.md --------------------------------------------------------------------------------