├── README.md ├── SUPPORTED-DISTROS.md ├── TARBALLS ├── README.md ├── get-tarball.sh ├── itsme.sh ├── requirements │ ├── README.md │ ├── alpine │ │ ├── README.md │ │ └── install.sh │ ├── arch │ │ ├── README.md │ │ └── install.sh │ ├── fedora │ │ ├── README.md │ │ └── install.sh │ ├── openmamba │ │ ├── README.md │ │ └── install.sh │ ├── opensuse │ │ ├── README.md │ │ └── install.sh │ ├── rocky │ │ ├── README.md │ │ └── install.sh │ └── ubuntu │ │ ├── README.md │ │ └── install.sh ├── setup ├── tarballs-renew └── tarballs.sh ├── add-aur-chaotic.sh ├── bin ├── g4alpine ├── g4artisan ├── g4clone ├── g4eggs-log ├── g4passwd ├── g4removepw ├── g4tagadd ├── g4tagdel └── g4tagmove ├── connect ├── distros.yaml ├── ensure-node18.sh ├── ensure-node20.sh ├── fresh-eggs.png ├── fresh-eggs.sh ├── piero.proietti@gmail.com-66b8815d.rsa.pub ├── prepare_pkgs.sh ├── refresh-basket.sh └── refresh-eggs.sh /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/fresh-eggs/HEAD/README.md -------------------------------------------------------------------------------- /SUPPORTED-DISTROS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/fresh-eggs/HEAD/SUPPORTED-DISTROS.md -------------------------------------------------------------------------------- /TARBALLS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/fresh-eggs/HEAD/TARBALLS/README.md -------------------------------------------------------------------------------- /TARBALLS/get-tarball.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/fresh-eggs/HEAD/TARBALLS/get-tarball.sh -------------------------------------------------------------------------------- /TARBALLS/itsme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/fresh-eggs/HEAD/TARBALLS/itsme.sh -------------------------------------------------------------------------------- /TARBALLS/requirements/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/fresh-eggs/HEAD/TARBALLS/requirements/README.md -------------------------------------------------------------------------------- /TARBALLS/requirements/alpine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/fresh-eggs/HEAD/TARBALLS/requirements/alpine/README.md -------------------------------------------------------------------------------- /TARBALLS/requirements/alpine/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/fresh-eggs/HEAD/TARBALLS/requirements/alpine/install.sh -------------------------------------------------------------------------------- /TARBALLS/requirements/arch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/fresh-eggs/HEAD/TARBALLS/requirements/arch/README.md -------------------------------------------------------------------------------- /TARBALLS/requirements/arch/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/fresh-eggs/HEAD/TARBALLS/requirements/arch/install.sh -------------------------------------------------------------------------------- /TARBALLS/requirements/fedora/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/fresh-eggs/HEAD/TARBALLS/requirements/fedora/README.md -------------------------------------------------------------------------------- /TARBALLS/requirements/fedora/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/fresh-eggs/HEAD/TARBALLS/requirements/fedora/install.sh -------------------------------------------------------------------------------- /TARBALLS/requirements/openmamba/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/fresh-eggs/HEAD/TARBALLS/requirements/openmamba/README.md -------------------------------------------------------------------------------- /TARBALLS/requirements/openmamba/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/fresh-eggs/HEAD/TARBALLS/requirements/openmamba/install.sh -------------------------------------------------------------------------------- /TARBALLS/requirements/opensuse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/fresh-eggs/HEAD/TARBALLS/requirements/opensuse/README.md -------------------------------------------------------------------------------- /TARBALLS/requirements/opensuse/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/fresh-eggs/HEAD/TARBALLS/requirements/opensuse/install.sh -------------------------------------------------------------------------------- /TARBALLS/requirements/rocky/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/fresh-eggs/HEAD/TARBALLS/requirements/rocky/README.md -------------------------------------------------------------------------------- /TARBALLS/requirements/rocky/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/fresh-eggs/HEAD/TARBALLS/requirements/rocky/install.sh -------------------------------------------------------------------------------- /TARBALLS/requirements/ubuntu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/fresh-eggs/HEAD/TARBALLS/requirements/ubuntu/README.md -------------------------------------------------------------------------------- /TARBALLS/requirements/ubuntu/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/fresh-eggs/HEAD/TARBALLS/requirements/ubuntu/install.sh -------------------------------------------------------------------------------- /TARBALLS/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/fresh-eggs/HEAD/TARBALLS/setup -------------------------------------------------------------------------------- /TARBALLS/tarballs-renew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/fresh-eggs/HEAD/TARBALLS/tarballs-renew -------------------------------------------------------------------------------- /TARBALLS/tarballs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/fresh-eggs/HEAD/TARBALLS/tarballs.sh -------------------------------------------------------------------------------- /add-aur-chaotic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/fresh-eggs/HEAD/add-aur-chaotic.sh -------------------------------------------------------------------------------- /bin/g4alpine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/fresh-eggs/HEAD/bin/g4alpine -------------------------------------------------------------------------------- /bin/g4artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/fresh-eggs/HEAD/bin/g4artisan -------------------------------------------------------------------------------- /bin/g4clone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/fresh-eggs/HEAD/bin/g4clone -------------------------------------------------------------------------------- /bin/g4eggs-log: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | eggs $1 $2 $3 $4 $5 --verbose | tee eggs-$1.log 3 | -------------------------------------------------------------------------------- /bin/g4passwd: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | git config --global credential.helper store 3 | -------------------------------------------------------------------------------- /bin/g4removepw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/fresh-eggs/HEAD/bin/g4removepw -------------------------------------------------------------------------------- /bin/g4tagadd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/fresh-eggs/HEAD/bin/g4tagadd -------------------------------------------------------------------------------- /bin/g4tagdel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/fresh-eggs/HEAD/bin/g4tagdel -------------------------------------------------------------------------------- /bin/g4tagmove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/fresh-eggs/HEAD/bin/g4tagmove -------------------------------------------------------------------------------- /connect: -------------------------------------------------------------------------------- 1 | ssh artisan@penguins-eggs.net 2 | -------------------------------------------------------------------------------- /distros.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/fresh-eggs/HEAD/distros.yaml -------------------------------------------------------------------------------- /ensure-node18.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/fresh-eggs/HEAD/ensure-node18.sh -------------------------------------------------------------------------------- /ensure-node20.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/fresh-eggs/HEAD/ensure-node20.sh -------------------------------------------------------------------------------- /fresh-eggs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/fresh-eggs/HEAD/fresh-eggs.png -------------------------------------------------------------------------------- /fresh-eggs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/fresh-eggs/HEAD/fresh-eggs.sh -------------------------------------------------------------------------------- /piero.proietti@gmail.com-66b8815d.rsa.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/fresh-eggs/HEAD/piero.proietti@gmail.com-66b8815d.rsa.pub -------------------------------------------------------------------------------- /prepare_pkgs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/fresh-eggs/HEAD/prepare_pkgs.sh -------------------------------------------------------------------------------- /refresh-basket.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/fresh-eggs/HEAD/refresh-basket.sh -------------------------------------------------------------------------------- /refresh-eggs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroproietti/fresh-eggs/HEAD/refresh-eggs.sh --------------------------------------------------------------------------------