├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── airootfs ├── etc │ ├── X11 │ │ └── xorg.conf.d │ │ │ └── 30-touchpad.conf │ ├── default │ │ └── grub │ ├── group │ ├── gshadow │ ├── hostname │ ├── locale.conf │ ├── localtime │ ├── mkinitcpio.conf │ ├── mkinitcpio.conf.d │ │ └── archiso.conf │ ├── mkinitcpio.d │ │ ├── alg │ │ └── linux.preset │ ├── modprobe.d │ │ └── broadcom-wl.conf │ ├── motd │ ├── pacman.conf │ ├── pacman.d │ │ ├── hooks │ │ │ ├── uncomment-mirrors.hook │ │ │ └── zzzz99-remove-custom-hooks-from-airootfs.hook │ │ └── mirrorlist │ ├── passwd │ ├── sddm.conf │ ├── sddm.conf.d │ │ └── autologin.conf │ ├── shadow │ ├── skel │ │ ├── .bashrc │ │ └── .config │ │ │ └── autostart │ │ │ └── welcome.desktop │ ├── ssh │ │ └── sshd_config │ ├── sudoers.d │ │ └── g_wheel │ ├── systemd │ │ ├── journald.conf.d │ │ │ └── volatile-storage.conf │ │ ├── logind.conf.d │ │ │ └── do-not-suspend.conf │ │ ├── network │ │ │ ├── 20-ethernet.network │ │ │ └── 20-wireless.network │ │ ├── resolved.conf.d │ │ │ └── archiso.conf │ │ ├── system-generators │ │ │ └── systemd-gpt-auto-generator │ │ └── system │ │ │ ├── bluetooth.target.wants │ │ │ └── bluetooth.service │ │ │ ├── choose-mirror.service │ │ │ ├── cloud-init.target.wants │ │ │ ├── cloud-config.service │ │ │ ├── cloud-final.service │ │ │ ├── cloud-init-local.service │ │ │ └── cloud-init.service │ │ │ ├── dbus-org.bluez.service │ │ │ ├── dbus-org.freedesktop.network1.service │ │ │ ├── dbus-org.freedesktop.nm-dispatcher.service │ │ │ ├── dbus-org.freedesktop.resolve1.service │ │ │ ├── dbus-org.freedesktop.timesync1.service │ │ │ ├── default.target │ │ │ ├── display-manager.service │ │ │ ├── etc-pacman.d-gnupg.mount │ │ │ ├── getty@tty1.service.d │ │ │ └── autologin.conf │ │ │ ├── livecd-alsa-unmuter.service │ │ │ ├── livecd-talk.service │ │ │ ├── multi-user.target.wants │ │ │ ├── ModemManager.service │ │ │ ├── NetworkManager.service │ │ │ ├── choose-mirror.service │ │ │ ├── cups.path │ │ │ ├── etc-pacman.d-gnupg.mount │ │ │ ├── hv_fcopy_daemon.service │ │ │ ├── hv_kvp_daemon.service │ │ │ ├── hv_vss_daemon.service │ │ │ ├── iwd.service │ │ │ ├── livecd-talk.service │ │ │ ├── pacman-init.service │ │ │ ├── reflector.service │ │ │ ├── sshd.service │ │ │ ├── systemd-networkd.service │ │ │ ├── systemd-resolved.service │ │ │ ├── vboxservice.service │ │ │ ├── vmtoolsd.service │ │ │ └── vmware-vmblock-fuse.service │ │ │ ├── network-online.target.wants │ │ │ ├── NetworkManager-wait-online.service │ │ │ └── systemd-networkd-wait-online.service │ │ │ ├── pacman-init.service │ │ │ ├── printer.target.wants │ │ │ └── cups.service │ │ │ ├── reflector.service.d │ │ │ └── archiso.conf │ │ │ ├── sockets.target.wants │ │ │ ├── cups.socket │ │ │ └── systemd-networkd.socket │ │ │ ├── sound.target.wants │ │ │ └── livecd-alsa-unmuter.service │ │ │ ├── sysinit.target.wants │ │ │ ├── systemd-time-wait-sync.service │ │ │ └── systemd-timesyncd.service │ │ │ ├── systemd-networkd-wait-online.service.d │ │ │ └── wait-for-only-one-interface.conf │ │ │ └── vboxservice.service │ └── xdg │ │ └── reflector │ │ └── reflector.conf ├── root │ ├── .automated_script.sh │ ├── .zlogin │ └── customize_airootfs.sh └── usr │ ├── local │ ├── bin │ │ ├── Installation_guide │ │ ├── alg-finalisation │ │ ├── alg-preset │ │ ├── alg-remove-nvidia │ │ ├── choose-mirror │ │ └── livecd-sound │ └── share │ │ └── livecd-sound │ │ └── asound.conf.in │ └── share │ ├── sddm │ └── themes │ │ └── Qogir │ │ ├── Background.qml │ │ ├── BreezeMenuStyle.qml │ │ ├── KeyboardButton.qml │ │ ├── Login.qml │ │ ├── Main.qml │ │ ├── SessionButton.qml │ │ ├── assets │ │ ├── logout_primary.svgz │ │ ├── restart_primary.svgz │ │ ├── shutdown_primary.svgz │ │ ├── suspend_primary.svgz │ │ └── switch_primary.svgz │ │ ├── background.jpg │ │ ├── components │ │ ├── ActionButton.qml │ │ ├── Battery.qml │ │ ├── Clock.qml │ │ ├── KeyboardLayoutButton.qml │ │ ├── SessionManagementScreen.qml │ │ ├── UserDelegate.qml │ │ ├── UserList.qml │ │ ├── VirtualKeyboard.qml │ │ └── WallpaperFader.qml │ │ ├── faces │ │ └── .face.icon │ │ ├── metadata.desktop │ │ ├── preview.png │ │ ├── real-wood.jpg │ │ ├── theme.conf │ │ └── theme.conf.user │ └── wallpapers │ ├── real-wood │ └── real-wood.jpg │ └── wall │ └── wall.png ├── bootableusb.sh ├── cleanup.sh ├── efiboot └── loader │ ├── entries │ ├── 01-archiso-x86_64-linux.conf │ └── 02-archiso-x86_64-linux-nvidia.conf │ └── loader.conf ├── grub ├── grub.cfg └── loopback.cfg ├── packages.x86_64 ├── pacman.conf ├── profiledef.sh ├── services.sh └── syslinux ├── archiso_head.cfg ├── archiso_pxe-linux.cfg ├── archiso_pxe.cfg ├── archiso_sys-linux.cfg ├── archiso_sys.cfg ├── archiso_tail.cfg ├── splash.png └── syslinux.cfg /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/README.md -------------------------------------------------------------------------------- /airootfs/etc/X11/xorg.conf.d/30-touchpad.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/etc/X11/xorg.conf.d/30-touchpad.conf -------------------------------------------------------------------------------- /airootfs/etc/default/grub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/etc/default/grub -------------------------------------------------------------------------------- /airootfs/etc/group: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/etc/group -------------------------------------------------------------------------------- /airootfs/etc/gshadow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/etc/gshadow -------------------------------------------------------------------------------- /airootfs/etc/hostname: -------------------------------------------------------------------------------- 1 | # 2 | # SPDX-License-Identifier: GPL-3.0-or-later 3 | arkalinuxgui 4 | -------------------------------------------------------------------------------- /airootfs/etc/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=C.UTF-8 2 | -------------------------------------------------------------------------------- /airootfs/etc/localtime: -------------------------------------------------------------------------------- 1 | /usr/share/zoneinfo/UTC -------------------------------------------------------------------------------- /airootfs/etc/mkinitcpio.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/etc/mkinitcpio.conf -------------------------------------------------------------------------------- /airootfs/etc/mkinitcpio.conf.d/archiso.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/etc/mkinitcpio.conf.d/archiso.conf -------------------------------------------------------------------------------- /airootfs/etc/mkinitcpio.d/alg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/etc/mkinitcpio.d/alg -------------------------------------------------------------------------------- /airootfs/etc/mkinitcpio.d/linux.preset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/etc/mkinitcpio.d/linux.preset -------------------------------------------------------------------------------- /airootfs/etc/modprobe.d/broadcom-wl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/etc/modprobe.d/broadcom-wl.conf -------------------------------------------------------------------------------- /airootfs/etc/motd: -------------------------------------------------------------------------------- 1 | Welcome to ALG Rolling! 2 | -------------------------------------------------------------------------------- /airootfs/etc/pacman.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/etc/pacman.conf -------------------------------------------------------------------------------- /airootfs/etc/pacman.d/hooks/uncomment-mirrors.hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/etc/pacman.d/hooks/uncomment-mirrors.hook -------------------------------------------------------------------------------- /airootfs/etc/pacman.d/hooks/zzzz99-remove-custom-hooks-from-airootfs.hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/etc/pacman.d/hooks/zzzz99-remove-custom-hooks-from-airootfs.hook -------------------------------------------------------------------------------- /airootfs/etc/pacman.d/mirrorlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/etc/pacman.d/mirrorlist -------------------------------------------------------------------------------- /airootfs/etc/passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/etc/passwd -------------------------------------------------------------------------------- /airootfs/etc/sddm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/etc/sddm.conf -------------------------------------------------------------------------------- /airootfs/etc/sddm.conf.d/autologin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/etc/sddm.conf.d/autologin.conf -------------------------------------------------------------------------------- /airootfs/etc/shadow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/etc/shadow -------------------------------------------------------------------------------- /airootfs/etc/skel/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/etc/skel/.bashrc -------------------------------------------------------------------------------- /airootfs/etc/skel/.config/autostart/welcome.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/etc/skel/.config/autostart/welcome.desktop -------------------------------------------------------------------------------- /airootfs/etc/ssh/sshd_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/etc/ssh/sshd_config -------------------------------------------------------------------------------- /airootfs/etc/sudoers.d/g_wheel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/etc/sudoers.d/g_wheel -------------------------------------------------------------------------------- /airootfs/etc/systemd/journald.conf.d/volatile-storage.conf: -------------------------------------------------------------------------------- 1 | # 2 | # SPDX-License-Identifier: GPL-3.0-or-later 3 | 4 | [Journal] 5 | Storage=volatile 6 | -------------------------------------------------------------------------------- /airootfs/etc/systemd/logind.conf.d/do-not-suspend.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/etc/systemd/logind.conf.d/do-not-suspend.conf -------------------------------------------------------------------------------- /airootfs/etc/systemd/network/20-ethernet.network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/etc/systemd/network/20-ethernet.network -------------------------------------------------------------------------------- /airootfs/etc/systemd/network/20-wireless.network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/etc/systemd/network/20-wireless.network -------------------------------------------------------------------------------- /airootfs/etc/systemd/resolved.conf.d/archiso.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/etc/systemd/resolved.conf.d/archiso.conf -------------------------------------------------------------------------------- /airootfs/etc/systemd/system-generators/systemd-gpt-auto-generator: -------------------------------------------------------------------------------- 1 | /dev/null -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/bluetooth.target.wants/bluetooth.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/bluetooth.service -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/choose-mirror.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/etc/systemd/system/choose-mirror.service -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/cloud-init.target.wants/cloud-config.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/cloud-config.service -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/cloud-init.target.wants/cloud-final.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/cloud-final.service -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/cloud-init.target.wants/cloud-init-local.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/cloud-init-local.service -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/cloud-init.target.wants/cloud-init.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/cloud-init.service -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/dbus-org.bluez.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/bluetooth.service -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/dbus-org.freedesktop.network1.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/systemd-networkd.service -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/dbus-org.freedesktop.nm-dispatcher.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/NetworkManager-dispatcher.service -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/dbus-org.freedesktop.resolve1.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/systemd-resolved.service -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/dbus-org.freedesktop.timesync1.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/systemd-timesyncd.service -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/default.target: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/graphical.target -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/display-manager.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/sddm.service -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/etc-pacman.d-gnupg.mount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/etc/systemd/system/etc-pacman.d-gnupg.mount -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/getty@tty1.service.d/autologin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/etc/systemd/system/getty@tty1.service.d/autologin.conf -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/livecd-alsa-unmuter.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/etc/systemd/system/livecd-alsa-unmuter.service -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/livecd-talk.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/etc/systemd/system/livecd-talk.service -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/multi-user.target.wants/ModemManager.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/ModemManager.service -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/multi-user.target.wants/NetworkManager.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/NetworkManager.service -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/multi-user.target.wants/choose-mirror.service: -------------------------------------------------------------------------------- 1 | ../choose-mirror.service -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/multi-user.target.wants/cups.path: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/cups.path -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/multi-user.target.wants/etc-pacman.d-gnupg.mount: -------------------------------------------------------------------------------- 1 | ../etc-pacman.d-gnupg.mount -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/multi-user.target.wants/hv_fcopy_daemon.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/hv_fcopy_daemon.service -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/multi-user.target.wants/hv_kvp_daemon.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/hv_kvp_daemon.service -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/multi-user.target.wants/hv_vss_daemon.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/hv_vss_daemon.service -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/multi-user.target.wants/iwd.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/iwd.service -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/multi-user.target.wants/livecd-talk.service: -------------------------------------------------------------------------------- 1 | /etc/systemd/system/livecd-talk.service -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/multi-user.target.wants/pacman-init.service: -------------------------------------------------------------------------------- 1 | ../pacman-init.service -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/multi-user.target.wants/reflector.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/reflector.service -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/multi-user.target.wants/sshd.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/sshd.service -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/multi-user.target.wants/systemd-networkd.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/systemd-networkd.service -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/multi-user.target.wants/systemd-resolved.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/systemd-resolved.service -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/multi-user.target.wants/vboxservice.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/vboxservice.service -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/multi-user.target.wants/vmtoolsd.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/vmtoolsd.service -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/multi-user.target.wants/vmware-vmblock-fuse.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/vmware-vmblock-fuse.service -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/network-online.target.wants/NetworkManager-wait-online.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/NetworkManager-wait-online.service -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/network-online.target.wants/systemd-networkd-wait-online.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/systemd-networkd-wait-online.service -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/pacman-init.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/etc/systemd/system/pacman-init.service -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/printer.target.wants/cups.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/cups.service -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/reflector.service.d/archiso.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/etc/systemd/system/reflector.service.d/archiso.conf -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/sockets.target.wants/cups.socket: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/cups.socket -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/sockets.target.wants/systemd-networkd.socket: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/systemd-networkd.socket -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/sound.target.wants/livecd-alsa-unmuter.service: -------------------------------------------------------------------------------- 1 | ../livecd-alsa-unmuter.service -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/sysinit.target.wants/systemd-time-wait-sync.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/systemd-time-wait-sync.service -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/sysinit.target.wants/systemd-timesyncd.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/system/systemd-timesyncd.service -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/systemd-networkd-wait-online.service.d/wait-for-only-one-interface.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/etc/systemd/system/systemd-networkd-wait-online.service.d/wait-for-only-one-interface.conf -------------------------------------------------------------------------------- /airootfs/etc/systemd/system/vboxservice.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/etc/systemd/system/vboxservice.service -------------------------------------------------------------------------------- /airootfs/etc/xdg/reflector/reflector.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/etc/xdg/reflector/reflector.conf -------------------------------------------------------------------------------- /airootfs/root/.automated_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/root/.automated_script.sh -------------------------------------------------------------------------------- /airootfs/root/.zlogin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/root/.zlogin -------------------------------------------------------------------------------- /airootfs/root/customize_airootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/root/customize_airootfs.sh -------------------------------------------------------------------------------- /airootfs/usr/local/bin/Installation_guide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/usr/local/bin/Installation_guide -------------------------------------------------------------------------------- /airootfs/usr/local/bin/alg-finalisation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/usr/local/bin/alg-finalisation -------------------------------------------------------------------------------- /airootfs/usr/local/bin/alg-preset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/usr/local/bin/alg-preset -------------------------------------------------------------------------------- /airootfs/usr/local/bin/alg-remove-nvidia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/usr/local/bin/alg-remove-nvidia -------------------------------------------------------------------------------- /airootfs/usr/local/bin/choose-mirror: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/usr/local/bin/choose-mirror -------------------------------------------------------------------------------- /airootfs/usr/local/bin/livecd-sound: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/usr/local/bin/livecd-sound -------------------------------------------------------------------------------- /airootfs/usr/local/share/livecd-sound/asound.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/usr/local/share/livecd-sound/asound.conf.in -------------------------------------------------------------------------------- /airootfs/usr/share/sddm/themes/Qogir/Background.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/usr/share/sddm/themes/Qogir/Background.qml -------------------------------------------------------------------------------- /airootfs/usr/share/sddm/themes/Qogir/BreezeMenuStyle.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/usr/share/sddm/themes/Qogir/BreezeMenuStyle.qml -------------------------------------------------------------------------------- /airootfs/usr/share/sddm/themes/Qogir/KeyboardButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/usr/share/sddm/themes/Qogir/KeyboardButton.qml -------------------------------------------------------------------------------- /airootfs/usr/share/sddm/themes/Qogir/Login.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/usr/share/sddm/themes/Qogir/Login.qml -------------------------------------------------------------------------------- /airootfs/usr/share/sddm/themes/Qogir/Main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/usr/share/sddm/themes/Qogir/Main.qml -------------------------------------------------------------------------------- /airootfs/usr/share/sddm/themes/Qogir/SessionButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/usr/share/sddm/themes/Qogir/SessionButton.qml -------------------------------------------------------------------------------- /airootfs/usr/share/sddm/themes/Qogir/assets/logout_primary.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/usr/share/sddm/themes/Qogir/assets/logout_primary.svgz -------------------------------------------------------------------------------- /airootfs/usr/share/sddm/themes/Qogir/assets/restart_primary.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/usr/share/sddm/themes/Qogir/assets/restart_primary.svgz -------------------------------------------------------------------------------- /airootfs/usr/share/sddm/themes/Qogir/assets/shutdown_primary.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/usr/share/sddm/themes/Qogir/assets/shutdown_primary.svgz -------------------------------------------------------------------------------- /airootfs/usr/share/sddm/themes/Qogir/assets/suspend_primary.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/usr/share/sddm/themes/Qogir/assets/suspend_primary.svgz -------------------------------------------------------------------------------- /airootfs/usr/share/sddm/themes/Qogir/assets/switch_primary.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/usr/share/sddm/themes/Qogir/assets/switch_primary.svgz -------------------------------------------------------------------------------- /airootfs/usr/share/sddm/themes/Qogir/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/usr/share/sddm/themes/Qogir/background.jpg -------------------------------------------------------------------------------- /airootfs/usr/share/sddm/themes/Qogir/components/ActionButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/usr/share/sddm/themes/Qogir/components/ActionButton.qml -------------------------------------------------------------------------------- /airootfs/usr/share/sddm/themes/Qogir/components/Battery.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/usr/share/sddm/themes/Qogir/components/Battery.qml -------------------------------------------------------------------------------- /airootfs/usr/share/sddm/themes/Qogir/components/Clock.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/usr/share/sddm/themes/Qogir/components/Clock.qml -------------------------------------------------------------------------------- /airootfs/usr/share/sddm/themes/Qogir/components/KeyboardLayoutButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/usr/share/sddm/themes/Qogir/components/KeyboardLayoutButton.qml -------------------------------------------------------------------------------- /airootfs/usr/share/sddm/themes/Qogir/components/SessionManagementScreen.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/usr/share/sddm/themes/Qogir/components/SessionManagementScreen.qml -------------------------------------------------------------------------------- /airootfs/usr/share/sddm/themes/Qogir/components/UserDelegate.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/usr/share/sddm/themes/Qogir/components/UserDelegate.qml -------------------------------------------------------------------------------- /airootfs/usr/share/sddm/themes/Qogir/components/UserList.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/usr/share/sddm/themes/Qogir/components/UserList.qml -------------------------------------------------------------------------------- /airootfs/usr/share/sddm/themes/Qogir/components/VirtualKeyboard.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/usr/share/sddm/themes/Qogir/components/VirtualKeyboard.qml -------------------------------------------------------------------------------- /airootfs/usr/share/sddm/themes/Qogir/components/WallpaperFader.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/usr/share/sddm/themes/Qogir/components/WallpaperFader.qml -------------------------------------------------------------------------------- /airootfs/usr/share/sddm/themes/Qogir/faces/.face.icon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/usr/share/sddm/themes/Qogir/faces/.face.icon -------------------------------------------------------------------------------- /airootfs/usr/share/sddm/themes/Qogir/metadata.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/usr/share/sddm/themes/Qogir/metadata.desktop -------------------------------------------------------------------------------- /airootfs/usr/share/sddm/themes/Qogir/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/usr/share/sddm/themes/Qogir/preview.png -------------------------------------------------------------------------------- /airootfs/usr/share/sddm/themes/Qogir/real-wood.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/usr/share/sddm/themes/Qogir/real-wood.jpg -------------------------------------------------------------------------------- /airootfs/usr/share/sddm/themes/Qogir/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/usr/share/sddm/themes/Qogir/theme.conf -------------------------------------------------------------------------------- /airootfs/usr/share/sddm/themes/Qogir/theme.conf.user: -------------------------------------------------------------------------------- 1 | [General] 2 | background=real-wood.jpg 3 | type=image -------------------------------------------------------------------------------- /airootfs/usr/share/wallpapers/real-wood/real-wood.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/usr/share/wallpapers/real-wood/real-wood.jpg -------------------------------------------------------------------------------- /airootfs/usr/share/wallpapers/wall/wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/airootfs/usr/share/wallpapers/wall/wall.png -------------------------------------------------------------------------------- /bootableusb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/bootableusb.sh -------------------------------------------------------------------------------- /cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/cleanup.sh -------------------------------------------------------------------------------- /efiboot/loader/entries/01-archiso-x86_64-linux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/efiboot/loader/entries/01-archiso-x86_64-linux.conf -------------------------------------------------------------------------------- /efiboot/loader/entries/02-archiso-x86_64-linux-nvidia.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/efiboot/loader/entries/02-archiso-x86_64-linux-nvidia.conf -------------------------------------------------------------------------------- /efiboot/loader/loader.conf: -------------------------------------------------------------------------------- 1 | # 2 | # SPDX-License-Identifier: GPL-3.0-or-later 3 | 4 | timeout 15 5 | default 01-archiso-x86_64-linux.conf 6 | -------------------------------------------------------------------------------- /grub/grub.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/grub/grub.cfg -------------------------------------------------------------------------------- /grub/loopback.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/grub/loopback.cfg -------------------------------------------------------------------------------- /packages.x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/packages.x86_64 -------------------------------------------------------------------------------- /pacman.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/pacman.conf -------------------------------------------------------------------------------- /profiledef.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/profiledef.sh -------------------------------------------------------------------------------- /services.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/services.sh -------------------------------------------------------------------------------- /syslinux/archiso_head.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/syslinux/archiso_head.cfg -------------------------------------------------------------------------------- /syslinux/archiso_pxe-linux.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/syslinux/archiso_pxe-linux.cfg -------------------------------------------------------------------------------- /syslinux/archiso_pxe.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/syslinux/archiso_pxe.cfg -------------------------------------------------------------------------------- /syslinux/archiso_sys-linux.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/syslinux/archiso_sys-linux.cfg -------------------------------------------------------------------------------- /syslinux/archiso_sys.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/syslinux/archiso_sys.cfg -------------------------------------------------------------------------------- /syslinux/archiso_tail.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/syslinux/archiso_tail.cfg -------------------------------------------------------------------------------- /syslinux/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/syslinux/splash.png -------------------------------------------------------------------------------- /syslinux/syslinux.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch-linux-gui/alg-plasma/HEAD/syslinux/syslinux.cfg --------------------------------------------------------------------------------