├── .gitignore ├── LICENSE ├── README.md ├── accessories ├── base │ └── debian.yml ├── educational │ ├── arch.yml │ ├── debian.yml │ └── ubuntu.yml ├── eggs-dev │ ├── alpine.yml │ ├── arch.yml │ ├── debian.yml │ ├── fedora.yml │ └── opensuse.yml ├── firmwares-light │ └── debian.yml ├── firmwares │ ├── codecs │ │ └── debian.yml │ ├── debian.yml │ ├── nas │ │ └── debian.yml │ ├── network-cable │ │ └── debian.yml │ ├── network-wifi │ │ └── debian.yml │ ├── printers │ │ └── debian.yml │ ├── video-amd │ │ └── debian.yml │ └── video-nvidia │ │ └── debian.yml ├── flatpak │ └── debian.yml ├── graphics │ ├── debian.yml │ └── fedora.yml ├── kvm │ └── debian.yml ├── liquorix │ ├── debian.yml │ ├── debian │ │ └── debian.yml │ ├── devuan │ │ ├── chimaera │ │ │ └── debian.yml │ │ ├── daedalus │ │ │ └── debian.yml │ │ └── debian.yml │ └── ubuntu │ │ ├── debian.yml │ │ └── second-stage │ │ └── debian.yml ├── live-installer │ ├── README.md │ ├── debs │ │ ├── circle-flags-svg_2.3.0_all.deb │ │ └── live-installer_2022.03.12_all.deb │ ├── dirs │ │ ├── etc │ │ │ ├── linuxmint │ │ │ │ ├── info │ │ │ │ └── mintSystem.conf │ │ │ ├── lsb-release │ │ │ └── sudoers.d │ │ │ │ └── live-installer │ │ └── usr │ │ │ └── share │ │ │ └── debian-system-adjustments │ │ │ ├── firefox │ │ │ └── distribution.ini │ │ │ ├── fonts │ │ │ └── 53-monospace-lcd-filter.conf │ │ │ ├── gnome-system-tools │ │ │ └── services.ui │ │ │ ├── nm-applet │ │ │ └── nm-applet.desktop │ │ │ ├── rhythmbox │ │ │ └── style.css │ │ │ ├── sound │ │ │ └── silent.oga │ │ │ └── systemd │ │ │ ├── adjust-grub-title │ │ │ ├── start │ │ │ └── stop │ └── index.yml ├── multimedia │ ├── debian.yml │ └── fedora.yml ├── nextcloud │ ├── README.md │ ├── debian.yml │ └── mariadb │ │ ├── create-database-nextcloud.sql │ │ └── index.yml ├── office │ ├── arch.yml │ ├── debian.yml │ └── fedora.yml └── waydroid │ ├── arch.yml │ ├── debian.yml │ ├── install_image_from_local.sh │ ├── install_image_from_sourceforge.sh │ ├── install_waydroid_extras.sh │ ├── install_waydroid_package_manager.sh │ ├── install_waydroid_settings.sh │ ├── no_hw_accelleration.sh │ └── ubuntu.yml ├── config ├── README.md ├── bg.yaml ├── br.yaml ├── de.yaml ├── es.yaml ├── fr.yaml ├── it.yaml ├── nl.yaml ├── pe.yaml ├── pve.yaml ├── ru.yaml ├── uk.yaml └── us.yaml ├── costumes ├── albatros │ ├── alpine.yml │ ├── arch.yml │ ├── debian.yml │ ├── fedora.yml │ └── sysroot │ │ ├── etc │ │ └── skel │ │ │ └── .config │ │ │ ├── KDE │ │ │ └── UserFeedback.org.kde.plasma-welcome.conf │ │ │ ├── Trolltech.conf │ │ │ ├── baloofilerc │ │ │ ├── dconf │ │ │ └── user │ │ │ ├── gtk-3.0 │ │ │ ├── colors.css │ │ │ ├── gtk.css │ │ │ └── settings.ini │ │ │ ├── gtk-4.0 │ │ │ ├── colors.css │ │ │ ├── gtk.css │ │ │ └── settings.ini │ │ │ ├── gtkrc │ │ │ ├── gtkrc-2.0 │ │ │ ├── kactivitymanagerd-statsrc │ │ │ ├── kactivitymanagerdrc │ │ │ ├── kconf_updaterc │ │ │ ├── kde.org │ │ │ ├── UserFeedback.org.kde.discover.conf │ │ │ └── UserFeedback.org.kde.plasmashell.conf │ │ │ ├── kded5rc │ │ │ ├── kdedefaults │ │ │ ├── kcminputrc │ │ │ ├── kdeglobals │ │ │ ├── kscreenlockerrc │ │ │ ├── ksplashrc │ │ │ ├── kwinrc │ │ │ ├── package │ │ │ └── plasmarc │ │ │ ├── kdeglobals │ │ │ ├── kglobalshortcutsrc │ │ │ ├── konsolerc │ │ │ ├── ktimezonedrc │ │ │ ├── kwinoutputconfig.json │ │ │ ├── kwinrc │ │ │ ├── plasma-localerc │ │ │ ├── plasma-org.kde.plasma.desktop-appletsrc │ │ │ ├── plasma-welcomerc │ │ │ ├── plasmarc │ │ │ ├── plasmashellrc │ │ │ ├── powermanagementprofilesrc │ │ │ ├── pulse │ │ │ └── cookie │ │ │ ├── spectaclerc │ │ │ └── xsettingsd │ │ │ └── xsettingsd.conf │ │ └── usr │ │ └── share │ │ └── backgrounds │ │ └── albastros │ │ ├── Diomedea_exulans_in_flight_-_SE_Tasmania.jpg │ │ └── credits.md ├── chicks │ ├── arch.yml │ ├── debian.yml │ ├── sysroot │ │ ├── etc │ │ │ └── skel │ │ │ │ ├── .bash_logout │ │ │ │ ├── .bashrc │ │ │ │ ├── .config │ │ │ │ └── xfce4 │ │ │ │ │ ├── desktop │ │ │ │ │ ├── icons.screen.latest.rc │ │ │ │ │ ├── icons.screen0-1008x724.rc │ │ │ │ │ ├── icons.screen0-1008x725.rc │ │ │ │ │ ├── icons.screen0-1008x727.rc │ │ │ │ │ ├── icons.screen0-1008x752.rc │ │ │ │ │ ├── icons.screen0-1904x939.rc │ │ │ │ │ └── icons.screen0-1904x947.rc │ │ │ │ │ ├── panel │ │ │ │ │ └── whiskermenu-7.rc │ │ │ │ │ ├── terminal │ │ │ │ │ └── accels.scm │ │ │ │ │ └── xfconf │ │ │ │ │ └── xfce-perchannel-xml │ │ │ │ │ ├── displays.xml │ │ │ │ │ ├── keyboards.xml │ │ │ │ │ ├── thunar.xml │ │ │ │ │ ├── xfce4-desktop.xml │ │ │ │ │ ├── xfce4-keyboard-shortcuts.xml │ │ │ │ │ ├── xfce4-notifyd.xml │ │ │ │ │ ├── xfce4-panel.xml │ │ │ │ │ ├── xfce4-power-manager.xml │ │ │ │ │ ├── xfce4-session.xml │ │ │ │ │ ├── xfwm4.xml │ │ │ │ │ └── xsettings.xml │ │ │ │ ├── .local │ │ │ │ └── share │ │ │ │ │ └── recently-used.xbel │ │ │ │ └── .profile │ │ └── usr │ │ │ └── share │ │ │ └── backgrounds │ │ │ └── chick │ │ │ ├── credits.md │ │ │ └── emperor-penguin-chicks-at-sea-world.jpg │ └── ubuntu.yml ├── colibri │ ├── README.md │ ├── alpine.yml │ ├── arch.yml │ ├── debian.yml │ ├── fedora.yml │ ├── opensuse.yml │ ├── sysroot │ │ ├── etc │ │ │ └── skel │ │ │ │ ├── .bash_logout │ │ │ │ ├── .bashrc │ │ │ │ ├── .config │ │ │ │ └── xfce4 │ │ │ │ │ ├── panel │ │ │ │ │ └── whiskermenu-7.rc │ │ │ │ │ ├── terminal │ │ │ │ │ ├── accels.scm │ │ │ │ │ └── terminalrc │ │ │ │ │ └── xfconf │ │ │ │ │ └── xfce-perchannel-xml │ │ │ │ │ ├── displays.xml │ │ │ │ │ ├── keyboards.xml │ │ │ │ │ ├── thunar.xml │ │ │ │ │ ├── xfce4-desktop.xml │ │ │ │ │ ├── xfce4-keyboard-shortcuts.xml │ │ │ │ │ ├── xfce4-panel.xml │ │ │ │ │ ├── xfce4-session.xml │ │ │ │ │ ├── xfwm4.xml │ │ │ │ │ └── xsettings.xml │ │ │ │ └── .profile │ │ └── usr │ │ │ └── share │ │ │ └── backgrounds │ │ │ └── colibri │ │ │ ├── 3794764350_2839ca0b26_b.jpg │ │ │ └── credits.md │ └── ubuntu.yml ├── duck │ ├── arch.yml │ ├── debian.yml │ ├── fedora.yml │ ├── sysroot │ │ ├── etc │ │ │ └── skel │ │ │ │ ├── .bash_logout │ │ │ │ ├── .bashrc │ │ │ │ ├── .cinnamon │ │ │ │ ├── backgrounds │ │ │ │ │ └── user-folders.lst │ │ │ │ └── configs │ │ │ │ │ ├── calendar@cinnamon.org │ │ │ │ │ └── 13.json │ │ │ │ │ ├── favorites@cinnamon.org │ │ │ │ │ └── 9.json │ │ │ │ │ ├── grouped-window-list@cinnamon.org │ │ │ │ │ └── 2.json │ │ │ │ │ ├── menu@cinnamon.org │ │ │ │ │ └── 0.json │ │ │ │ │ ├── network@cinnamon.org │ │ │ │ │ └── network@cinnamon.org.json │ │ │ │ │ ├── notifications@cinnamon.org │ │ │ │ │ └── notifications@cinnamon.org.json │ │ │ │ │ ├── power@cinnamon.org │ │ │ │ │ └── power@cinnamon.org.json │ │ │ │ │ ├── printers@cinnamon.org │ │ │ │ │ └── 6.json │ │ │ │ │ ├── show-desktop@cinnamon.org │ │ │ │ │ └── 1.json │ │ │ │ │ └── sound@cinnamon.org │ │ │ │ │ └── sound@cinnamon.org.json │ │ │ │ ├── .config │ │ │ │ ├── .keepme │ │ │ │ ├── dconf │ │ │ │ │ └── user │ │ │ │ ├── menus │ │ │ │ │ └── cinnamon-applications-merged │ │ │ │ ├── nemo │ │ │ │ │ └── desktop-metadata │ │ │ │ └── pulse │ │ │ │ │ ├── cookie │ │ │ │ │ ├── duck-card-database.tdb │ │ │ │ │ ├── duck-default-sink │ │ │ │ │ ├── duck-default-source │ │ │ │ │ ├── duck-device-volumes.tdb │ │ │ │ │ └── duck-stream-volumes.tdb │ │ │ │ └── .profile │ │ └── usr │ │ │ └── share │ │ │ └── backgrounds │ │ │ └── duck │ │ │ ├── 6819323284_e1ee501d4e_b.jpg │ │ │ └── credits.md │ └── ubuntu.yml ├── eagle-arm64 │ ├── README.md │ ├── debian.yml │ ├── pve-live.sh │ └── sysroot │ │ ├── etc │ │ ├── apt │ │ │ └── trusted.gpg.d │ │ │ │ └── pveport.gpg │ │ └── skel │ │ │ ├── .bash_logout │ │ │ ├── .bashrc │ │ │ ├── .config │ │ │ └── xfce4 │ │ │ │ ├── panel │ │ │ │ └── whiskermenu-7.rc │ │ │ │ └── xfconf │ │ │ │ └── xfce-perchannel-xml │ │ │ │ ├── displays.xml │ │ │ │ ├── thunar.xml │ │ │ │ ├── xfce4-desktop.xml │ │ │ │ ├── xfce4-keyboard-shortcuts.xml │ │ │ │ ├── xfce4-panel.xml │ │ │ │ └── xfwm4.xml │ │ │ └── .profile │ │ └── usr │ │ └── share │ │ └── backgrounds │ │ └── eagle │ │ ├── 38064032662_83c2250d7f_h.jpg │ │ └── credits.md ├── eagle │ ├── debian.yml │ ├── pve-live.sh │ └── sysroot │ │ ├── etc │ │ └── skel │ │ │ ├── .bash_logout │ │ │ ├── .bashrc │ │ │ ├── .config │ │ │ └── xfce4 │ │ │ │ ├── panel │ │ │ │ └── whiskermenu-7.rc │ │ │ │ └── xfconf │ │ │ │ └── xfce-perchannel-xml │ │ │ │ ├── displays.xml │ │ │ │ ├── thunar.xml │ │ │ │ ├── xfce4-desktop.xml │ │ │ │ ├── xfce4-keyboard-shortcuts.xml │ │ │ │ ├── xfce4-panel.xml │ │ │ │ └── xfwm4.xml │ │ │ └── .profile │ │ └── usr │ │ └── share │ │ └── backgrounds │ │ └── eagle │ │ ├── 38064032662_83c2250d7f_h.jpg │ │ └── credits.md ├── owl │ ├── debian.yml │ ├── fedora.yml │ ├── sysroot │ │ ├── etc │ │ │ └── skel │ │ │ │ ├── .bash_logout │ │ │ │ ├── .bashrc │ │ │ │ ├── .config │ │ │ │ └── xfce4 │ │ │ │ │ ├── desktop │ │ │ │ │ ├── icons.screen.latest.rc │ │ │ │ │ ├── icons.screen0-1008x724.rc │ │ │ │ │ ├── icons.screen0-1008x725.rc │ │ │ │ │ ├── icons.screen0-1008x752.rc │ │ │ │ │ └── icons.screen0-1904x939.rc │ │ │ │ │ ├── panel │ │ │ │ │ └── whiskermenu-7.rc │ │ │ │ │ ├── terminal │ │ │ │ │ └── accels.scm │ │ │ │ │ └── xfconf │ │ │ │ │ └── xfce-perchannel-xml │ │ │ │ │ ├── displays.xml │ │ │ │ │ ├── keyboards.xml │ │ │ │ │ ├── thunar.xml │ │ │ │ │ ├── xfce4-desktop.xml │ │ │ │ │ ├── xfce4-keyboard-shortcuts.xml │ │ │ │ │ ├── xfce4-panel.xml │ │ │ │ │ ├── xfce4-session.xml │ │ │ │ │ ├── xfwm4.xml │ │ │ │ │ └── xsettings.xml │ │ │ │ ├── .local │ │ │ │ └── share │ │ │ │ │ └── recently-used.xbel │ │ │ │ └── .profile │ │ └── usr │ │ │ └── share │ │ │ └── backgrounds │ │ │ └── owl │ │ │ ├── 37161836845_af56317fda_h.jpg │ │ │ └── credits.md │ └── ubuntu.yml └── seagull │ ├── README.md │ ├── arch.yml │ ├── debian.yml │ ├── sysroot │ ├── etc │ │ └── skel │ │ │ ├── .config │ │ │ └── .keepme │ │ │ └── .local │ │ │ └── share │ │ │ └── nemo │ │ │ └── actions │ │ │ └── install-to-waydroid.nemo_action │ └── usr │ │ └── share │ │ ├── applications │ │ └── install-to-waydroid.desktop │ │ └── backgrounds │ │ └── wagtail │ │ └── wagtail.jpg │ └── ubuntu.yml ├── penguins-wardrobe.png ├── scripts ├── config_desktop_link.sh ├── config_g4.sh ├── config_gdm3.sh ├── config_lightdm.sh ├── g4 │ ├── g4artisan │ ├── g4clone │ ├── g4eggs-log │ ├── g4passwd │ ├── g4tagadd │ ├── g4tagdel │ └── g4tagmove ├── hostname-pve.sh └── hostname.sh ├── servers └── lamp │ ├── debian.yml │ └── dirs │ └── var │ └── www │ └── html │ └── info.php └── vendors ├── abuntu └── theme │ ├── applications │ └── install-system.desktop │ ├── artwork │ ├── abuntu-logo.svg │ └── install-system.png │ ├── calamares │ ├── branding │ │ ├── abuntu-logo.png │ │ ├── background.png │ │ ├── branding.desc │ │ ├── icon.png │ │ ├── show.qml │ │ ├── slide1.png │ │ ├── slide2.png │ │ ├── slide3.png │ │ ├── slide4.png │ │ ├── slide5.png │ │ ├── slide6.png │ │ ├── slide7.png │ │ └── welcome.png │ └── modules │ │ └── partition.conf │ └── livecd │ ├── grub.theme.cfg │ ├── isolinux.theme.cfg │ └── splash.png ├── blendos ├── README.md └── theme │ ├── applications │ └── install-system.desktop │ ├── artwork │ └── install-system.png │ ├── calamares │ ├── branding │ │ ├── 1-reproductive-system.png │ │ ├── 2-start-reproduction.png │ │ ├── 3-its-your-system.png │ │ ├── 4-eggs-presentation.png │ │ ├── 5-wait-hatching.png │ │ ├── 6-follow-penguins.png │ │ ├── 7-created-by.png │ │ ├── blendos-logo.png │ │ ├── branding.desc │ │ ├── show.qml │ │ └── welcome.png │ ├── calamares-modules │ │ └── cfs-akshara │ │ │ ├── cfs-akshara.sh │ │ │ └── module.yml │ ├── cfs.yml │ └── modules │ │ ├── _users.yml │ │ ├── locale.yml │ │ └── partition.yml │ └── livecd │ ├── grub.theme.cfg │ ├── isolinux.theme.cfg │ └── splash.png ├── bliss ├── README.md └── theme │ ├── applications │ └── install-system.desktop │ ├── artwork │ └── install-system.png │ ├── calamares │ ├── branding │ │ ├── bliss-logo.png │ │ ├── branding.desc │ │ ├── languages.png │ │ ├── show.qml │ │ ├── slide1.png │ │ ├── slide2.png │ │ ├── slide3.png │ │ └── welcome.png │ ├── calamares-modules │ │ ├── cfs-bootloader │ │ │ ├── cfs-bootloader.sh │ │ │ └── module.yml │ │ ├── cfs-data-img │ │ │ ├── cfs-data-img.sh │ │ │ └── module.yml │ │ └── cfs-install │ │ │ ├── cfs-install.sh │ │ │ └── module.yml │ ├── cfs.yml │ └── modules │ │ └── partition.yml │ └── livecd │ ├── README.md │ ├── grub.theme.cfg │ ├── isolinux.theme.cfg │ └── splash.png ├── educaandos-plus ├── LICENSE ├── README.md ├── penguins-eggs.d │ ├── eggs.yaml │ └── tools.yaml └── theme │ ├── README.md │ ├── applications │ └── install-system.desktop │ ├── artwork │ └── install-system.png │ ├── calamares │ ├── branding │ │ ├── branding.desc │ │ ├── educaandos-plus-logo.png │ │ ├── show.qml │ │ ├── slide1.png │ │ ├── slide2.png │ │ ├── slide3.png │ │ ├── slide4.png │ │ ├── slide5.png │ │ ├── slide6.png │ │ ├── slide7.png │ │ └── welcome.png │ └── modules │ │ ├── locale.yml │ │ ├── partition.yml │ │ └── users.yml │ └── livecd │ ├── grub.theme.cfg │ ├── isolinux.theme.cfg │ ├── menu.template.cfg │ └── splash.png ├── lastos ├── lastos.yaml └── theme │ ├── applications │ └── install-system.desktop │ ├── artwork │ └── install-system.png │ ├── calamares │ └── branding │ │ ├── 1-reproductive-system.png │ │ ├── 2-start-reproduction.png │ │ ├── 3-its-your-system.png │ │ ├── 4-eggs-presentation.png │ │ ├── 5-wait-hatching.png │ │ ├── 6-follow-penguins.png │ │ ├── 7-created-by.png │ │ ├── branding.desc │ │ ├── lastos-logo.png │ │ ├── show.qml │ │ └── welcome.png │ └── livecd │ ├── grub.theme.cfg │ ├── isolinux.theme.cfg │ └── splash.png ├── linuxfx ├── patch │ ├── README.md │ ├── apply.sh │ ├── linuxfx-links-add.desktop │ ├── linuxfx-links-add.sh │ └── xdg-user-dirs.desktop └── theme │ ├── applications │ └── install-system.desktop │ ├── artwork │ ├── README.md │ └── install-system.png │ ├── calamares │ ├── branding │ │ ├── branding.desc │ │ ├── kde.png │ │ ├── linuxfx-logo.png │ │ ├── neon.png │ │ ├── plasma.png │ │ ├── secure.png │ │ ├── show.qml │ │ └── welcome.png │ └── modules │ │ └── partition.conf │ └── livecd │ ├── grub.theme.cfg │ ├── isolinux.theme.cfg │ └── splash.png ├── neon └── theme │ ├── applications │ └── install-system.desktop │ ├── artwork │ └── install-system.png │ ├── calamares │ ├── branding │ │ ├── branding.desc │ │ ├── kde.png │ │ ├── neon-logo.png │ │ ├── neon.png │ │ ├── plasma.png │ │ ├── secure.png │ │ ├── show.qml │ │ └── welcome.png │ └── modules │ │ └── partition.conf │ └── livecd │ ├── grub.theme.cfg │ ├── isolinux.theme.cfg │ └── splash.png ├── nexa └── theme │ ├── applications │ └── install-system.desktop │ ├── artwork │ └── install-system.png │ ├── calamares │ ├── branding │ │ ├── LICENSE │ │ ├── README.md │ │ ├── banner.png │ │ ├── branding.desc │ │ ├── nexa-logo.png │ │ ├── show.qml │ │ ├── slideshow │ │ │ ├── step1.png │ │ │ ├── step2.png │ │ │ └── step3.png │ │ ├── wallpaper.png │ │ └── welcome.png │ └── modules │ │ └── partition.conf │ └── livecd │ ├── grub.theme.cfg │ ├── isolinux.theme.cfg │ └── splash.png ├── parrot └── theme │ ├── applications │ └── install-system.desktop │ ├── artwork │ └── install-system.png │ ├── calamares │ └── branding │ │ ├── background.jpg │ │ ├── branding.desc │ │ ├── community.png │ │ ├── dev.png │ │ ├── learn.png │ │ ├── parrot-logo.png │ │ ├── privacy.png │ │ ├── security.png │ │ ├── server.png │ │ ├── show.qml │ │ └── welcome.png │ └── livecd │ ├── grub.theme.cfg │ ├── isolinux.theme.cfg │ └── splash.png ├── pep └── theme │ ├── applications │ └── install-system.desktop │ ├── artwork │ └── install-system.png │ ├── calamares │ └── branding │ │ ├── branding.desc │ │ ├── pep-logo.png │ │ ├── s5.png │ │ ├── show.qml │ │ ├── stylesheet.qss │ │ └── welcome.png │ └── livecd │ ├── grub.theme.cfg │ ├── isolinux.theme.cfg │ └── splash.png ├── predator ├── predator.yaml └── theme │ ├── applications │ └── install-system.desktop │ ├── artwork │ └── install-system.png │ ├── calamares │ └── branding │ │ ├── branding.desc │ │ ├── predator-logo.png │ │ ├── show.qml │ │ ├── slide_1.png │ │ ├── slide_10.png │ │ ├── slide_11.png │ │ ├── slide_12.png │ │ ├── slide_13.png │ │ ├── slide_2.png │ │ ├── slide_3.png │ │ ├── slide_4.png │ │ ├── slide_5.png │ │ ├── slide_6.png │ │ ├── slide_7.png │ │ ├── slide_8.png │ │ ├── slide_9.png │ │ └── welcome.png │ ├── install-system.png │ └── livecd │ ├── grub.main.cfg │ ├── grub.theme.cfg │ ├── isolinux.main.cfg │ ├── isolinux.theme.cfg │ └── splash.png ├── purpl3 └── theme │ ├── applications │ └── install-system.desktop │ ├── artwork │ └── install-system.png │ ├── calamares │ └── branding │ │ ├── branding.desc │ │ ├── purpl3-logo.png │ │ ├── show.qml │ │ ├── slide_1.png │ │ ├── slide_2.png │ │ ├── slide_3.png │ │ └── welcome.png │ └── livecd │ ├── grub.theme.cfg │ ├── isolinux.theme.cfg │ └── splash.png ├── pve ├── README.md └── theme │ ├── applications │ └── install-system.desktop │ ├── artwork │ └── install-system.png │ ├── calamares │ ├── branding │ │ ├── branding.desc │ │ ├── eagle.png │ │ ├── pve-logo.png │ │ ├── show.qml │ │ └── welcome.png │ ├── calamares-modules │ │ ├── cfs-keygen │ │ │ ├── cfs-keygen.sh │ │ │ └── module.yml │ │ ├── cfs-network-dhcp │ │ │ ├── cfs-network-dhcp.sh │ │ │ └── module.yml │ │ └── cfs-pvelocalhost │ │ │ ├── cfs-pvelocalhost.sh │ │ │ └── module.yml │ ├── cfs.yml │ └── modules │ │ ├── locale.yml │ │ ├── partition.yml │ │ └── users.yml │ └── livecd │ ├── grub.theme.cfg │ ├── isolinux.theme.cfg │ └── splash.png ├── quirinux └── theme │ ├── applications │ └── install-system.desktop │ ├── artwork │ └── install-system.png │ ├── calamares │ ├── branding │ │ ├── lang │ │ │ ├── calamares-show-de_DE.qm │ │ │ ├── calamares-show-en_GB.qm │ │ │ ├── calamares-show-es_AR.qm │ │ │ ├── calamares-show-es_ES.qm │ │ │ ├── calamares-show-fr_FR.qm │ │ │ ├── calamares-show-gl_ES.qm │ │ │ ├── calamares-show-it_IT.qm │ │ │ ├── calamares-show-pt_PT.qm │ │ │ ├── calamares-show-ru_RU.qm │ │ │ └── calmares-show-pt_BR.qm │ │ ├── quirinux-logo.png │ │ ├── show.qml │ │ ├── slide1.png │ │ └── welcome.png │ └── modules │ │ ├── partition.yml │ │ └── users.yml │ └── livecd │ ├── grub.main.cfg │ ├── grub.theme.cfg │ ├── isolinux.main.cfg │ ├── isolinux.theme.cfg │ └── splash.png ├── rhino └── theme │ ├── applications │ └── install-system.desktop │ ├── artwork │ ├── install-system.png │ └── rhino-logo.svg │ ├── calamares │ ├── branding │ │ ├── Base.png │ │ ├── Wizard.png │ │ ├── XFCE.png │ │ ├── branding.desc │ │ ├── icon.png │ │ ├── rhino-logo.png │ │ ├── rhinopkg.png │ │ ├── show.qml │ │ ├── waves.png │ │ └── welcome.png │ └── modules │ │ └── partition.conf │ └── livecd │ ├── grub.theme.cfg │ ├── isolinux.theme.cfg │ └── splash.png ├── spiral └── theme │ ├── applications │ └── install-system.desktop │ ├── artwork │ └── install-system.png │ ├── calamares │ ├── branding │ │ ├── branding.desc │ │ ├── show.qml │ │ ├── slide1.png │ │ ├── spiral-logo.png │ │ └── welcome.png │ └── modules │ │ └── REMOVED_partition.yml │ └── livecd │ ├── grub.theme.cfg │ ├── isolinux.theme.cfg │ └── splash.png ├── syslinuxos └── theme │ ├── applications │ └── install-system.desktop │ ├── artwork │ └── install-system.png │ ├── calamares │ ├── branding │ │ ├── 1-reproductive-system.png │ │ ├── 2-start-reproduction.png │ │ ├── 3-its-your-system.png │ │ ├── 4-syslinuxos-presentation.png │ │ ├── 5-wait-hatching.png │ │ ├── 6-follow-penguins.png │ │ ├── 7-created-by.png │ │ ├── branding.desc │ │ ├── show.qml │ │ ├── syslinuxos-logo.png │ │ └── welcome.png │ └── modules │ │ └── partition.yml │ └── livecd │ ├── grub.theme.cfg │ ├── isolinux.theme.cfg │ └── splash.png ├── telos └── theme │ ├── applications │ └── install-system.desktop │ ├── artwork │ └── install-system.png │ ├── calamares │ ├── branding │ │ ├── banner.png │ │ ├── branding.desc │ │ ├── show.qml │ │ ├── slide1.png │ │ ├── telos-logo.png │ │ └── welcome.png │ └── modules │ │ └── partition.yml │ └── livecd │ ├── README.md │ ├── grub.theme.cfg │ ├── isolinux.theme.cfg │ └── splash.png ├── ufficiozero └── theme │ ├── README.md │ ├── applications │ └── install-system.desktop │ ├── artwork │ └── install-system.png │ ├── calamares │ ├── branding │ │ ├── README.md │ │ ├── branding.desc │ │ ├── show.qml │ │ ├── slide1.png │ │ ├── slide2.png │ │ ├── slide3.png │ │ ├── slide4.png │ │ ├── slide5.png │ │ ├── slide6.png │ │ ├── ufficiozero-logo.png │ │ └── welcome.png │ └── modules │ │ └── partition.yml │ └── livecd │ ├── README.md │ ├── grub.theme.cfg │ ├── isolinux.theme.cfg │ └── splash.png ├── vw-excalibur └── theme │ ├── applications │ └── install-system.desktop │ ├── artwork │ └── install-system.png │ ├── calamares │ └── branding │ │ ├── actualizador.png │ │ ├── branding.desc │ │ ├── escritorio.png │ │ ├── htop.png │ │ ├── show.qml │ │ ├── vw-excalibur-logo.png │ │ └── welcome.png │ └── livecd │ ├── grub.theme.cfg │ ├── isolinux.theme.cfg │ └── splash.png └── waydroid └── theme ├── applications └── install-system.desktop ├── artwork └── install-system.png ├── calamares ├── branding │ ├── branding.desc │ ├── languages.png │ ├── show.qml │ ├── slide1.png │ ├── slide2.png │ ├── slide3.png │ ├── waydroid-logo.png │ └── welcome.png └── modules │ └── partition.yml └── livecd ├── README.md ├── grub.theme.cfg ├── isolinux.theme.cfg └── splash.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/README.md -------------------------------------------------------------------------------- /accessories/base/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/accessories/base/debian.yml -------------------------------------------------------------------------------- /accessories/educational/arch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/accessories/educational/arch.yml -------------------------------------------------------------------------------- /accessories/educational/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/accessories/educational/debian.yml -------------------------------------------------------------------------------- /accessories/educational/ubuntu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/accessories/educational/ubuntu.yml -------------------------------------------------------------------------------- /accessories/eggs-dev/alpine.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/accessories/eggs-dev/alpine.yml -------------------------------------------------------------------------------- /accessories/eggs-dev/arch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/accessories/eggs-dev/arch.yml -------------------------------------------------------------------------------- /accessories/eggs-dev/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/accessories/eggs-dev/debian.yml -------------------------------------------------------------------------------- /accessories/eggs-dev/fedora.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/accessories/eggs-dev/fedora.yml -------------------------------------------------------------------------------- /accessories/eggs-dev/opensuse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/accessories/eggs-dev/opensuse.yml -------------------------------------------------------------------------------- /accessories/firmwares-light/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/accessories/firmwares-light/debian.yml -------------------------------------------------------------------------------- /accessories/firmwares/codecs/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/accessories/firmwares/codecs/debian.yml -------------------------------------------------------------------------------- /accessories/firmwares/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/accessories/firmwares/debian.yml -------------------------------------------------------------------------------- /accessories/firmwares/nas/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/accessories/firmwares/nas/debian.yml -------------------------------------------------------------------------------- /accessories/firmwares/network-cable/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/accessories/firmwares/network-cable/debian.yml -------------------------------------------------------------------------------- /accessories/firmwares/network-wifi/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/accessories/firmwares/network-wifi/debian.yml -------------------------------------------------------------------------------- /accessories/firmwares/printers/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/accessories/firmwares/printers/debian.yml -------------------------------------------------------------------------------- /accessories/firmwares/video-amd/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/accessories/firmwares/video-amd/debian.yml -------------------------------------------------------------------------------- /accessories/firmwares/video-nvidia/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/accessories/firmwares/video-nvidia/debian.yml -------------------------------------------------------------------------------- /accessories/flatpak/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/accessories/flatpak/debian.yml -------------------------------------------------------------------------------- /accessories/graphics/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/accessories/graphics/debian.yml -------------------------------------------------------------------------------- /accessories/graphics/fedora.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/accessories/graphics/fedora.yml -------------------------------------------------------------------------------- /accessories/kvm/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/accessories/kvm/debian.yml -------------------------------------------------------------------------------- /accessories/liquorix/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/accessories/liquorix/debian.yml -------------------------------------------------------------------------------- /accessories/liquorix/debian/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/accessories/liquorix/debian/debian.yml -------------------------------------------------------------------------------- /accessories/liquorix/devuan/chimaera/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/accessories/liquorix/devuan/chimaera/debian.yml -------------------------------------------------------------------------------- /accessories/liquorix/devuan/daedalus/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/accessories/liquorix/devuan/daedalus/debian.yml -------------------------------------------------------------------------------- /accessories/liquorix/devuan/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/accessories/liquorix/devuan/debian.yml -------------------------------------------------------------------------------- /accessories/liquorix/ubuntu/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/accessories/liquorix/ubuntu/debian.yml -------------------------------------------------------------------------------- /accessories/liquorix/ubuntu/second-stage/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/accessories/liquorix/ubuntu/second-stage/debian.yml -------------------------------------------------------------------------------- /accessories/live-installer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/accessories/live-installer/README.md -------------------------------------------------------------------------------- /accessories/live-installer/debs/circle-flags-svg_2.3.0_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/accessories/live-installer/debs/circle-flags-svg_2.3.0_all.deb -------------------------------------------------------------------------------- /accessories/live-installer/debs/live-installer_2022.03.12_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/accessories/live-installer/debs/live-installer_2022.03.12_all.deb -------------------------------------------------------------------------------- /accessories/live-installer/dirs/etc/linuxmint/info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/accessories/live-installer/dirs/etc/linuxmint/info -------------------------------------------------------------------------------- /accessories/live-installer/dirs/etc/linuxmint/mintSystem.conf: -------------------------------------------------------------------------------- 1 | [global] 2 | enabled = True 3 | 4 | [restore] 5 | 6 | -------------------------------------------------------------------------------- /accessories/live-installer/dirs/etc/lsb-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/accessories/live-installer/dirs/etc/lsb-release -------------------------------------------------------------------------------- /accessories/live-installer/dirs/etc/sudoers.d/live-installer: -------------------------------------------------------------------------------- 1 | ALL ALL=NOPASSWD: /usr/bin/live-installer 2 | -------------------------------------------------------------------------------- /accessories/live-installer/dirs/usr/share/debian-system-adjustments/firefox/distribution.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/accessories/live-installer/dirs/usr/share/debian-system-adjustments/firefox/distribution.ini -------------------------------------------------------------------------------- /accessories/live-installer/dirs/usr/share/debian-system-adjustments/fonts/53-monospace-lcd-filter.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/accessories/live-installer/dirs/usr/share/debian-system-adjustments/fonts/53-monospace-lcd-filter.conf -------------------------------------------------------------------------------- /accessories/live-installer/dirs/usr/share/debian-system-adjustments/gnome-system-tools/services.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/accessories/live-installer/dirs/usr/share/debian-system-adjustments/gnome-system-tools/services.ui -------------------------------------------------------------------------------- /accessories/live-installer/dirs/usr/share/debian-system-adjustments/nm-applet/nm-applet.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/accessories/live-installer/dirs/usr/share/debian-system-adjustments/nm-applet/nm-applet.desktop -------------------------------------------------------------------------------- /accessories/live-installer/dirs/usr/share/debian-system-adjustments/rhythmbox/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /accessories/live-installer/dirs/usr/share/debian-system-adjustments/sound/silent.oga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/accessories/live-installer/dirs/usr/share/debian-system-adjustments/sound/silent.oga -------------------------------------------------------------------------------- /accessories/live-installer/dirs/usr/share/debian-system-adjustments/systemd/adjust-grub-title: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/accessories/live-installer/dirs/usr/share/debian-system-adjustments/systemd/adjust-grub-title -------------------------------------------------------------------------------- /accessories/live-installer/dirs/usr/share/debian-system-adjustments/systemd/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/accessories/live-installer/dirs/usr/share/debian-system-adjustments/systemd/start -------------------------------------------------------------------------------- /accessories/live-installer/dirs/usr/share/debian-system-adjustments/systemd/stop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/accessories/live-installer/dirs/usr/share/debian-system-adjustments/systemd/stop -------------------------------------------------------------------------------- /accessories/live-installer/index.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/accessories/live-installer/index.yml -------------------------------------------------------------------------------- /accessories/multimedia/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/accessories/multimedia/debian.yml -------------------------------------------------------------------------------- /accessories/multimedia/fedora.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/accessories/multimedia/fedora.yml -------------------------------------------------------------------------------- /accessories/nextcloud/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/accessories/nextcloud/README.md -------------------------------------------------------------------------------- /accessories/nextcloud/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/accessories/nextcloud/debian.yml -------------------------------------------------------------------------------- /accessories/nextcloud/mariadb/create-database-nextcloud.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/accessories/nextcloud/mariadb/create-database-nextcloud.sql -------------------------------------------------------------------------------- /accessories/nextcloud/mariadb/index.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/accessories/nextcloud/mariadb/index.yml -------------------------------------------------------------------------------- /accessories/office/arch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/accessories/office/arch.yml -------------------------------------------------------------------------------- /accessories/office/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/accessories/office/debian.yml -------------------------------------------------------------------------------- /accessories/office/fedora.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/accessories/office/fedora.yml -------------------------------------------------------------------------------- /accessories/waydroid/arch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/accessories/waydroid/arch.yml -------------------------------------------------------------------------------- /accessories/waydroid/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/accessories/waydroid/debian.yml -------------------------------------------------------------------------------- /accessories/waydroid/install_image_from_local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/accessories/waydroid/install_image_from_local.sh -------------------------------------------------------------------------------- /accessories/waydroid/install_image_from_sourceforge.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | waydroid init 4 | 5 | -------------------------------------------------------------------------------- /accessories/waydroid/install_waydroid_extras.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/accessories/waydroid/install_waydroid_extras.sh -------------------------------------------------------------------------------- /accessories/waydroid/install_waydroid_package_manager.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/accessories/waydroid/install_waydroid_package_manager.sh -------------------------------------------------------------------------------- /accessories/waydroid/install_waydroid_settings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/accessories/waydroid/install_waydroid_settings.sh -------------------------------------------------------------------------------- /accessories/waydroid/no_hw_accelleration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/accessories/waydroid/no_hw_accelleration.sh -------------------------------------------------------------------------------- /accessories/waydroid/ubuntu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/accessories/waydroid/ubuntu.yml -------------------------------------------------------------------------------- /config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/config/README.md -------------------------------------------------------------------------------- /config/bg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/config/bg.yaml -------------------------------------------------------------------------------- /config/br.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/config/br.yaml -------------------------------------------------------------------------------- /config/de.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/config/de.yaml -------------------------------------------------------------------------------- /config/es.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/config/es.yaml -------------------------------------------------------------------------------- /config/fr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/config/fr.yaml -------------------------------------------------------------------------------- /config/it.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/config/it.yaml -------------------------------------------------------------------------------- /config/nl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/config/nl.yaml -------------------------------------------------------------------------------- /config/pe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/config/pe.yaml -------------------------------------------------------------------------------- /config/pve.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/config/pve.yaml -------------------------------------------------------------------------------- /config/ru.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/uk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/config/uk.yaml -------------------------------------------------------------------------------- /config/us.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/config/us.yaml -------------------------------------------------------------------------------- /costumes/albatros/alpine.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/albatros/alpine.yml -------------------------------------------------------------------------------- /costumes/albatros/arch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/albatros/arch.yml -------------------------------------------------------------------------------- /costumes/albatros/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/albatros/debian.yml -------------------------------------------------------------------------------- /costumes/albatros/fedora.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/albatros/fedora.yml -------------------------------------------------------------------------------- /costumes/albatros/sysroot/etc/skel/.config/KDE/UserFeedback.org.kde.plasma-welcome.conf: -------------------------------------------------------------------------------- 1 | [UserFeedback] 2 | ApplicationStartCount=2 3 | -------------------------------------------------------------------------------- /costumes/albatros/sysroot/etc/skel/.config/Trolltech.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/albatros/sysroot/etc/skel/.config/Trolltech.conf -------------------------------------------------------------------------------- /costumes/albatros/sysroot/etc/skel/.config/baloofilerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/albatros/sysroot/etc/skel/.config/baloofilerc -------------------------------------------------------------------------------- /costumes/albatros/sysroot/etc/skel/.config/dconf/user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/albatros/sysroot/etc/skel/.config/dconf/user -------------------------------------------------------------------------------- /costumes/albatros/sysroot/etc/skel/.config/gtk-3.0/colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/albatros/sysroot/etc/skel/.config/gtk-3.0/colors.css -------------------------------------------------------------------------------- /costumes/albatros/sysroot/etc/skel/.config/gtk-3.0/gtk.css: -------------------------------------------------------------------------------- 1 | 2 | @import 'colors.css'; -------------------------------------------------------------------------------- /costumes/albatros/sysroot/etc/skel/.config/gtk-3.0/settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/albatros/sysroot/etc/skel/.config/gtk-3.0/settings.ini -------------------------------------------------------------------------------- /costumes/albatros/sysroot/etc/skel/.config/gtk-4.0/colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/albatros/sysroot/etc/skel/.config/gtk-4.0/colors.css -------------------------------------------------------------------------------- /costumes/albatros/sysroot/etc/skel/.config/gtk-4.0/gtk.css: -------------------------------------------------------------------------------- 1 | 2 | @import 'colors.css'; -------------------------------------------------------------------------------- /costumes/albatros/sysroot/etc/skel/.config/gtk-4.0/settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/albatros/sysroot/etc/skel/.config/gtk-4.0/settings.ini -------------------------------------------------------------------------------- /costumes/albatros/sysroot/etc/skel/.config/gtkrc: -------------------------------------------------------------------------------- 1 | # created by KDE Plasma, Sat Aug 17 11:19:27 2024 2 | # 3 | -------------------------------------------------------------------------------- /costumes/albatros/sysroot/etc/skel/.config/gtkrc-2.0: -------------------------------------------------------------------------------- 1 | # created by KDE Plasma, Sat Aug 17 11:19:27 2024 2 | # 3 | 4 | gtk-alternative-button-order = 1 5 | 6 | -------------------------------------------------------------------------------- /costumes/albatros/sysroot/etc/skel/.config/kactivitymanagerd-statsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/albatros/sysroot/etc/skel/.config/kactivitymanagerd-statsrc -------------------------------------------------------------------------------- /costumes/albatros/sysroot/etc/skel/.config/kactivitymanagerdrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/albatros/sysroot/etc/skel/.config/kactivitymanagerdrc -------------------------------------------------------------------------------- /costumes/albatros/sysroot/etc/skel/.config/kconf_updaterc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/albatros/sysroot/etc/skel/.config/kconf_updaterc -------------------------------------------------------------------------------- /costumes/albatros/sysroot/etc/skel/.config/kde.org/UserFeedback.org.kde.discover.conf: -------------------------------------------------------------------------------- 1 | [UserFeedback] 2 | ApplicationStartCount=1 3 | -------------------------------------------------------------------------------- /costumes/albatros/sysroot/etc/skel/.config/kde.org/UserFeedback.org.kde.plasmashell.conf: -------------------------------------------------------------------------------- 1 | [UserFeedback] 2 | ApplicationStartCount=2 3 | -------------------------------------------------------------------------------- /costumes/albatros/sysroot/etc/skel/.config/kded5rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/albatros/sysroot/etc/skel/.config/kded5rc -------------------------------------------------------------------------------- /costumes/albatros/sysroot/etc/skel/.config/kdedefaults/kcminputrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/albatros/sysroot/etc/skel/.config/kdedefaults/kcminputrc -------------------------------------------------------------------------------- /costumes/albatros/sysroot/etc/skel/.config/kdedefaults/kdeglobals: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/albatros/sysroot/etc/skel/.config/kdedefaults/kdeglobals -------------------------------------------------------------------------------- /costumes/albatros/sysroot/etc/skel/.config/kdedefaults/kscreenlockerrc: -------------------------------------------------------------------------------- 1 | [Greeter] 2 | Theme=org.kde.breeze.desktop 3 | -------------------------------------------------------------------------------- /costumes/albatros/sysroot/etc/skel/.config/kdedefaults/ksplashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/albatros/sysroot/etc/skel/.config/kdedefaults/ksplashrc -------------------------------------------------------------------------------- /costumes/albatros/sysroot/etc/skel/.config/kdedefaults/kwinrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/albatros/sysroot/etc/skel/.config/kdedefaults/kwinrc -------------------------------------------------------------------------------- /costumes/albatros/sysroot/etc/skel/.config/kdedefaults/package: -------------------------------------------------------------------------------- 1 | org.kde.breeze.desktop -------------------------------------------------------------------------------- /costumes/albatros/sysroot/etc/skel/.config/kdedefaults/plasmarc: -------------------------------------------------------------------------------- 1 | [Theme] 2 | name=default 3 | -------------------------------------------------------------------------------- /costumes/albatros/sysroot/etc/skel/.config/kdeglobals: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/albatros/sysroot/etc/skel/.config/kdeglobals -------------------------------------------------------------------------------- /costumes/albatros/sysroot/etc/skel/.config/kglobalshortcutsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/albatros/sysroot/etc/skel/.config/kglobalshortcutsrc -------------------------------------------------------------------------------- /costumes/albatros/sysroot/etc/skel/.config/konsolerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/albatros/sysroot/etc/skel/.config/konsolerc -------------------------------------------------------------------------------- /costumes/albatros/sysroot/etc/skel/.config/ktimezonedrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/albatros/sysroot/etc/skel/.config/ktimezonedrc -------------------------------------------------------------------------------- /costumes/albatros/sysroot/etc/skel/.config/kwinoutputconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/albatros/sysroot/etc/skel/.config/kwinoutputconfig.json -------------------------------------------------------------------------------- /costumes/albatros/sysroot/etc/skel/.config/kwinrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/albatros/sysroot/etc/skel/.config/kwinrc -------------------------------------------------------------------------------- /costumes/albatros/sysroot/etc/skel/.config/plasma-localerc: -------------------------------------------------------------------------------- 1 | [Formats] 2 | LANG=C.UTF-8 3 | -------------------------------------------------------------------------------- /costumes/albatros/sysroot/etc/skel/.config/plasma-org.kde.plasma.desktop-appletsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/albatros/sysroot/etc/skel/.config/plasma-org.kde.plasma.desktop-appletsrc -------------------------------------------------------------------------------- /costumes/albatros/sysroot/etc/skel/.config/plasma-welcomerc: -------------------------------------------------------------------------------- 1 | [General] 2 | LastSeenVersion=6.0.5 3 | -------------------------------------------------------------------------------- /costumes/albatros/sysroot/etc/skel/.config/plasmarc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/albatros/sysroot/etc/skel/.config/plasmarc -------------------------------------------------------------------------------- /costumes/albatros/sysroot/etc/skel/.config/plasmashellrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/albatros/sysroot/etc/skel/.config/plasmashellrc -------------------------------------------------------------------------------- /costumes/albatros/sysroot/etc/skel/.config/powermanagementprofilesrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/albatros/sysroot/etc/skel/.config/powermanagementprofilesrc -------------------------------------------------------------------------------- /costumes/albatros/sysroot/etc/skel/.config/pulse/cookie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/albatros/sysroot/etc/skel/.config/pulse/cookie -------------------------------------------------------------------------------- /costumes/albatros/sysroot/etc/skel/.config/spectaclerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/albatros/sysroot/etc/skel/.config/spectaclerc -------------------------------------------------------------------------------- /costumes/albatros/sysroot/etc/skel/.config/xsettingsd/xsettingsd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/albatros/sysroot/etc/skel/.config/xsettingsd/xsettingsd.conf -------------------------------------------------------------------------------- /costumes/albatros/sysroot/usr/share/backgrounds/albastros/Diomedea_exulans_in_flight_-_SE_Tasmania.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/albatros/sysroot/usr/share/backgrounds/albastros/Diomedea_exulans_in_flight_-_SE_Tasmania.jpg -------------------------------------------------------------------------------- /costumes/albatros/sysroot/usr/share/backgrounds/albastros/credits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/albatros/sysroot/usr/share/backgrounds/albastros/credits.md -------------------------------------------------------------------------------- /costumes/chicks/arch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/chicks/arch.yml -------------------------------------------------------------------------------- /costumes/chicks/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/chicks/debian.yml -------------------------------------------------------------------------------- /costumes/chicks/sysroot/etc/skel/.bash_logout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/chicks/sysroot/etc/skel/.bash_logout -------------------------------------------------------------------------------- /costumes/chicks/sysroot/etc/skel/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/chicks/sysroot/etc/skel/.bashrc -------------------------------------------------------------------------------- /costumes/chicks/sysroot/etc/skel/.config/xfce4/desktop/icons.screen.latest.rc: -------------------------------------------------------------------------------- 1 | /home/artisan/.config/xfce4/desktop/icons.screen0-1008x725.rc -------------------------------------------------------------------------------- /costumes/chicks/sysroot/etc/skel/.config/xfce4/desktop/icons.screen0-1008x724.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/chicks/sysroot/etc/skel/.config/xfce4/desktop/icons.screen0-1008x724.rc -------------------------------------------------------------------------------- /costumes/chicks/sysroot/etc/skel/.config/xfce4/desktop/icons.screen0-1008x725.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/chicks/sysroot/etc/skel/.config/xfce4/desktop/icons.screen0-1008x725.rc -------------------------------------------------------------------------------- /costumes/chicks/sysroot/etc/skel/.config/xfce4/desktop/icons.screen0-1008x727.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/chicks/sysroot/etc/skel/.config/xfce4/desktop/icons.screen0-1008x727.rc -------------------------------------------------------------------------------- /costumes/chicks/sysroot/etc/skel/.config/xfce4/desktop/icons.screen0-1008x752.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/chicks/sysroot/etc/skel/.config/xfce4/desktop/icons.screen0-1008x752.rc -------------------------------------------------------------------------------- /costumes/chicks/sysroot/etc/skel/.config/xfce4/desktop/icons.screen0-1904x939.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/chicks/sysroot/etc/skel/.config/xfce4/desktop/icons.screen0-1904x939.rc -------------------------------------------------------------------------------- /costumes/chicks/sysroot/etc/skel/.config/xfce4/desktop/icons.screen0-1904x947.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/chicks/sysroot/etc/skel/.config/xfce4/desktop/icons.screen0-1904x947.rc -------------------------------------------------------------------------------- /costumes/chicks/sysroot/etc/skel/.config/xfce4/panel/whiskermenu-7.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/chicks/sysroot/etc/skel/.config/xfce4/panel/whiskermenu-7.rc -------------------------------------------------------------------------------- /costumes/chicks/sysroot/etc/skel/.config/xfce4/terminal/accels.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/chicks/sysroot/etc/skel/.config/xfce4/terminal/accels.scm -------------------------------------------------------------------------------- /costumes/chicks/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/displays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/chicks/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/displays.xml -------------------------------------------------------------------------------- /costumes/chicks/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/keyboards.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/chicks/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/keyboards.xml -------------------------------------------------------------------------------- /costumes/chicks/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/thunar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/chicks/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/thunar.xml -------------------------------------------------------------------------------- /costumes/chicks/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/chicks/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml -------------------------------------------------------------------------------- /costumes/chicks/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/chicks/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml -------------------------------------------------------------------------------- /costumes/chicks/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-notifyd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/chicks/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-notifyd.xml -------------------------------------------------------------------------------- /costumes/chicks/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/chicks/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml -------------------------------------------------------------------------------- /costumes/chicks/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-power-manager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/chicks/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-power-manager.xml -------------------------------------------------------------------------------- /costumes/chicks/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-session.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/chicks/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-session.xml -------------------------------------------------------------------------------- /costumes/chicks/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/chicks/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml -------------------------------------------------------------------------------- /costumes/chicks/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/chicks/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml -------------------------------------------------------------------------------- /costumes/chicks/sysroot/etc/skel/.local/share/recently-used.xbel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/chicks/sysroot/etc/skel/.local/share/recently-used.xbel -------------------------------------------------------------------------------- /costumes/chicks/sysroot/etc/skel/.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/chicks/sysroot/etc/skel/.profile -------------------------------------------------------------------------------- /costumes/chicks/sysroot/usr/share/backgrounds/chick/credits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/chicks/sysroot/usr/share/backgrounds/chick/credits.md -------------------------------------------------------------------------------- /costumes/chicks/sysroot/usr/share/backgrounds/chick/emperor-penguin-chicks-at-sea-world.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/chicks/sysroot/usr/share/backgrounds/chick/emperor-penguin-chicks-at-sea-world.jpg -------------------------------------------------------------------------------- /costumes/chicks/ubuntu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/chicks/ubuntu.yml -------------------------------------------------------------------------------- /costumes/colibri/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/colibri/README.md -------------------------------------------------------------------------------- /costumes/colibri/alpine.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/colibri/alpine.yml -------------------------------------------------------------------------------- /costumes/colibri/arch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/colibri/arch.yml -------------------------------------------------------------------------------- /costumes/colibri/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/colibri/debian.yml -------------------------------------------------------------------------------- /costumes/colibri/fedora.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/colibri/fedora.yml -------------------------------------------------------------------------------- /costumes/colibri/opensuse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/colibri/opensuse.yml -------------------------------------------------------------------------------- /costumes/colibri/sysroot/etc/skel/.bash_logout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/colibri/sysroot/etc/skel/.bash_logout -------------------------------------------------------------------------------- /costumes/colibri/sysroot/etc/skel/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/colibri/sysroot/etc/skel/.bashrc -------------------------------------------------------------------------------- /costumes/colibri/sysroot/etc/skel/.config/xfce4/panel/whiskermenu-7.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/colibri/sysroot/etc/skel/.config/xfce4/panel/whiskermenu-7.rc -------------------------------------------------------------------------------- /costumes/colibri/sysroot/etc/skel/.config/xfce4/terminal/accels.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/colibri/sysroot/etc/skel/.config/xfce4/terminal/accels.scm -------------------------------------------------------------------------------- /costumes/colibri/sysroot/etc/skel/.config/xfce4/terminal/terminalrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/colibri/sysroot/etc/skel/.config/xfce4/terminal/terminalrc -------------------------------------------------------------------------------- /costumes/colibri/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/displays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/colibri/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/displays.xml -------------------------------------------------------------------------------- /costumes/colibri/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/keyboards.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/colibri/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/keyboards.xml -------------------------------------------------------------------------------- /costumes/colibri/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/thunar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/colibri/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/thunar.xml -------------------------------------------------------------------------------- /costumes/colibri/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/colibri/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml -------------------------------------------------------------------------------- /costumes/colibri/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/colibri/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml -------------------------------------------------------------------------------- /costumes/colibri/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/colibri/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml -------------------------------------------------------------------------------- /costumes/colibri/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-session.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/colibri/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-session.xml -------------------------------------------------------------------------------- /costumes/colibri/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/colibri/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml -------------------------------------------------------------------------------- /costumes/colibri/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/colibri/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml -------------------------------------------------------------------------------- /costumes/colibri/sysroot/etc/skel/.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/colibri/sysroot/etc/skel/.profile -------------------------------------------------------------------------------- /costumes/colibri/sysroot/usr/share/backgrounds/colibri/3794764350_2839ca0b26_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/colibri/sysroot/usr/share/backgrounds/colibri/3794764350_2839ca0b26_b.jpg -------------------------------------------------------------------------------- /costumes/colibri/sysroot/usr/share/backgrounds/colibri/credits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/colibri/sysroot/usr/share/backgrounds/colibri/credits.md -------------------------------------------------------------------------------- /costumes/colibri/ubuntu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/colibri/ubuntu.yml -------------------------------------------------------------------------------- /costumes/duck/arch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/duck/arch.yml -------------------------------------------------------------------------------- /costumes/duck/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/duck/debian.yml -------------------------------------------------------------------------------- /costumes/duck/fedora.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/duck/fedora.yml -------------------------------------------------------------------------------- /costumes/duck/sysroot/etc/skel/.bash_logout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/duck/sysroot/etc/skel/.bash_logout -------------------------------------------------------------------------------- /costumes/duck/sysroot/etc/skel/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/duck/sysroot/etc/skel/.bashrc -------------------------------------------------------------------------------- /costumes/duck/sysroot/etc/skel/.cinnamon/backgrounds/user-folders.lst: -------------------------------------------------------------------------------- 1 | /home/artisan/Pictures 2 | /usr/share/backgrounds/duck 3 | -------------------------------------------------------------------------------- /costumes/duck/sysroot/etc/skel/.cinnamon/configs/calendar@cinnamon.org/13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/duck/sysroot/etc/skel/.cinnamon/configs/calendar@cinnamon.org/13.json -------------------------------------------------------------------------------- /costumes/duck/sysroot/etc/skel/.cinnamon/configs/favorites@cinnamon.org/9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/duck/sysroot/etc/skel/.cinnamon/configs/favorites@cinnamon.org/9.json -------------------------------------------------------------------------------- /costumes/duck/sysroot/etc/skel/.cinnamon/configs/grouped-window-list@cinnamon.org/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/duck/sysroot/etc/skel/.cinnamon/configs/grouped-window-list@cinnamon.org/2.json -------------------------------------------------------------------------------- /costumes/duck/sysroot/etc/skel/.cinnamon/configs/menu@cinnamon.org/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/duck/sysroot/etc/skel/.cinnamon/configs/menu@cinnamon.org/0.json -------------------------------------------------------------------------------- /costumes/duck/sysroot/etc/skel/.cinnamon/configs/network@cinnamon.org/network@cinnamon.org.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/duck/sysroot/etc/skel/.cinnamon/configs/network@cinnamon.org/network@cinnamon.org.json -------------------------------------------------------------------------------- /costumes/duck/sysroot/etc/skel/.cinnamon/configs/notifications@cinnamon.org/notifications@cinnamon.org.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/duck/sysroot/etc/skel/.cinnamon/configs/notifications@cinnamon.org/notifications@cinnamon.org.json -------------------------------------------------------------------------------- /costumes/duck/sysroot/etc/skel/.cinnamon/configs/power@cinnamon.org/power@cinnamon.org.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/duck/sysroot/etc/skel/.cinnamon/configs/power@cinnamon.org/power@cinnamon.org.json -------------------------------------------------------------------------------- /costumes/duck/sysroot/etc/skel/.cinnamon/configs/printers@cinnamon.org/6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/duck/sysroot/etc/skel/.cinnamon/configs/printers@cinnamon.org/6.json -------------------------------------------------------------------------------- /costumes/duck/sysroot/etc/skel/.cinnamon/configs/show-desktop@cinnamon.org/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/duck/sysroot/etc/skel/.cinnamon/configs/show-desktop@cinnamon.org/1.json -------------------------------------------------------------------------------- /costumes/duck/sysroot/etc/skel/.cinnamon/configs/sound@cinnamon.org/sound@cinnamon.org.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/duck/sysroot/etc/skel/.cinnamon/configs/sound@cinnamon.org/sound@cinnamon.org.json -------------------------------------------------------------------------------- /costumes/duck/sysroot/etc/skel/.config/.keepme: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /costumes/duck/sysroot/etc/skel/.config/dconf/user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/duck/sysroot/etc/skel/.config/dconf/user -------------------------------------------------------------------------------- /costumes/duck/sysroot/etc/skel/.config/menus/cinnamon-applications-merged: -------------------------------------------------------------------------------- 1 | /home/artisan/.config/menus/applications-merged -------------------------------------------------------------------------------- /costumes/duck/sysroot/etc/skel/.config/nemo/desktop-metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/duck/sysroot/etc/skel/.config/nemo/desktop-metadata -------------------------------------------------------------------------------- /costumes/duck/sysroot/etc/skel/.config/pulse/cookie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/duck/sysroot/etc/skel/.config/pulse/cookie -------------------------------------------------------------------------------- /costumes/duck/sysroot/etc/skel/.config/pulse/duck-card-database.tdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/duck/sysroot/etc/skel/.config/pulse/duck-card-database.tdb -------------------------------------------------------------------------------- /costumes/duck/sysroot/etc/skel/.config/pulse/duck-default-sink: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /costumes/duck/sysroot/etc/skel/.config/pulse/duck-default-source: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /costumes/duck/sysroot/etc/skel/.config/pulse/duck-device-volumes.tdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/duck/sysroot/etc/skel/.config/pulse/duck-device-volumes.tdb -------------------------------------------------------------------------------- /costumes/duck/sysroot/etc/skel/.config/pulse/duck-stream-volumes.tdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/duck/sysroot/etc/skel/.config/pulse/duck-stream-volumes.tdb -------------------------------------------------------------------------------- /costumes/duck/sysroot/etc/skel/.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/duck/sysroot/etc/skel/.profile -------------------------------------------------------------------------------- /costumes/duck/sysroot/usr/share/backgrounds/duck/6819323284_e1ee501d4e_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/duck/sysroot/usr/share/backgrounds/duck/6819323284_e1ee501d4e_b.jpg -------------------------------------------------------------------------------- /costumes/duck/sysroot/usr/share/backgrounds/duck/credits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/duck/sysroot/usr/share/backgrounds/duck/credits.md -------------------------------------------------------------------------------- /costumes/duck/ubuntu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/duck/ubuntu.yml -------------------------------------------------------------------------------- /costumes/eagle-arm64/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/eagle-arm64/README.md -------------------------------------------------------------------------------- /costumes/eagle-arm64/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/eagle-arm64/debian.yml -------------------------------------------------------------------------------- /costumes/eagle-arm64/pve-live.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/eagle-arm64/pve-live.sh -------------------------------------------------------------------------------- /costumes/eagle-arm64/sysroot/etc/apt/trusted.gpg.d/pveport.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/eagle-arm64/sysroot/etc/apt/trusted.gpg.d/pveport.gpg -------------------------------------------------------------------------------- /costumes/eagle-arm64/sysroot/etc/skel/.bash_logout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/eagle-arm64/sysroot/etc/skel/.bash_logout -------------------------------------------------------------------------------- /costumes/eagle-arm64/sysroot/etc/skel/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/eagle-arm64/sysroot/etc/skel/.bashrc -------------------------------------------------------------------------------- /costumes/eagle-arm64/sysroot/etc/skel/.config/xfce4/panel/whiskermenu-7.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/eagle-arm64/sysroot/etc/skel/.config/xfce4/panel/whiskermenu-7.rc -------------------------------------------------------------------------------- /costumes/eagle-arm64/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/displays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/eagle-arm64/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/displays.xml -------------------------------------------------------------------------------- /costumes/eagle-arm64/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/thunar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/eagle-arm64/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/thunar.xml -------------------------------------------------------------------------------- /costumes/eagle-arm64/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/eagle-arm64/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml -------------------------------------------------------------------------------- /costumes/eagle-arm64/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/eagle-arm64/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml -------------------------------------------------------------------------------- /costumes/eagle-arm64/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/eagle-arm64/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml -------------------------------------------------------------------------------- /costumes/eagle-arm64/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/eagle-arm64/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml -------------------------------------------------------------------------------- /costumes/eagle-arm64/sysroot/etc/skel/.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/eagle-arm64/sysroot/etc/skel/.profile -------------------------------------------------------------------------------- /costumes/eagle-arm64/sysroot/usr/share/backgrounds/eagle/38064032662_83c2250d7f_h.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/eagle-arm64/sysroot/usr/share/backgrounds/eagle/38064032662_83c2250d7f_h.jpg -------------------------------------------------------------------------------- /costumes/eagle-arm64/sysroot/usr/share/backgrounds/eagle/credits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/eagle-arm64/sysroot/usr/share/backgrounds/eagle/credits.md -------------------------------------------------------------------------------- /costumes/eagle/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/eagle/debian.yml -------------------------------------------------------------------------------- /costumes/eagle/pve-live.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/eagle/pve-live.sh -------------------------------------------------------------------------------- /costumes/eagle/sysroot/etc/skel/.bash_logout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/eagle/sysroot/etc/skel/.bash_logout -------------------------------------------------------------------------------- /costumes/eagle/sysroot/etc/skel/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/eagle/sysroot/etc/skel/.bashrc -------------------------------------------------------------------------------- /costumes/eagle/sysroot/etc/skel/.config/xfce4/panel/whiskermenu-7.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/eagle/sysroot/etc/skel/.config/xfce4/panel/whiskermenu-7.rc -------------------------------------------------------------------------------- /costumes/eagle/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/displays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/eagle/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/displays.xml -------------------------------------------------------------------------------- /costumes/eagle/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/thunar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/eagle/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/thunar.xml -------------------------------------------------------------------------------- /costumes/eagle/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/eagle/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml -------------------------------------------------------------------------------- /costumes/eagle/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/eagle/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml -------------------------------------------------------------------------------- /costumes/eagle/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/eagle/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml -------------------------------------------------------------------------------- /costumes/eagle/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/eagle/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml -------------------------------------------------------------------------------- /costumes/eagle/sysroot/etc/skel/.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/eagle/sysroot/etc/skel/.profile -------------------------------------------------------------------------------- /costumes/eagle/sysroot/usr/share/backgrounds/eagle/38064032662_83c2250d7f_h.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/eagle/sysroot/usr/share/backgrounds/eagle/38064032662_83c2250d7f_h.jpg -------------------------------------------------------------------------------- /costumes/eagle/sysroot/usr/share/backgrounds/eagle/credits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/eagle/sysroot/usr/share/backgrounds/eagle/credits.md -------------------------------------------------------------------------------- /costumes/owl/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/owl/debian.yml -------------------------------------------------------------------------------- /costumes/owl/fedora.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/owl/fedora.yml -------------------------------------------------------------------------------- /costumes/owl/sysroot/etc/skel/.bash_logout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/owl/sysroot/etc/skel/.bash_logout -------------------------------------------------------------------------------- /costumes/owl/sysroot/etc/skel/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/owl/sysroot/etc/skel/.bashrc -------------------------------------------------------------------------------- /costumes/owl/sysroot/etc/skel/.config/xfce4/desktop/icons.screen.latest.rc: -------------------------------------------------------------------------------- 1 | /home/artisan/.config/xfce4/desktop/icons.screen0-1904x939.rc -------------------------------------------------------------------------------- /costumes/owl/sysroot/etc/skel/.config/xfce4/desktop/icons.screen0-1008x724.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/owl/sysroot/etc/skel/.config/xfce4/desktop/icons.screen0-1008x724.rc -------------------------------------------------------------------------------- /costumes/owl/sysroot/etc/skel/.config/xfce4/desktop/icons.screen0-1008x725.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/owl/sysroot/etc/skel/.config/xfce4/desktop/icons.screen0-1008x725.rc -------------------------------------------------------------------------------- /costumes/owl/sysroot/etc/skel/.config/xfce4/desktop/icons.screen0-1008x752.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/owl/sysroot/etc/skel/.config/xfce4/desktop/icons.screen0-1008x752.rc -------------------------------------------------------------------------------- /costumes/owl/sysroot/etc/skel/.config/xfce4/desktop/icons.screen0-1904x939.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/owl/sysroot/etc/skel/.config/xfce4/desktop/icons.screen0-1904x939.rc -------------------------------------------------------------------------------- /costumes/owl/sysroot/etc/skel/.config/xfce4/panel/whiskermenu-7.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/owl/sysroot/etc/skel/.config/xfce4/panel/whiskermenu-7.rc -------------------------------------------------------------------------------- /costumes/owl/sysroot/etc/skel/.config/xfce4/terminal/accels.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/owl/sysroot/etc/skel/.config/xfce4/terminal/accels.scm -------------------------------------------------------------------------------- /costumes/owl/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/displays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/owl/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/displays.xml -------------------------------------------------------------------------------- /costumes/owl/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/keyboards.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/owl/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/keyboards.xml -------------------------------------------------------------------------------- /costumes/owl/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/thunar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/owl/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/thunar.xml -------------------------------------------------------------------------------- /costumes/owl/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/owl/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml -------------------------------------------------------------------------------- /costumes/owl/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/owl/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml -------------------------------------------------------------------------------- /costumes/owl/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/owl/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml -------------------------------------------------------------------------------- /costumes/owl/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-session.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/owl/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-session.xml -------------------------------------------------------------------------------- /costumes/owl/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/owl/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml -------------------------------------------------------------------------------- /costumes/owl/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/owl/sysroot/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml -------------------------------------------------------------------------------- /costumes/owl/sysroot/etc/skel/.local/share/recently-used.xbel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/owl/sysroot/etc/skel/.local/share/recently-used.xbel -------------------------------------------------------------------------------- /costumes/owl/sysroot/etc/skel/.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/owl/sysroot/etc/skel/.profile -------------------------------------------------------------------------------- /costumes/owl/sysroot/usr/share/backgrounds/owl/37161836845_af56317fda_h.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/owl/sysroot/usr/share/backgrounds/owl/37161836845_af56317fda_h.jpg -------------------------------------------------------------------------------- /costumes/owl/sysroot/usr/share/backgrounds/owl/credits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/owl/sysroot/usr/share/backgrounds/owl/credits.md -------------------------------------------------------------------------------- /costumes/owl/ubuntu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/owl/ubuntu.yml -------------------------------------------------------------------------------- /costumes/seagull/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/seagull/README.md -------------------------------------------------------------------------------- /costumes/seagull/arch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/seagull/arch.yml -------------------------------------------------------------------------------- /costumes/seagull/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/seagull/debian.yml -------------------------------------------------------------------------------- /costumes/seagull/sysroot/etc/skel/.config/.keepme: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /costumes/seagull/sysroot/etc/skel/.local/share/nemo/actions/install-to-waydroid.nemo_action: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/seagull/sysroot/etc/skel/.local/share/nemo/actions/install-to-waydroid.nemo_action -------------------------------------------------------------------------------- /costumes/seagull/sysroot/usr/share/applications/install-to-waydroid.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/seagull/sysroot/usr/share/applications/install-to-waydroid.desktop -------------------------------------------------------------------------------- /costumes/seagull/sysroot/usr/share/backgrounds/wagtail/wagtail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/seagull/sysroot/usr/share/backgrounds/wagtail/wagtail.jpg -------------------------------------------------------------------------------- /costumes/seagull/ubuntu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/costumes/seagull/ubuntu.yml -------------------------------------------------------------------------------- /penguins-wardrobe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/penguins-wardrobe.png -------------------------------------------------------------------------------- /scripts/config_desktop_link.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/scripts/config_desktop_link.sh -------------------------------------------------------------------------------- /scripts/config_g4.sh: -------------------------------------------------------------------------------- 1 | cp -f /home/${SUDO_USER}/.wardrobe/scripts/g4/* /usr/local/bin 2 | -------------------------------------------------------------------------------- /scripts/config_gdm3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/scripts/config_gdm3.sh -------------------------------------------------------------------------------- /scripts/config_lightdm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/scripts/config_lightdm.sh -------------------------------------------------------------------------------- /scripts/g4/g4artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/scripts/g4/g4artisan -------------------------------------------------------------------------------- /scripts/g4/g4clone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/scripts/g4/g4clone -------------------------------------------------------------------------------- /scripts/g4/g4eggs-log: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | eggs $1 $2 $3 $4 $5 --verbose | tee eggs-$1.log 3 | -------------------------------------------------------------------------------- /scripts/g4/g4passwd: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | git config --global credential.helper store 3 | -------------------------------------------------------------------------------- /scripts/g4/g4tagadd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/scripts/g4/g4tagadd -------------------------------------------------------------------------------- /scripts/g4/g4tagdel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/scripts/g4/g4tagdel -------------------------------------------------------------------------------- /scripts/g4/g4tagmove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/scripts/g4/g4tagmove -------------------------------------------------------------------------------- /scripts/hostname-pve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/scripts/hostname-pve.sh -------------------------------------------------------------------------------- /scripts/hostname.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/scripts/hostname.sh -------------------------------------------------------------------------------- /servers/lamp/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/servers/lamp/debian.yml -------------------------------------------------------------------------------- /servers/lamp/dirs/var/www/html/info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/servers/lamp/dirs/var/www/html/info.php -------------------------------------------------------------------------------- /vendors/abuntu/theme/applications/install-system.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/abuntu/theme/applications/install-system.desktop -------------------------------------------------------------------------------- /vendors/abuntu/theme/artwork/abuntu-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/abuntu/theme/artwork/abuntu-logo.svg -------------------------------------------------------------------------------- /vendors/abuntu/theme/artwork/install-system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/abuntu/theme/artwork/install-system.png -------------------------------------------------------------------------------- /vendors/abuntu/theme/calamares/branding/abuntu-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/abuntu/theme/calamares/branding/abuntu-logo.png -------------------------------------------------------------------------------- /vendors/abuntu/theme/calamares/branding/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/abuntu/theme/calamares/branding/background.png -------------------------------------------------------------------------------- /vendors/abuntu/theme/calamares/branding/branding.desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/abuntu/theme/calamares/branding/branding.desc -------------------------------------------------------------------------------- /vendors/abuntu/theme/calamares/branding/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/abuntu/theme/calamares/branding/icon.png -------------------------------------------------------------------------------- /vendors/abuntu/theme/calamares/branding/show.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/abuntu/theme/calamares/branding/show.qml -------------------------------------------------------------------------------- /vendors/abuntu/theme/calamares/branding/slide1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/abuntu/theme/calamares/branding/slide1.png -------------------------------------------------------------------------------- /vendors/abuntu/theme/calamares/branding/slide2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/abuntu/theme/calamares/branding/slide2.png -------------------------------------------------------------------------------- /vendors/abuntu/theme/calamares/branding/slide3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/abuntu/theme/calamares/branding/slide3.png -------------------------------------------------------------------------------- /vendors/abuntu/theme/calamares/branding/slide4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/abuntu/theme/calamares/branding/slide4.png -------------------------------------------------------------------------------- /vendors/abuntu/theme/calamares/branding/slide5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/abuntu/theme/calamares/branding/slide5.png -------------------------------------------------------------------------------- /vendors/abuntu/theme/calamares/branding/slide6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/abuntu/theme/calamares/branding/slide6.png -------------------------------------------------------------------------------- /vendors/abuntu/theme/calamares/branding/slide7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/abuntu/theme/calamares/branding/slide7.png -------------------------------------------------------------------------------- /vendors/abuntu/theme/calamares/branding/welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/abuntu/theme/calamares/branding/welcome.png -------------------------------------------------------------------------------- /vendors/abuntu/theme/calamares/modules/partition.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/abuntu/theme/calamares/modules/partition.conf -------------------------------------------------------------------------------- /vendors/abuntu/theme/livecd/grub.theme.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/abuntu/theme/livecd/grub.theme.cfg -------------------------------------------------------------------------------- /vendors/abuntu/theme/livecd/isolinux.theme.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/abuntu/theme/livecd/isolinux.theme.cfg -------------------------------------------------------------------------------- /vendors/abuntu/theme/livecd/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/abuntu/theme/livecd/splash.png -------------------------------------------------------------------------------- /vendors/blendos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/blendos/README.md -------------------------------------------------------------------------------- /vendors/blendos/theme/applications/install-system.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/blendos/theme/applications/install-system.desktop -------------------------------------------------------------------------------- /vendors/blendos/theme/artwork/install-system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/blendos/theme/artwork/install-system.png -------------------------------------------------------------------------------- /vendors/blendos/theme/calamares/branding/1-reproductive-system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/blendos/theme/calamares/branding/1-reproductive-system.png -------------------------------------------------------------------------------- /vendors/blendos/theme/calamares/branding/2-start-reproduction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/blendos/theme/calamares/branding/2-start-reproduction.png -------------------------------------------------------------------------------- /vendors/blendos/theme/calamares/branding/3-its-your-system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/blendos/theme/calamares/branding/3-its-your-system.png -------------------------------------------------------------------------------- /vendors/blendos/theme/calamares/branding/4-eggs-presentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/blendos/theme/calamares/branding/4-eggs-presentation.png -------------------------------------------------------------------------------- /vendors/blendos/theme/calamares/branding/5-wait-hatching.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/blendos/theme/calamares/branding/5-wait-hatching.png -------------------------------------------------------------------------------- /vendors/blendos/theme/calamares/branding/6-follow-penguins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/blendos/theme/calamares/branding/6-follow-penguins.png -------------------------------------------------------------------------------- /vendors/blendos/theme/calamares/branding/7-created-by.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/blendos/theme/calamares/branding/7-created-by.png -------------------------------------------------------------------------------- /vendors/blendos/theme/calamares/branding/blendos-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/blendos/theme/calamares/branding/blendos-logo.png -------------------------------------------------------------------------------- /vendors/blendos/theme/calamares/branding/branding.desc: -------------------------------------------------------------------------------- 1 | # this is only a stub -------------------------------------------------------------------------------- /vendors/blendos/theme/calamares/branding/show.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/blendos/theme/calamares/branding/show.qml -------------------------------------------------------------------------------- /vendors/blendos/theme/calamares/branding/welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/blendos/theme/calamares/branding/welcome.png -------------------------------------------------------------------------------- /vendors/blendos/theme/calamares/calamares-modules/cfs-akshara/cfs-akshara.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/blendos/theme/calamares/calamares-modules/cfs-akshara/cfs-akshara.sh -------------------------------------------------------------------------------- /vendors/blendos/theme/calamares/calamares-modules/cfs-akshara/module.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/blendos/theme/calamares/calamares-modules/cfs-akshara/module.yml -------------------------------------------------------------------------------- /vendors/blendos/theme/calamares/cfs.yml: -------------------------------------------------------------------------------- 1 | # custom-final-sequence 2 | --- 3 | - cfs-akshara 4 | -------------------------------------------------------------------------------- /vendors/blendos/theme/calamares/modules/_users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/blendos/theme/calamares/modules/_users.yml -------------------------------------------------------------------------------- /vendors/blendos/theme/calamares/modules/locale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/blendos/theme/calamares/modules/locale.yml -------------------------------------------------------------------------------- /vendors/blendos/theme/calamares/modules/partition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/blendos/theme/calamares/modules/partition.yml -------------------------------------------------------------------------------- /vendors/blendos/theme/livecd/grub.theme.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/blendos/theme/livecd/grub.theme.cfg -------------------------------------------------------------------------------- /vendors/blendos/theme/livecd/isolinux.theme.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/blendos/theme/livecd/isolinux.theme.cfg -------------------------------------------------------------------------------- /vendors/blendos/theme/livecd/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/blendos/theme/livecd/splash.png -------------------------------------------------------------------------------- /vendors/bliss/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/bliss/README.md -------------------------------------------------------------------------------- /vendors/bliss/theme/applications/install-system.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/bliss/theme/applications/install-system.desktop -------------------------------------------------------------------------------- /vendors/bliss/theme/artwork/install-system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/bliss/theme/artwork/install-system.png -------------------------------------------------------------------------------- /vendors/bliss/theme/calamares/branding/bliss-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/bliss/theme/calamares/branding/bliss-logo.png -------------------------------------------------------------------------------- /vendors/bliss/theme/calamares/branding/branding.desc: -------------------------------------------------------------------------------- 1 | # this is only a stub -------------------------------------------------------------------------------- /vendors/bliss/theme/calamares/branding/languages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/bliss/theme/calamares/branding/languages.png -------------------------------------------------------------------------------- /vendors/bliss/theme/calamares/branding/show.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/bliss/theme/calamares/branding/show.qml -------------------------------------------------------------------------------- /vendors/bliss/theme/calamares/branding/slide1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/bliss/theme/calamares/branding/slide1.png -------------------------------------------------------------------------------- /vendors/bliss/theme/calamares/branding/slide2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/bliss/theme/calamares/branding/slide2.png -------------------------------------------------------------------------------- /vendors/bliss/theme/calamares/branding/slide3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/bliss/theme/calamares/branding/slide3.png -------------------------------------------------------------------------------- /vendors/bliss/theme/calamares/branding/welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/bliss/theme/calamares/branding/welcome.png -------------------------------------------------------------------------------- /vendors/bliss/theme/calamares/calamares-modules/cfs-bootloader/cfs-bootloader.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/bliss/theme/calamares/calamares-modules/cfs-bootloader/cfs-bootloader.sh -------------------------------------------------------------------------------- /vendors/bliss/theme/calamares/calamares-modules/cfs-bootloader/module.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/bliss/theme/calamares/calamares-modules/cfs-bootloader/module.yml -------------------------------------------------------------------------------- /vendors/bliss/theme/calamares/calamares-modules/cfs-data-img/cfs-data-img.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/bliss/theme/calamares/calamares-modules/cfs-data-img/cfs-data-img.sh -------------------------------------------------------------------------------- /vendors/bliss/theme/calamares/calamares-modules/cfs-data-img/module.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/bliss/theme/calamares/calamares-modules/cfs-data-img/module.yml -------------------------------------------------------------------------------- /vendors/bliss/theme/calamares/calamares-modules/cfs-install/cfs-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/bliss/theme/calamares/calamares-modules/cfs-install/cfs-install.sh -------------------------------------------------------------------------------- /vendors/bliss/theme/calamares/calamares-modules/cfs-install/module.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/bliss/theme/calamares/calamares-modules/cfs-install/module.yml -------------------------------------------------------------------------------- /vendors/bliss/theme/calamares/cfs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/bliss/theme/calamares/cfs.yml -------------------------------------------------------------------------------- /vendors/bliss/theme/calamares/modules/partition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/bliss/theme/calamares/modules/partition.yml -------------------------------------------------------------------------------- /vendors/bliss/theme/livecd/README.md: -------------------------------------------------------------------------------- 1 | # BlissOS 2 | -------------------------------------------------------------------------------- /vendors/bliss/theme/livecd/grub.theme.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/bliss/theme/livecd/grub.theme.cfg -------------------------------------------------------------------------------- /vendors/bliss/theme/livecd/isolinux.theme.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/bliss/theme/livecd/isolinux.theme.cfg -------------------------------------------------------------------------------- /vendors/bliss/theme/livecd/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/bliss/theme/livecd/splash.png -------------------------------------------------------------------------------- /vendors/educaandos-plus/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/educaandos-plus/LICENSE -------------------------------------------------------------------------------- /vendors/educaandos-plus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/educaandos-plus/README.md -------------------------------------------------------------------------------- /vendors/educaandos-plus/penguins-eggs.d/eggs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/educaandos-plus/penguins-eggs.d/eggs.yaml -------------------------------------------------------------------------------- /vendors/educaandos-plus/penguins-eggs.d/tools.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/educaandos-plus/penguins-eggs.d/tools.yaml -------------------------------------------------------------------------------- /vendors/educaandos-plus/theme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/educaandos-plus/theme/README.md -------------------------------------------------------------------------------- /vendors/educaandos-plus/theme/applications/install-system.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/educaandos-plus/theme/applications/install-system.desktop -------------------------------------------------------------------------------- /vendors/educaandos-plus/theme/artwork/install-system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/educaandos-plus/theme/artwork/install-system.png -------------------------------------------------------------------------------- /vendors/educaandos-plus/theme/calamares/branding/branding.desc: -------------------------------------------------------------------------------- 1 | # this is only a stub -------------------------------------------------------------------------------- /vendors/educaandos-plus/theme/calamares/branding/educaandos-plus-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/educaandos-plus/theme/calamares/branding/educaandos-plus-logo.png -------------------------------------------------------------------------------- /vendors/educaandos-plus/theme/calamares/branding/show.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/educaandos-plus/theme/calamares/branding/show.qml -------------------------------------------------------------------------------- /vendors/educaandos-plus/theme/calamares/branding/slide1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/educaandos-plus/theme/calamares/branding/slide1.png -------------------------------------------------------------------------------- /vendors/educaandos-plus/theme/calamares/branding/slide2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/educaandos-plus/theme/calamares/branding/slide2.png -------------------------------------------------------------------------------- /vendors/educaandos-plus/theme/calamares/branding/slide3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/educaandos-plus/theme/calamares/branding/slide3.png -------------------------------------------------------------------------------- /vendors/educaandos-plus/theme/calamares/branding/slide4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/educaandos-plus/theme/calamares/branding/slide4.png -------------------------------------------------------------------------------- /vendors/educaandos-plus/theme/calamares/branding/slide5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/educaandos-plus/theme/calamares/branding/slide5.png -------------------------------------------------------------------------------- /vendors/educaandos-plus/theme/calamares/branding/slide6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/educaandos-plus/theme/calamares/branding/slide6.png -------------------------------------------------------------------------------- /vendors/educaandos-plus/theme/calamares/branding/slide7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/educaandos-plus/theme/calamares/branding/slide7.png -------------------------------------------------------------------------------- /vendors/educaandos-plus/theme/calamares/branding/welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/educaandos-plus/theme/calamares/branding/welcome.png -------------------------------------------------------------------------------- /vendors/educaandos-plus/theme/calamares/modules/locale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/educaandos-plus/theme/calamares/modules/locale.yml -------------------------------------------------------------------------------- /vendors/educaandos-plus/theme/calamares/modules/partition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/educaandos-plus/theme/calamares/modules/partition.yml -------------------------------------------------------------------------------- /vendors/educaandos-plus/theme/calamares/modules/users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/educaandos-plus/theme/calamares/modules/users.yml -------------------------------------------------------------------------------- /vendors/educaandos-plus/theme/livecd/grub.theme.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/educaandos-plus/theme/livecd/grub.theme.cfg -------------------------------------------------------------------------------- /vendors/educaandos-plus/theme/livecd/isolinux.theme.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/educaandos-plus/theme/livecd/isolinux.theme.cfg -------------------------------------------------------------------------------- /vendors/educaandos-plus/theme/livecd/menu.template.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/educaandos-plus/theme/livecd/menu.template.cfg -------------------------------------------------------------------------------- /vendors/educaandos-plus/theme/livecd/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/educaandos-plus/theme/livecd/splash.png -------------------------------------------------------------------------------- /vendors/lastos/lastos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/lastos/lastos.yaml -------------------------------------------------------------------------------- /vendors/lastos/theme/applications/install-system.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/lastos/theme/applications/install-system.desktop -------------------------------------------------------------------------------- /vendors/lastos/theme/artwork/install-system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/lastos/theme/artwork/install-system.png -------------------------------------------------------------------------------- /vendors/lastos/theme/calamares/branding/1-reproductive-system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/lastos/theme/calamares/branding/1-reproductive-system.png -------------------------------------------------------------------------------- /vendors/lastos/theme/calamares/branding/2-start-reproduction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/lastos/theme/calamares/branding/2-start-reproduction.png -------------------------------------------------------------------------------- /vendors/lastos/theme/calamares/branding/3-its-your-system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/lastos/theme/calamares/branding/3-its-your-system.png -------------------------------------------------------------------------------- /vendors/lastos/theme/calamares/branding/4-eggs-presentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/lastos/theme/calamares/branding/4-eggs-presentation.png -------------------------------------------------------------------------------- /vendors/lastos/theme/calamares/branding/5-wait-hatching.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/lastos/theme/calamares/branding/5-wait-hatching.png -------------------------------------------------------------------------------- /vendors/lastos/theme/calamares/branding/6-follow-penguins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/lastos/theme/calamares/branding/6-follow-penguins.png -------------------------------------------------------------------------------- /vendors/lastos/theme/calamares/branding/7-created-by.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/lastos/theme/calamares/branding/7-created-by.png -------------------------------------------------------------------------------- /vendors/lastos/theme/calamares/branding/branding.desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/lastos/theme/calamares/branding/branding.desc -------------------------------------------------------------------------------- /vendors/lastos/theme/calamares/branding/lastos-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/lastos/theme/calamares/branding/lastos-logo.png -------------------------------------------------------------------------------- /vendors/lastos/theme/calamares/branding/show.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/lastos/theme/calamares/branding/show.qml -------------------------------------------------------------------------------- /vendors/lastos/theme/calamares/branding/welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/lastos/theme/calamares/branding/welcome.png -------------------------------------------------------------------------------- /vendors/lastos/theme/livecd/grub.theme.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/lastos/theme/livecd/grub.theme.cfg -------------------------------------------------------------------------------- /vendors/lastos/theme/livecd/isolinux.theme.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/lastos/theme/livecd/isolinux.theme.cfg -------------------------------------------------------------------------------- /vendors/lastos/theme/livecd/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/lastos/theme/livecd/splash.png -------------------------------------------------------------------------------- /vendors/linuxfx/patch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/linuxfx/patch/README.md -------------------------------------------------------------------------------- /vendors/linuxfx/patch/apply.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/linuxfx/patch/apply.sh -------------------------------------------------------------------------------- /vendors/linuxfx/patch/linuxfx-links-add.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/linuxfx/patch/linuxfx-links-add.desktop -------------------------------------------------------------------------------- /vendors/linuxfx/patch/linuxfx-links-add.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/linuxfx/patch/linuxfx-links-add.sh -------------------------------------------------------------------------------- /vendors/linuxfx/patch/xdg-user-dirs.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/linuxfx/patch/xdg-user-dirs.desktop -------------------------------------------------------------------------------- /vendors/linuxfx/theme/applications/install-system.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/linuxfx/theme/applications/install-system.desktop -------------------------------------------------------------------------------- /vendors/linuxfx/theme/artwork/README.md: -------------------------------------------------------------------------------- 1 | install-debian.png it is really just a svg file 2 | -------------------------------------------------------------------------------- /vendors/linuxfx/theme/artwork/install-system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/linuxfx/theme/artwork/install-system.png -------------------------------------------------------------------------------- /vendors/linuxfx/theme/calamares/branding/branding.desc: -------------------------------------------------------------------------------- 1 | # this is only a stub 2 | -------------------------------------------------------------------------------- /vendors/linuxfx/theme/calamares/branding/kde.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/linuxfx/theme/calamares/branding/kde.png -------------------------------------------------------------------------------- /vendors/linuxfx/theme/calamares/branding/linuxfx-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/linuxfx/theme/calamares/branding/linuxfx-logo.png -------------------------------------------------------------------------------- /vendors/linuxfx/theme/calamares/branding/neon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/linuxfx/theme/calamares/branding/neon.png -------------------------------------------------------------------------------- /vendors/linuxfx/theme/calamares/branding/plasma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/linuxfx/theme/calamares/branding/plasma.png -------------------------------------------------------------------------------- /vendors/linuxfx/theme/calamares/branding/secure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/linuxfx/theme/calamares/branding/secure.png -------------------------------------------------------------------------------- /vendors/linuxfx/theme/calamares/branding/show.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/linuxfx/theme/calamares/branding/show.qml -------------------------------------------------------------------------------- /vendors/linuxfx/theme/calamares/branding/welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/linuxfx/theme/calamares/branding/welcome.png -------------------------------------------------------------------------------- /vendors/linuxfx/theme/calamares/modules/partition.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/linuxfx/theme/calamares/modules/partition.conf -------------------------------------------------------------------------------- /vendors/linuxfx/theme/livecd/grub.theme.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/linuxfx/theme/livecd/grub.theme.cfg -------------------------------------------------------------------------------- /vendors/linuxfx/theme/livecd/isolinux.theme.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/linuxfx/theme/livecd/isolinux.theme.cfg -------------------------------------------------------------------------------- /vendors/linuxfx/theme/livecd/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/linuxfx/theme/livecd/splash.png -------------------------------------------------------------------------------- /vendors/neon/theme/applications/install-system.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/neon/theme/applications/install-system.desktop -------------------------------------------------------------------------------- /vendors/neon/theme/artwork/install-system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/neon/theme/artwork/install-system.png -------------------------------------------------------------------------------- /vendors/neon/theme/calamares/branding/branding.desc: -------------------------------------------------------------------------------- 1 | # this is only a stub 2 | -------------------------------------------------------------------------------- /vendors/neon/theme/calamares/branding/kde.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/neon/theme/calamares/branding/kde.png -------------------------------------------------------------------------------- /vendors/neon/theme/calamares/branding/neon-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/neon/theme/calamares/branding/neon-logo.png -------------------------------------------------------------------------------- /vendors/neon/theme/calamares/branding/neon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/neon/theme/calamares/branding/neon.png -------------------------------------------------------------------------------- /vendors/neon/theme/calamares/branding/plasma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/neon/theme/calamares/branding/plasma.png -------------------------------------------------------------------------------- /vendors/neon/theme/calamares/branding/secure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/neon/theme/calamares/branding/secure.png -------------------------------------------------------------------------------- /vendors/neon/theme/calamares/branding/show.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/neon/theme/calamares/branding/show.qml -------------------------------------------------------------------------------- /vendors/neon/theme/calamares/branding/welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/neon/theme/calamares/branding/welcome.png -------------------------------------------------------------------------------- /vendors/neon/theme/calamares/modules/partition.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/neon/theme/calamares/modules/partition.conf -------------------------------------------------------------------------------- /vendors/neon/theme/livecd/grub.theme.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/neon/theme/livecd/grub.theme.cfg -------------------------------------------------------------------------------- /vendors/neon/theme/livecd/isolinux.theme.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/neon/theme/livecd/isolinux.theme.cfg -------------------------------------------------------------------------------- /vendors/neon/theme/livecd/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/neon/theme/livecd/splash.png -------------------------------------------------------------------------------- /vendors/nexa/theme/applications/install-system.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/nexa/theme/applications/install-system.desktop -------------------------------------------------------------------------------- /vendors/nexa/theme/artwork/install-system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/nexa/theme/artwork/install-system.png -------------------------------------------------------------------------------- /vendors/nexa/theme/calamares/branding/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/nexa/theme/calamares/branding/LICENSE -------------------------------------------------------------------------------- /vendors/nexa/theme/calamares/branding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/nexa/theme/calamares/branding/README.md -------------------------------------------------------------------------------- /vendors/nexa/theme/calamares/branding/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/nexa/theme/calamares/branding/banner.png -------------------------------------------------------------------------------- /vendors/nexa/theme/calamares/branding/branding.desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/nexa/theme/calamares/branding/branding.desc -------------------------------------------------------------------------------- /vendors/nexa/theme/calamares/branding/nexa-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/nexa/theme/calamares/branding/nexa-logo.png -------------------------------------------------------------------------------- /vendors/nexa/theme/calamares/branding/show.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/nexa/theme/calamares/branding/show.qml -------------------------------------------------------------------------------- /vendors/nexa/theme/calamares/branding/slideshow/step1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/nexa/theme/calamares/branding/slideshow/step1.png -------------------------------------------------------------------------------- /vendors/nexa/theme/calamares/branding/slideshow/step2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/nexa/theme/calamares/branding/slideshow/step2.png -------------------------------------------------------------------------------- /vendors/nexa/theme/calamares/branding/slideshow/step3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/nexa/theme/calamares/branding/slideshow/step3.png -------------------------------------------------------------------------------- /vendors/nexa/theme/calamares/branding/wallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/nexa/theme/calamares/branding/wallpaper.png -------------------------------------------------------------------------------- /vendors/nexa/theme/calamares/branding/welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/nexa/theme/calamares/branding/welcome.png -------------------------------------------------------------------------------- /vendors/nexa/theme/calamares/modules/partition.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/nexa/theme/calamares/modules/partition.conf -------------------------------------------------------------------------------- /vendors/nexa/theme/livecd/grub.theme.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/nexa/theme/livecd/grub.theme.cfg -------------------------------------------------------------------------------- /vendors/nexa/theme/livecd/isolinux.theme.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/nexa/theme/livecd/isolinux.theme.cfg -------------------------------------------------------------------------------- /vendors/nexa/theme/livecd/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/nexa/theme/livecd/splash.png -------------------------------------------------------------------------------- /vendors/parrot/theme/applications/install-system.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/parrot/theme/applications/install-system.desktop -------------------------------------------------------------------------------- /vendors/parrot/theme/artwork/install-system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/parrot/theme/artwork/install-system.png -------------------------------------------------------------------------------- /vendors/parrot/theme/calamares/branding/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/parrot/theme/calamares/branding/background.jpg -------------------------------------------------------------------------------- /vendors/parrot/theme/calamares/branding/branding.desc: -------------------------------------------------------------------------------- 1 | # this is only a stub -------------------------------------------------------------------------------- /vendors/parrot/theme/calamares/branding/community.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/parrot/theme/calamares/branding/community.png -------------------------------------------------------------------------------- /vendors/parrot/theme/calamares/branding/dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/parrot/theme/calamares/branding/dev.png -------------------------------------------------------------------------------- /vendors/parrot/theme/calamares/branding/learn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/parrot/theme/calamares/branding/learn.png -------------------------------------------------------------------------------- /vendors/parrot/theme/calamares/branding/parrot-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/parrot/theme/calamares/branding/parrot-logo.png -------------------------------------------------------------------------------- /vendors/parrot/theme/calamares/branding/privacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/parrot/theme/calamares/branding/privacy.png -------------------------------------------------------------------------------- /vendors/parrot/theme/calamares/branding/security.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/parrot/theme/calamares/branding/security.png -------------------------------------------------------------------------------- /vendors/parrot/theme/calamares/branding/server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/parrot/theme/calamares/branding/server.png -------------------------------------------------------------------------------- /vendors/parrot/theme/calamares/branding/show.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/parrot/theme/calamares/branding/show.qml -------------------------------------------------------------------------------- /vendors/parrot/theme/calamares/branding/welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/parrot/theme/calamares/branding/welcome.png -------------------------------------------------------------------------------- /vendors/parrot/theme/livecd/grub.theme.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/parrot/theme/livecd/grub.theme.cfg -------------------------------------------------------------------------------- /vendors/parrot/theme/livecd/isolinux.theme.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/parrot/theme/livecd/isolinux.theme.cfg -------------------------------------------------------------------------------- /vendors/parrot/theme/livecd/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/parrot/theme/livecd/splash.png -------------------------------------------------------------------------------- /vendors/pep/theme/applications/install-system.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/pep/theme/applications/install-system.desktop -------------------------------------------------------------------------------- /vendors/pep/theme/artwork/install-system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/pep/theme/artwork/install-system.png -------------------------------------------------------------------------------- /vendors/pep/theme/calamares/branding/branding.desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/pep/theme/calamares/branding/branding.desc -------------------------------------------------------------------------------- /vendors/pep/theme/calamares/branding/pep-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/pep/theme/calamares/branding/pep-logo.png -------------------------------------------------------------------------------- /vendors/pep/theme/calamares/branding/s5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/pep/theme/calamares/branding/s5.png -------------------------------------------------------------------------------- /vendors/pep/theme/calamares/branding/show.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/pep/theme/calamares/branding/show.qml -------------------------------------------------------------------------------- /vendors/pep/theme/calamares/branding/stylesheet.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/pep/theme/calamares/branding/stylesheet.qss -------------------------------------------------------------------------------- /vendors/pep/theme/calamares/branding/welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/pep/theme/calamares/branding/welcome.png -------------------------------------------------------------------------------- /vendors/pep/theme/livecd/grub.theme.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/pep/theme/livecd/grub.theme.cfg -------------------------------------------------------------------------------- /vendors/pep/theme/livecd/isolinux.theme.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/pep/theme/livecd/isolinux.theme.cfg -------------------------------------------------------------------------------- /vendors/pep/theme/livecd/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/pep/theme/livecd/splash.png -------------------------------------------------------------------------------- /vendors/predator/predator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/predator/predator.yaml -------------------------------------------------------------------------------- /vendors/predator/theme/applications/install-system.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/predator/theme/applications/install-system.desktop -------------------------------------------------------------------------------- /vendors/predator/theme/artwork/install-system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/predator/theme/artwork/install-system.png -------------------------------------------------------------------------------- /vendors/predator/theme/calamares/branding/branding.desc: -------------------------------------------------------------------------------- 1 | # this is only a stub 2 | -------------------------------------------------------------------------------- /vendors/predator/theme/calamares/branding/predator-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/predator/theme/calamares/branding/predator-logo.png -------------------------------------------------------------------------------- /vendors/predator/theme/calamares/branding/show.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/predator/theme/calamares/branding/show.qml -------------------------------------------------------------------------------- /vendors/predator/theme/calamares/branding/slide_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/predator/theme/calamares/branding/slide_1.png -------------------------------------------------------------------------------- /vendors/predator/theme/calamares/branding/slide_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/predator/theme/calamares/branding/slide_10.png -------------------------------------------------------------------------------- /vendors/predator/theme/calamares/branding/slide_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/predator/theme/calamares/branding/slide_11.png -------------------------------------------------------------------------------- /vendors/predator/theme/calamares/branding/slide_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/predator/theme/calamares/branding/slide_12.png -------------------------------------------------------------------------------- /vendors/predator/theme/calamares/branding/slide_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/predator/theme/calamares/branding/slide_13.png -------------------------------------------------------------------------------- /vendors/predator/theme/calamares/branding/slide_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/predator/theme/calamares/branding/slide_2.png -------------------------------------------------------------------------------- /vendors/predator/theme/calamares/branding/slide_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/predator/theme/calamares/branding/slide_3.png -------------------------------------------------------------------------------- /vendors/predator/theme/calamares/branding/slide_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/predator/theme/calamares/branding/slide_4.png -------------------------------------------------------------------------------- /vendors/predator/theme/calamares/branding/slide_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/predator/theme/calamares/branding/slide_5.png -------------------------------------------------------------------------------- /vendors/predator/theme/calamares/branding/slide_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/predator/theme/calamares/branding/slide_6.png -------------------------------------------------------------------------------- /vendors/predator/theme/calamares/branding/slide_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/predator/theme/calamares/branding/slide_7.png -------------------------------------------------------------------------------- /vendors/predator/theme/calamares/branding/slide_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/predator/theme/calamares/branding/slide_8.png -------------------------------------------------------------------------------- /vendors/predator/theme/calamares/branding/slide_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/predator/theme/calamares/branding/slide_9.png -------------------------------------------------------------------------------- /vendors/predator/theme/calamares/branding/welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/predator/theme/calamares/branding/welcome.png -------------------------------------------------------------------------------- /vendors/predator/theme/install-system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/predator/theme/install-system.png -------------------------------------------------------------------------------- /vendors/predator/theme/livecd/grub.main.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/predator/theme/livecd/grub.main.cfg -------------------------------------------------------------------------------- /vendors/predator/theme/livecd/grub.theme.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/predator/theme/livecd/grub.theme.cfg -------------------------------------------------------------------------------- /vendors/predator/theme/livecd/isolinux.main.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/predator/theme/livecd/isolinux.main.cfg -------------------------------------------------------------------------------- /vendors/predator/theme/livecd/isolinux.theme.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/predator/theme/livecd/isolinux.theme.cfg -------------------------------------------------------------------------------- /vendors/predator/theme/livecd/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/predator/theme/livecd/splash.png -------------------------------------------------------------------------------- /vendors/purpl3/theme/applications/install-system.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/purpl3/theme/applications/install-system.desktop -------------------------------------------------------------------------------- /vendors/purpl3/theme/artwork/install-system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/purpl3/theme/artwork/install-system.png -------------------------------------------------------------------------------- /vendors/purpl3/theme/calamares/branding/branding.desc: -------------------------------------------------------------------------------- 1 | # this is only a stub 2 | -------------------------------------------------------------------------------- /vendors/purpl3/theme/calamares/branding/purpl3-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/purpl3/theme/calamares/branding/purpl3-logo.png -------------------------------------------------------------------------------- /vendors/purpl3/theme/calamares/branding/show.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/purpl3/theme/calamares/branding/show.qml -------------------------------------------------------------------------------- /vendors/purpl3/theme/calamares/branding/slide_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/purpl3/theme/calamares/branding/slide_1.png -------------------------------------------------------------------------------- /vendors/purpl3/theme/calamares/branding/slide_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/purpl3/theme/calamares/branding/slide_2.png -------------------------------------------------------------------------------- /vendors/purpl3/theme/calamares/branding/slide_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/purpl3/theme/calamares/branding/slide_3.png -------------------------------------------------------------------------------- /vendors/purpl3/theme/calamares/branding/welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/purpl3/theme/calamares/branding/welcome.png -------------------------------------------------------------------------------- /vendors/purpl3/theme/livecd/grub.theme.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/purpl3/theme/livecd/grub.theme.cfg -------------------------------------------------------------------------------- /vendors/purpl3/theme/livecd/isolinux.theme.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/purpl3/theme/livecd/isolinux.theme.cfg -------------------------------------------------------------------------------- /vendors/purpl3/theme/livecd/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/purpl3/theme/livecd/splash.png -------------------------------------------------------------------------------- /vendors/pve/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/pve/README.md -------------------------------------------------------------------------------- /vendors/pve/theme/applications/install-system.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/pve/theme/applications/install-system.desktop -------------------------------------------------------------------------------- /vendors/pve/theme/artwork/install-system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/pve/theme/artwork/install-system.png -------------------------------------------------------------------------------- /vendors/pve/theme/calamares/branding/branding.desc: -------------------------------------------------------------------------------- 1 | # this is only a stub -------------------------------------------------------------------------------- /vendors/pve/theme/calamares/branding/eagle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/pve/theme/calamares/branding/eagle.png -------------------------------------------------------------------------------- /vendors/pve/theme/calamares/branding/pve-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/pve/theme/calamares/branding/pve-logo.png -------------------------------------------------------------------------------- /vendors/pve/theme/calamares/branding/show.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/pve/theme/calamares/branding/show.qml -------------------------------------------------------------------------------- /vendors/pve/theme/calamares/branding/welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/pve/theme/calamares/branding/welcome.png -------------------------------------------------------------------------------- /vendors/pve/theme/calamares/calamares-modules/cfs-keygen/cfs-keygen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/pve/theme/calamares/calamares-modules/cfs-keygen/cfs-keygen.sh -------------------------------------------------------------------------------- /vendors/pve/theme/calamares/calamares-modules/cfs-keygen/module.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/pve/theme/calamares/calamares-modules/cfs-keygen/module.yml -------------------------------------------------------------------------------- /vendors/pve/theme/calamares/calamares-modules/cfs-network-dhcp/cfs-network-dhcp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/pve/theme/calamares/calamares-modules/cfs-network-dhcp/cfs-network-dhcp.sh -------------------------------------------------------------------------------- /vendors/pve/theme/calamares/calamares-modules/cfs-network-dhcp/module.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/pve/theme/calamares/calamares-modules/cfs-network-dhcp/module.yml -------------------------------------------------------------------------------- /vendors/pve/theme/calamares/calamares-modules/cfs-pvelocalhost/cfs-pvelocalhost.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/pve/theme/calamares/calamares-modules/cfs-pvelocalhost/cfs-pvelocalhost.sh -------------------------------------------------------------------------------- /vendors/pve/theme/calamares/calamares-modules/cfs-pvelocalhost/module.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/pve/theme/calamares/calamares-modules/cfs-pvelocalhost/module.yml -------------------------------------------------------------------------------- /vendors/pve/theme/calamares/cfs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/pve/theme/calamares/cfs.yml -------------------------------------------------------------------------------- /vendors/pve/theme/calamares/modules/locale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/pve/theme/calamares/modules/locale.yml -------------------------------------------------------------------------------- /vendors/pve/theme/calamares/modules/partition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/pve/theme/calamares/modules/partition.yml -------------------------------------------------------------------------------- /vendors/pve/theme/calamares/modules/users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/pve/theme/calamares/modules/users.yml -------------------------------------------------------------------------------- /vendors/pve/theme/livecd/grub.theme.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/pve/theme/livecd/grub.theme.cfg -------------------------------------------------------------------------------- /vendors/pve/theme/livecd/isolinux.theme.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/pve/theme/livecd/isolinux.theme.cfg -------------------------------------------------------------------------------- /vendors/pve/theme/livecd/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/pve/theme/livecd/splash.png -------------------------------------------------------------------------------- /vendors/quirinux/theme/applications/install-system.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/quirinux/theme/applications/install-system.desktop -------------------------------------------------------------------------------- /vendors/quirinux/theme/artwork/install-system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/quirinux/theme/artwork/install-system.png -------------------------------------------------------------------------------- /vendors/quirinux/theme/calamares/branding/lang/calamares-show-de_DE.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/quirinux/theme/calamares/branding/lang/calamares-show-de_DE.qm -------------------------------------------------------------------------------- /vendors/quirinux/theme/calamares/branding/lang/calamares-show-en_GB.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/quirinux/theme/calamares/branding/lang/calamares-show-en_GB.qm -------------------------------------------------------------------------------- /vendors/quirinux/theme/calamares/branding/lang/calamares-show-es_AR.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/quirinux/theme/calamares/branding/lang/calamares-show-es_AR.qm -------------------------------------------------------------------------------- /vendors/quirinux/theme/calamares/branding/lang/calamares-show-es_ES.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/quirinux/theme/calamares/branding/lang/calamares-show-es_ES.qm -------------------------------------------------------------------------------- /vendors/quirinux/theme/calamares/branding/lang/calamares-show-fr_FR.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/quirinux/theme/calamares/branding/lang/calamares-show-fr_FR.qm -------------------------------------------------------------------------------- /vendors/quirinux/theme/calamares/branding/lang/calamares-show-gl_ES.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/quirinux/theme/calamares/branding/lang/calamares-show-gl_ES.qm -------------------------------------------------------------------------------- /vendors/quirinux/theme/calamares/branding/lang/calamares-show-it_IT.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/quirinux/theme/calamares/branding/lang/calamares-show-it_IT.qm -------------------------------------------------------------------------------- /vendors/quirinux/theme/calamares/branding/lang/calamares-show-pt_PT.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/quirinux/theme/calamares/branding/lang/calamares-show-pt_PT.qm -------------------------------------------------------------------------------- /vendors/quirinux/theme/calamares/branding/lang/calamares-show-ru_RU.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/quirinux/theme/calamares/branding/lang/calamares-show-ru_RU.qm -------------------------------------------------------------------------------- /vendors/quirinux/theme/calamares/branding/lang/calmares-show-pt_BR.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/quirinux/theme/calamares/branding/lang/calmares-show-pt_BR.qm -------------------------------------------------------------------------------- /vendors/quirinux/theme/calamares/branding/quirinux-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/quirinux/theme/calamares/branding/quirinux-logo.png -------------------------------------------------------------------------------- /vendors/quirinux/theme/calamares/branding/show.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/quirinux/theme/calamares/branding/show.qml -------------------------------------------------------------------------------- /vendors/quirinux/theme/calamares/branding/slide1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/quirinux/theme/calamares/branding/slide1.png -------------------------------------------------------------------------------- /vendors/quirinux/theme/calamares/branding/welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/quirinux/theme/calamares/branding/welcome.png -------------------------------------------------------------------------------- /vendors/quirinux/theme/calamares/modules/partition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/quirinux/theme/calamares/modules/partition.yml -------------------------------------------------------------------------------- /vendors/quirinux/theme/calamares/modules/users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/quirinux/theme/calamares/modules/users.yml -------------------------------------------------------------------------------- /vendors/quirinux/theme/livecd/grub.main.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/quirinux/theme/livecd/grub.main.cfg -------------------------------------------------------------------------------- /vendors/quirinux/theme/livecd/grub.theme.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/quirinux/theme/livecd/grub.theme.cfg -------------------------------------------------------------------------------- /vendors/quirinux/theme/livecd/isolinux.main.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/quirinux/theme/livecd/isolinux.main.cfg -------------------------------------------------------------------------------- /vendors/quirinux/theme/livecd/isolinux.theme.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/quirinux/theme/livecd/isolinux.theme.cfg -------------------------------------------------------------------------------- /vendors/quirinux/theme/livecd/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/quirinux/theme/livecd/splash.png -------------------------------------------------------------------------------- /vendors/rhino/theme/applications/install-system.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/rhino/theme/applications/install-system.desktop -------------------------------------------------------------------------------- /vendors/rhino/theme/artwork/install-system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/rhino/theme/artwork/install-system.png -------------------------------------------------------------------------------- /vendors/rhino/theme/artwork/rhino-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/rhino/theme/artwork/rhino-logo.svg -------------------------------------------------------------------------------- /vendors/rhino/theme/calamares/branding/Base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/rhino/theme/calamares/branding/Base.png -------------------------------------------------------------------------------- /vendors/rhino/theme/calamares/branding/Wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/rhino/theme/calamares/branding/Wizard.png -------------------------------------------------------------------------------- /vendors/rhino/theme/calamares/branding/XFCE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/rhino/theme/calamares/branding/XFCE.png -------------------------------------------------------------------------------- /vendors/rhino/theme/calamares/branding/branding.desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/rhino/theme/calamares/branding/branding.desc -------------------------------------------------------------------------------- /vendors/rhino/theme/calamares/branding/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/rhino/theme/calamares/branding/icon.png -------------------------------------------------------------------------------- /vendors/rhino/theme/calamares/branding/rhino-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/rhino/theme/calamares/branding/rhino-logo.png -------------------------------------------------------------------------------- /vendors/rhino/theme/calamares/branding/rhinopkg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/rhino/theme/calamares/branding/rhinopkg.png -------------------------------------------------------------------------------- /vendors/rhino/theme/calamares/branding/show.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/rhino/theme/calamares/branding/show.qml -------------------------------------------------------------------------------- /vendors/rhino/theme/calamares/branding/waves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/rhino/theme/calamares/branding/waves.png -------------------------------------------------------------------------------- /vendors/rhino/theme/calamares/branding/welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/rhino/theme/calamares/branding/welcome.png -------------------------------------------------------------------------------- /vendors/rhino/theme/calamares/modules/partition.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/rhino/theme/calamares/modules/partition.conf -------------------------------------------------------------------------------- /vendors/rhino/theme/livecd/grub.theme.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/rhino/theme/livecd/grub.theme.cfg -------------------------------------------------------------------------------- /vendors/rhino/theme/livecd/isolinux.theme.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/rhino/theme/livecd/isolinux.theme.cfg -------------------------------------------------------------------------------- /vendors/rhino/theme/livecd/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/rhino/theme/livecd/splash.png -------------------------------------------------------------------------------- /vendors/spiral/theme/applications/install-system.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/spiral/theme/applications/install-system.desktop -------------------------------------------------------------------------------- /vendors/spiral/theme/artwork/install-system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/spiral/theme/artwork/install-system.png -------------------------------------------------------------------------------- /vendors/spiral/theme/calamares/branding/branding.desc: -------------------------------------------------------------------------------- 1 | # this is only a stub 2 | -------------------------------------------------------------------------------- /vendors/spiral/theme/calamares/branding/show.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/spiral/theme/calamares/branding/show.qml -------------------------------------------------------------------------------- /vendors/spiral/theme/calamares/branding/slide1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/spiral/theme/calamares/branding/slide1.png -------------------------------------------------------------------------------- /vendors/spiral/theme/calamares/branding/spiral-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/spiral/theme/calamares/branding/spiral-logo.png -------------------------------------------------------------------------------- /vendors/spiral/theme/calamares/branding/welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/spiral/theme/calamares/branding/welcome.png -------------------------------------------------------------------------------- /vendors/spiral/theme/calamares/modules/REMOVED_partition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/spiral/theme/calamares/modules/REMOVED_partition.yml -------------------------------------------------------------------------------- /vendors/spiral/theme/livecd/grub.theme.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/spiral/theme/livecd/grub.theme.cfg -------------------------------------------------------------------------------- /vendors/spiral/theme/livecd/isolinux.theme.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/spiral/theme/livecd/isolinux.theme.cfg -------------------------------------------------------------------------------- /vendors/spiral/theme/livecd/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/spiral/theme/livecd/splash.png -------------------------------------------------------------------------------- /vendors/syslinuxos/theme/applications/install-system.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/syslinuxos/theme/applications/install-system.desktop -------------------------------------------------------------------------------- /vendors/syslinuxos/theme/artwork/install-system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/syslinuxos/theme/artwork/install-system.png -------------------------------------------------------------------------------- /vendors/syslinuxos/theme/calamares/branding/1-reproductive-system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/syslinuxos/theme/calamares/branding/1-reproductive-system.png -------------------------------------------------------------------------------- /vendors/syslinuxos/theme/calamares/branding/2-start-reproduction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/syslinuxos/theme/calamares/branding/2-start-reproduction.png -------------------------------------------------------------------------------- /vendors/syslinuxos/theme/calamares/branding/3-its-your-system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/syslinuxos/theme/calamares/branding/3-its-your-system.png -------------------------------------------------------------------------------- /vendors/syslinuxos/theme/calamares/branding/4-syslinuxos-presentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/syslinuxos/theme/calamares/branding/4-syslinuxos-presentation.png -------------------------------------------------------------------------------- /vendors/syslinuxos/theme/calamares/branding/5-wait-hatching.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/syslinuxos/theme/calamares/branding/5-wait-hatching.png -------------------------------------------------------------------------------- /vendors/syslinuxos/theme/calamares/branding/6-follow-penguins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/syslinuxos/theme/calamares/branding/6-follow-penguins.png -------------------------------------------------------------------------------- /vendors/syslinuxos/theme/calamares/branding/7-created-by.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/syslinuxos/theme/calamares/branding/7-created-by.png -------------------------------------------------------------------------------- /vendors/syslinuxos/theme/calamares/branding/branding.desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/syslinuxos/theme/calamares/branding/branding.desc -------------------------------------------------------------------------------- /vendors/syslinuxos/theme/calamares/branding/show.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/syslinuxos/theme/calamares/branding/show.qml -------------------------------------------------------------------------------- /vendors/syslinuxos/theme/calamares/branding/syslinuxos-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/syslinuxos/theme/calamares/branding/syslinuxos-logo.png -------------------------------------------------------------------------------- /vendors/syslinuxos/theme/calamares/branding/welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/syslinuxos/theme/calamares/branding/welcome.png -------------------------------------------------------------------------------- /vendors/syslinuxos/theme/calamares/modules/partition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/syslinuxos/theme/calamares/modules/partition.yml -------------------------------------------------------------------------------- /vendors/syslinuxos/theme/livecd/grub.theme.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/syslinuxos/theme/livecd/grub.theme.cfg -------------------------------------------------------------------------------- /vendors/syslinuxos/theme/livecd/isolinux.theme.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/syslinuxos/theme/livecd/isolinux.theme.cfg -------------------------------------------------------------------------------- /vendors/syslinuxos/theme/livecd/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/syslinuxos/theme/livecd/splash.png -------------------------------------------------------------------------------- /vendors/telos/theme/applications/install-system.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/telos/theme/applications/install-system.desktop -------------------------------------------------------------------------------- /vendors/telos/theme/artwork/install-system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/telos/theme/artwork/install-system.png -------------------------------------------------------------------------------- /vendors/telos/theme/calamares/branding/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/telos/theme/calamares/branding/banner.png -------------------------------------------------------------------------------- /vendors/telos/theme/calamares/branding/branding.desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/telos/theme/calamares/branding/branding.desc -------------------------------------------------------------------------------- /vendors/telos/theme/calamares/branding/show.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/telos/theme/calamares/branding/show.qml -------------------------------------------------------------------------------- /vendors/telos/theme/calamares/branding/slide1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/telos/theme/calamares/branding/slide1.png -------------------------------------------------------------------------------- /vendors/telos/theme/calamares/branding/telos-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/telos/theme/calamares/branding/telos-logo.png -------------------------------------------------------------------------------- /vendors/telos/theme/calamares/branding/welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/telos/theme/calamares/branding/welcome.png -------------------------------------------------------------------------------- /vendors/telos/theme/calamares/modules/partition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/telos/theme/calamares/modules/partition.yml -------------------------------------------------------------------------------- /vendors/telos/theme/livecd/README.md: -------------------------------------------------------------------------------- 1 | ../../../eggs/theme/livecd/README.md -------------------------------------------------------------------------------- /vendors/telos/theme/livecd/grub.theme.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/telos/theme/livecd/grub.theme.cfg -------------------------------------------------------------------------------- /vendors/telos/theme/livecd/isolinux.theme.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/telos/theme/livecd/isolinux.theme.cfg -------------------------------------------------------------------------------- /vendors/telos/theme/livecd/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/telos/theme/livecd/splash.png -------------------------------------------------------------------------------- /vendors/ufficiozero/theme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/ufficiozero/theme/README.md -------------------------------------------------------------------------------- /vendors/ufficiozero/theme/applications/install-system.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/ufficiozero/theme/applications/install-system.desktop -------------------------------------------------------------------------------- /vendors/ufficiozero/theme/artwork/install-system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/ufficiozero/theme/artwork/install-system.png -------------------------------------------------------------------------------- /vendors/ufficiozero/theme/calamares/branding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/ufficiozero/theme/calamares/branding/README.md -------------------------------------------------------------------------------- /vendors/ufficiozero/theme/calamares/branding/branding.desc: -------------------------------------------------------------------------------- 1 | # this is only a stub -------------------------------------------------------------------------------- /vendors/ufficiozero/theme/calamares/branding/show.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/ufficiozero/theme/calamares/branding/show.qml -------------------------------------------------------------------------------- /vendors/ufficiozero/theme/calamares/branding/slide1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/ufficiozero/theme/calamares/branding/slide1.png -------------------------------------------------------------------------------- /vendors/ufficiozero/theme/calamares/branding/slide2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/ufficiozero/theme/calamares/branding/slide2.png -------------------------------------------------------------------------------- /vendors/ufficiozero/theme/calamares/branding/slide3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/ufficiozero/theme/calamares/branding/slide3.png -------------------------------------------------------------------------------- /vendors/ufficiozero/theme/calamares/branding/slide4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/ufficiozero/theme/calamares/branding/slide4.png -------------------------------------------------------------------------------- /vendors/ufficiozero/theme/calamares/branding/slide5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/ufficiozero/theme/calamares/branding/slide5.png -------------------------------------------------------------------------------- /vendors/ufficiozero/theme/calamares/branding/slide6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/ufficiozero/theme/calamares/branding/slide6.png -------------------------------------------------------------------------------- /vendors/ufficiozero/theme/calamares/branding/ufficiozero-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/ufficiozero/theme/calamares/branding/ufficiozero-logo.png -------------------------------------------------------------------------------- /vendors/ufficiozero/theme/calamares/branding/welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/ufficiozero/theme/calamares/branding/welcome.png -------------------------------------------------------------------------------- /vendors/ufficiozero/theme/calamares/modules/partition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/ufficiozero/theme/calamares/modules/partition.yml -------------------------------------------------------------------------------- /vendors/ufficiozero/theme/livecd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/ufficiozero/theme/livecd/README.md -------------------------------------------------------------------------------- /vendors/ufficiozero/theme/livecd/grub.theme.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/ufficiozero/theme/livecd/grub.theme.cfg -------------------------------------------------------------------------------- /vendors/ufficiozero/theme/livecd/isolinux.theme.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/ufficiozero/theme/livecd/isolinux.theme.cfg -------------------------------------------------------------------------------- /vendors/ufficiozero/theme/livecd/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/ufficiozero/theme/livecd/splash.png -------------------------------------------------------------------------------- /vendors/vw-excalibur/theme/applications/install-system.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/vw-excalibur/theme/applications/install-system.desktop -------------------------------------------------------------------------------- /vendors/vw-excalibur/theme/artwork/install-system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/vw-excalibur/theme/artwork/install-system.png -------------------------------------------------------------------------------- /vendors/vw-excalibur/theme/calamares/branding/actualizador.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/vw-excalibur/theme/calamares/branding/actualizador.png -------------------------------------------------------------------------------- /vendors/vw-excalibur/theme/calamares/branding/branding.desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/vw-excalibur/theme/calamares/branding/branding.desc -------------------------------------------------------------------------------- /vendors/vw-excalibur/theme/calamares/branding/escritorio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/vw-excalibur/theme/calamares/branding/escritorio.png -------------------------------------------------------------------------------- /vendors/vw-excalibur/theme/calamares/branding/htop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/vw-excalibur/theme/calamares/branding/htop.png -------------------------------------------------------------------------------- /vendors/vw-excalibur/theme/calamares/branding/show.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/vw-excalibur/theme/calamares/branding/show.qml -------------------------------------------------------------------------------- /vendors/vw-excalibur/theme/calamares/branding/vw-excalibur-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/vw-excalibur/theme/calamares/branding/vw-excalibur-logo.png -------------------------------------------------------------------------------- /vendors/vw-excalibur/theme/calamares/branding/welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/vw-excalibur/theme/calamares/branding/welcome.png -------------------------------------------------------------------------------- /vendors/vw-excalibur/theme/livecd/grub.theme.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/vw-excalibur/theme/livecd/grub.theme.cfg -------------------------------------------------------------------------------- /vendors/vw-excalibur/theme/livecd/isolinux.theme.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/vw-excalibur/theme/livecd/isolinux.theme.cfg -------------------------------------------------------------------------------- /vendors/vw-excalibur/theme/livecd/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/vw-excalibur/theme/livecd/splash.png -------------------------------------------------------------------------------- /vendors/waydroid/theme/applications/install-system.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/waydroid/theme/applications/install-system.desktop -------------------------------------------------------------------------------- /vendors/waydroid/theme/artwork/install-system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/waydroid/theme/artwork/install-system.png -------------------------------------------------------------------------------- /vendors/waydroid/theme/calamares/branding/branding.desc: -------------------------------------------------------------------------------- 1 | # this is only a stub -------------------------------------------------------------------------------- /vendors/waydroid/theme/calamares/branding/languages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/waydroid/theme/calamares/branding/languages.png -------------------------------------------------------------------------------- /vendors/waydroid/theme/calamares/branding/show.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/waydroid/theme/calamares/branding/show.qml -------------------------------------------------------------------------------- /vendors/waydroid/theme/calamares/branding/slide1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/waydroid/theme/calamares/branding/slide1.png -------------------------------------------------------------------------------- /vendors/waydroid/theme/calamares/branding/slide2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/waydroid/theme/calamares/branding/slide2.png -------------------------------------------------------------------------------- /vendors/waydroid/theme/calamares/branding/slide3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/waydroid/theme/calamares/branding/slide3.png -------------------------------------------------------------------------------- /vendors/waydroid/theme/calamares/branding/waydroid-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/waydroid/theme/calamares/branding/waydroid-logo.png -------------------------------------------------------------------------------- /vendors/waydroid/theme/calamares/branding/welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/waydroid/theme/calamares/branding/welcome.png -------------------------------------------------------------------------------- /vendors/waydroid/theme/calamares/modules/partition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/waydroid/theme/calamares/modules/partition.yml -------------------------------------------------------------------------------- /vendors/waydroid/theme/livecd/README.md: -------------------------------------------------------------------------------- 1 | ../../../eggs/theme/livecd/README.md -------------------------------------------------------------------------------- /vendors/waydroid/theme/livecd/grub.theme.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/waydroid/theme/livecd/grub.theme.cfg -------------------------------------------------------------------------------- /vendors/waydroid/theme/livecd/isolinux.theme.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/waydroid/theme/livecd/isolinux.theme.cfg -------------------------------------------------------------------------------- /vendors/waydroid/theme/livecd/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/penguins-wardrobe/HEAD/vendors/waydroid/theme/livecd/splash.png --------------------------------------------------------------------------------