From 028316fede6583790a6e3a877dada45e04b393c6 Mon Sep 17 00:00:00 2001 From: taxicomics Date: Mon, 19 Aug 2024 13:19:28 +0200 Subject: [PATCH 1/3] Update archiso.sh Miniminimini mimimi korrektur --- archiso.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/archiso.sh b/archiso.sh index c972626..508432f 100644 --- a/archiso.sh +++ b/archiso.sh @@ -9,7 +9,7 @@ set -x if ! pacman -Qs archiso > /dev/null; then echo "Error: archiso is not installed." - read -p "Do youwant to install archiso? [Y]es or [N]o. \n" -n 1 -r + read -p "Do you want to install archiso? [Y]es or [N]o. \n" -n 1 -r if [[ $REPLY =~ ^[Yy]$ ]]; then sudo pacman -Sy archiso else From 45a72353b027a335176d22c4484b3f2c00e3551d Mon Sep 17 00:00:00 2001 From: dataprolet Date: Mon, 19 Aug 2024 15:34:13 +0200 Subject: [PATCH 2/3] Add REAMDE.md --- REAMDE.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 REAMDE.md diff --git a/REAMDE.md b/REAMDE.md new file mode 100644 index 0000000..14ede30 --- /dev/null +++ b/REAMDE.md @@ -0,0 +1,28 @@ +## Custom Arch Linux ISO Creator + +This script creates a custom Arch Linux ISO using _archiso_. + +### Features +- installs _archiso_ if not installed +- creates working directory _~/.archiso_ +- cleans working directory before +- writes output into logfile +- creates non-root user using your systems global $USER variable +- creates a password for the user +- adds user to sudoers and wheel group +- boots into KDE Plasma using SDDM and auto-logins your user (X11) +- contains Firefox and Konsole +- + +### Customizablility +- add packages to the $pkgs array +- change between releng and baseline profile +- change username +- + +### Usage +Just execute the script: + +``` +./archiso.sh +``` \ No newline at end of file From f6f36503cfb2dc351eba5daf34f72073593c1223 Mon Sep 17 00:00:00 2001 From: dataprolet Date: Mon, 19 Aug 2024 15:34:43 +0200 Subject: [PATCH 3/3] Update README.md --- REAMDE.md => README.md | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename REAMDE.md => README.md (100%) diff --git a/REAMDE.md b/README.md similarity index 100% rename from REAMDE.md rename to README.md