penguins-eggs 25.11.21 → 25.12.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (114) hide show
  1. package/.oclif.manifest.json +53 -41
  2. package/README.md +80 -36
  3. package/README.pdf +21575 -3241
  4. package/addons/eggs/theme/livecd/full.grub.main.cfg +39 -4
  5. package/addons/eggs/theme/livecd/full.isolinux.main.cfg +47 -4
  6. package/bin/run.js +11 -0
  7. package/conf/derivatives.yaml +4 -2
  8. package/conf/exclude.list.d/var.list +11 -6
  9. package/dist/appimage/dependency-manager.d.ts +31 -0
  10. package/dist/appimage/dependency-manager.js +292 -0
  11. package/dist/appimage/first-run-check.js +3 -3
  12. package/dist/bin/run.js +11 -0
  13. package/dist/classes/cli-autologin.js +78 -53
  14. package/dist/classes/compressors.d.ts +7 -10
  15. package/dist/classes/compressors.js +44 -31
  16. package/dist/classes/daddy.js +11 -11
  17. package/dist/classes/distro.js +2 -2
  18. package/dist/classes/diversions.js +2 -3
  19. package/dist/classes/incubation/fisherman-helper/initcpio.d.ts +4 -0
  20. package/dist/classes/incubation/fisherman-helper/initcpio.js +14 -4
  21. package/dist/classes/incubation/fisherman-helper/settings.js +1 -1
  22. package/dist/classes/incubation/fisherman.js +1 -3
  23. package/dist/classes/incubation/incubator.js +1 -1
  24. package/dist/classes/network.d.ts +1 -1
  25. package/dist/classes/ovary.d/create-xdg-autostart.js +1 -1
  26. package/dist/classes/ovary.d/edit-live-fs.d.ts +1 -12
  27. package/dist/classes/ovary.d/edit-live-fs.js +216 -186
  28. package/dist/classes/ovary.d/fertilization.js +1 -1
  29. package/dist/classes/ovary.d/make-dot-disk.js +1 -1
  30. package/dist/classes/ovary.d/produce.js +1 -1
  31. package/dist/classes/ovary.d/user-create-live.d.ts +4 -10
  32. package/dist/classes/ovary.d/user-create-live.js +82 -84
  33. package/dist/classes/ovary.d/users-remove.d.ts +5 -6
  34. package/dist/classes/ovary.d/users-remove.js +61 -31
  35. package/dist/classes/ovary.d/xorriso-command.js +1 -5
  36. package/dist/classes/ovary.d.ts +2 -2
  37. package/dist/classes/ovary.js +2 -2
  38. package/dist/classes/pacman.d/alpine.js +2 -2
  39. package/dist/classes/pacman.d/archlinux.js +2 -2
  40. package/dist/classes/pacman.d/debian.js +2 -3
  41. package/dist/classes/pacman.d/fedora.js +2 -3
  42. package/dist/classes/pacman.d/openmamba.js +2 -3
  43. package/dist/classes/pacman.d/opensuse.js +2 -3
  44. package/dist/classes/pacman.d.ts +21 -12
  45. package/dist/classes/pacman.js +55 -47
  46. package/dist/classes/pve-live.js +1 -1
  47. package/dist/classes/settings.js +1 -1
  48. package/dist/classes/sys-users.d.ts +76 -0
  49. package/dist/classes/sys-users.js +206 -0
  50. package/dist/classes/utils.d/kernel.js +3 -3
  51. package/dist/classes/utils.d.ts +16 -11
  52. package/dist/classes/utils.js +92 -56
  53. package/dist/classes/xdg.js +1 -1
  54. package/dist/classes/yolk.js +2 -4
  55. package/dist/commands/config.js +3 -14
  56. package/dist/commands/cuckoo.js +1 -1
  57. package/dist/commands/export/appimage.js +3 -3
  58. package/dist/commands/export/pkg.js +3 -3
  59. package/dist/commands/export/tarballs.js +3 -3
  60. package/dist/commands/krill.js +1 -1
  61. package/dist/commands/produce.js +9 -4
  62. package/dist/commands/{setup.d.ts → setup/install.d.ts} +1 -5
  63. package/dist/commands/setup/install.js +71 -0
  64. package/dist/commands/setup/purge.d.ts +17 -0
  65. package/dist/commands/setup/purge.js +71 -0
  66. package/dist/commands/tools/yolk.js +1 -1
  67. package/dist/commands/update.d.ts +15 -0
  68. package/dist/commands/update.js +74 -7
  69. package/dist/interfaces/i-exec.d.ts +1 -0
  70. package/dist/krill/classes/prepare.d/location.js +1 -1
  71. package/dist/krill/classes/prepare.d/partitions.js +1 -1
  72. package/dist/krill/classes/prepare.d/users.js +2 -2
  73. package/dist/krill/classes/prepare.js +5 -5
  74. package/dist/krill/classes/sequence.d/add_user.d.ts +3 -15
  75. package/dist/krill/classes/sequence.d/add_user.js +87 -57
  76. package/dist/krill/classes/sequence.d/change_password.d.ts +5 -7
  77. package/dist/krill/classes/sequence.d/change_password.js +25 -10
  78. package/dist/krill/classes/sequence.d/del_live_user.d.ts +5 -7
  79. package/dist/krill/classes/sequence.d/del_live_user.js +39 -25
  80. package/dist/krill/classes/sequence.d/fstab.js +1 -1
  81. package/dist/krill/classes/sequence.d/grubcfg.d.ts +3 -7
  82. package/dist/krill/classes/sequence.d/grubcfg.js +33 -13
  83. package/dist/krill/classes/sequence.d/mkfs.js +1 -2
  84. package/dist/krill/classes/sequence.d/unpackfs.d.ts +2 -4
  85. package/dist/krill/classes/sequence.d/unpackfs.js +8 -5
  86. package/dist/krill/classes/sequence.js +2 -3
  87. package/dist/krill/components/title.js +4 -4
  88. package/dist/krill/lib/select_installation_device.js +1 -1
  89. package/dist/krill/lib/select_replaced_partition.js +1 -1
  90. package/dist/lib/utils.d.ts +51 -19
  91. package/dist/lib/utils.js +225 -39
  92. package/manpages/doc/man/eggs.1.gz +0 -0
  93. package/manpages/doc/man/eggs.html +29 -17
  94. package/package.json +13 -14
  95. package/perrisbrewery/template/dependencies.yaml +1 -0
  96. package/scripts/_eggs +35 -7
  97. package/scripts/boot-encrypted-root.sh +220 -0
  98. package/scripts/eggs.bash +2 -1
  99. package/scripts/mount-encrypted-home.sh +324 -0
  100. package/dist/appimage/prerequisites.d.ts +0 -34
  101. package/dist/appimage/prerequisites.js +0 -350
  102. package/dist/commands/setup.js +0 -90
  103. package/dracut/create-symlink +0 -71
  104. package/dracut/dracut-log.txt +0 -3
  105. package/dracut/export +0 -4
  106. package/dracut/export-dracut-analysis +0 -51
  107. package/dracut/export-dracut-log +0 -2
  108. package/dracut/mkisofs +0 -10
  109. package/dracut/renew-initramfs +0 -17
  110. package/dracut/sbin2bin +0 -10
  111. package/dracut/update-dracut-conf-d +0 -2
  112. package/dracut/update-dracut-modules +0 -62
  113. package/scripts/appimage-build.sh +0 -152
  114. package/scripts/appimage-install.sh +0 -43
@@ -764,46 +764,6 @@
764
764
  "produce.js"
765
765
  ]
766
766
  },
767
- "setup": {
768
- "aliases": [],
769
- "args": {},
770
- "description": "Automatically check and install system prerequisites",
771
- "examples": [
772
- "sudo eggs setup # install prerequisites",
773
- "sudo eggs setup --check # check prerequisites presence",
774
- "sudo eggs setup --force # force prerequisites install"
775
- ],
776
- "flags": {
777
- "check": {
778
- "char": "c",
779
- "description": "check status only, do not install",
780
- "name": "check",
781
- "allowNo": false,
782
- "type": "boolean"
783
- },
784
- "force": {
785
- "char": "f",
786
- "description": "force installation even if already installed",
787
- "name": "force",
788
- "allowNo": false,
789
- "type": "boolean"
790
- }
791
- },
792
- "hasDynamicHelp": false,
793
- "hiddenAliases": [],
794
- "id": "setup",
795
- "pluginAlias": "penguins-eggs",
796
- "pluginName": "penguins-eggs",
797
- "pluginType": "core",
798
- "strict": true,
799
- "enableJsonFlag": false,
800
- "isESM": true,
801
- "relativePath": [
802
- "dist",
803
- "commands",
804
- "setup.js"
805
- ]
806
- },
807
767
  "status": {
808
768
  "aliases": [],
809
769
  "args": {},
@@ -1083,6 +1043,58 @@
1083
1043
  "tarballs.js"
1084
1044
  ]
1085
1045
  },
1046
+ "setup:install": {
1047
+ "aliases": [],
1048
+ "args": {},
1049
+ "description": "Automatically check and install system prerequisites",
1050
+ "examples": [
1051
+ "eggs setup # this help",
1052
+ "sudo eggs setup install # install native dependencies, autocomplete, man, etc",
1053
+ "sudo eggs setup purge # purge all configurations, autocomplete, man, etc installed from penguins-eggs AppImage"
1054
+ ],
1055
+ "flags": {},
1056
+ "hasDynamicHelp": false,
1057
+ "hiddenAliases": [],
1058
+ "id": "setup:install",
1059
+ "pluginAlias": "penguins-eggs",
1060
+ "pluginName": "penguins-eggs",
1061
+ "pluginType": "core",
1062
+ "strict": true,
1063
+ "enableJsonFlag": false,
1064
+ "isESM": true,
1065
+ "relativePath": [
1066
+ "dist",
1067
+ "commands",
1068
+ "setup",
1069
+ "install.js"
1070
+ ]
1071
+ },
1072
+ "setup:purge": {
1073
+ "aliases": [],
1074
+ "args": {},
1075
+ "description": "Automatically check and install system prerequisites",
1076
+ "examples": [
1077
+ "eggs setup # this help",
1078
+ "sudo eggs setup install # install native dependencies, autocomplete, man, etc",
1079
+ "sudo eggs setup purge # purge all configurations, autocomplete, man, etc installed from penguins-eggs AppImage"
1080
+ ],
1081
+ "flags": {},
1082
+ "hasDynamicHelp": false,
1083
+ "hiddenAliases": [],
1084
+ "id": "setup:purge",
1085
+ "pluginAlias": "penguins-eggs",
1086
+ "pluginName": "penguins-eggs",
1087
+ "pluginType": "core",
1088
+ "strict": true,
1089
+ "enableJsonFlag": false,
1090
+ "isESM": true,
1091
+ "relativePath": [
1092
+ "dist",
1093
+ "commands",
1094
+ "setup",
1095
+ "purge.js"
1096
+ ]
1097
+ },
1086
1098
  "tools:clean": {
1087
1099
  "aliases": [],
1088
1100
  "args": {},
@@ -1558,5 +1570,5 @@
1558
1570
  ]
1559
1571
  }
1560
1572
  },
1561
- "version": "25.11.21"
1573
+ "version": "25.12.7"
1562
1574
  }
package/README.md CHANGED
@@ -7,7 +7,7 @@
7
7
  [![gdrive](https://img.shields.io/badge/gdrive-all-blue)](https://drive.google.com/drive/folders/19fwjvsZiW0Dspu2Iq-fQN0J-PDbKBlYY)
8
8
  [![sourceforge](https://img.shields.io/badge/sourceforge-all-blue)](https://sourceforge.net/projects/penguins-eggs/files/)
9
9
  [![ver](https://img.shields.io/npm/v/penguins-eggs.svg)](https://npmjs.org/package/penguins-eggs)
10
- [![Get it from AppImage](https://img.shields.io/badge/Get%20it%20from-AppImage-important.svg)](https://appimage.github.io/penguins-eggs/)
10
+ [![Get it as AppImage](https://img.shields.io/badge/Get%20it%20as-AppImage-important.svg)](https://github.com/pieroproietti/penguins-eggs/releases)
11
11
 
12
12
  <a href="https://drive.google.com/drive/folders/19fwjvsZiW0Dspu2Iq-fQN0J-PDbKBlYY">
13
13
  <img src="https://raw.githubusercontent.com/pieroproietti/penguins-eggs/master/images/penguins-eggs-300x300.png" width="280" height="300" alt="CD-ROM">
@@ -58,7 +58,33 @@ Here’s a breakdown of what it’s used for:
58
58
  Lightweight and Distro-Agnostic: It works across various Debian, Devuan, Ubuntu, Arch, Fedora, Almalinux, Rocky, OpenSuSE and Alpine derivativesso you’re not locked into one ecosystem. Please consult the complete list of [SUPPORTED-DISTROS](https://github.com/pieroproietti/fresh-eggs/blob/main/SUPPORTED-DISTROS.md) to get more informations.
59
59
 
60
60
  # Installation
61
+ ## AppImage
62
+ [![penguins-eggs as AppImage](https://img.shields.io/badge/Get%20it%20as-AppImage-important.svg)](https://github.com/pieroproietti/penguins-eggs/releases)
61
63
 
64
+
65
+ Although penguins-eggs has only recently been released as an AppImage, it is perhaps the simplest method. All you need is to get the penguins-eggs AppImage: open a browser at the url: `https://github.com/pieroproietti/penguins-eggs`, on the right side, find `latest release`, download the AppImage `penguins-eggs-25.x.x-1-x86_64.AppImage` and launch it using `sudo`
66
+
67
+ The AppImage will be be automatically configured and renamed as `/usr/bin/eggs`. It's ready to use!
68
+
69
+ `eggs love` to get your system remastered as live ISO.
70
+
71
+ ## Before to try AppImage depending on your distro, you need this packages installed:
72
+ * Alpine: `sudo apk add fuse`
73
+ * Arch/Manjaro: `sudo pacman -S fuse2`
74
+ * Debian/Devuan/Ubuntu: `sudo apt-get install fuse libfuse2`
75
+ * Fedora/RHEL: `sudo dnf install fuse fuse-libs`
76
+ * Opensuse: `sudo zypper install fuse fuse-libs`
77
+
78
+ ## AppImage installation
79
+ penguins-eggs as an AppImage, it can be installed on all supported distributions. Download it from [github.com/pieroproietti](https://github.com/pieroproietti/penguins-eggs/releases) or on [appimage.github.io](https://appimage.github.io/penguins-eggs), then run the following commands:
80
+ ```
81
+ $ chmod +x penguins-eggs-25.11.29-1-x86_64.AppImage
82
+ $ sudo ./penguins-eggs-25.11.29-1-x86_64.AppImage
83
+ ```
84
+
85
+ Note that the AppImage version and the native version consist of exactly the same code and install/remove the same native dependencies on every distro.
86
+
87
+ ## Native packages
62
88
  **Try the new repos** for [Debian/Devuan/Ubuntu](https://github.com/pieroproietti/penguins-eggs/blob/master/DOCS/INSTALL-DEBIAN-DEVUAN-UBUNTU.md)[Fedora](https://github.com/pieroproietti/penguins-eggs/blob/master/DOCS/INSTALL-FEDORA.md), [Enterprise linux](https://github.com/pieroproietti/penguins-eggs/blob/master/DOCS/INSTALL-ENTERPRISE-LINUX.md) and [OpenSUSE](https://github.com/pieroproietti/penguins-eggs/blob/master/DOCS/INSTALL-OPENSUSE.md).
63
89
 
64
90
  ## penguins-eggs-25.7.x installation
@@ -503,7 +529,8 @@ sudo eggs produce --max
503
529
  * [`eggs love`](#eggs-love)
504
530
  * [`eggs mom`](#eggs-mom)
505
531
  * [`eggs produce`](#eggs-produce)
506
- * [`eggs setup`](#eggs-setup)
532
+ * [`eggs setup install`](#eggs-setup-install)
533
+ * [`eggs setup purge`](#eggs-setup-purge)
507
534
  * [`eggs status`](#eggs-status)
508
535
  * [`eggs tools clean`](#eggs-tools-clean)
509
536
  * [`eggs tools repo`](#eggs-tools-repo)
@@ -536,7 +563,7 @@ EXAMPLES
536
563
  $ eggs adapt
537
564
  ```
538
565
 
539
- _See code: [src/commands/adapt.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.21/src/commands/adapt.ts)_
566
+ _See code: [src/commands/adapt.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.7/src/commands/adapt.ts)_
540
567
 
541
568
  ## `eggs autocomplete [SHELL]`
542
569
 
@@ -600,7 +627,7 @@ EXAMPLES
600
627
  sudo eggs calamares --remove
601
628
  ```
602
629
 
603
- _See code: [src/commands/calamares.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.21/src/commands/calamares.ts)_
630
+ _See code: [src/commands/calamares.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.7/src/commands/calamares.ts)_
604
631
 
605
632
  ## `eggs config`
606
633
 
@@ -627,7 +654,7 @@ EXAMPLES
627
654
  sudo eggs config --clean --nointeractive
628
655
  ```
629
656
 
630
- _See code: [src/commands/config.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.21/src/commands/config.ts)_
657
+ _See code: [src/commands/config.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.7/src/commands/config.ts)_
631
658
 
632
659
  ## `eggs cuckoo`
633
660
 
@@ -648,7 +675,7 @@ EXAMPLES
648
675
  sudo eggs cuckoo
649
676
  ```
650
677
 
651
- _See code: [src/commands/cuckoo.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.21/src/commands/cuckoo.ts)_
678
+ _See code: [src/commands/cuckoo.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.7/src/commands/cuckoo.ts)_
652
679
 
653
680
  ## `eggs dad`
654
681
 
@@ -677,7 +704,7 @@ EXAMPLES
677
704
  sudo dad --default
678
705
  ```
679
706
 
680
- _See code: [src/commands/dad.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.21/src/commands/dad.ts)_
707
+ _See code: [src/commands/dad.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.7/src/commands/dad.ts)_
681
708
 
682
709
  ## `eggs export appimage`
683
710
 
@@ -703,7 +730,7 @@ EXAMPLES
703
730
  $ eggs export pkg --all
704
731
  ```
705
732
 
706
- _See code: [src/commands/export/appimage.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.21/src/commands/export/appimage.ts)_
733
+ _See code: [src/commands/export/appimage.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.7/src/commands/export/appimage.ts)_
707
734
 
708
735
  ## `eggs export iso`
709
736
 
@@ -728,7 +755,7 @@ EXAMPLES
728
755
  $ eggs export iso --clean
729
756
  ```
730
757
 
731
- _See code: [src/commands/export/iso.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.21/src/commands/export/iso.ts)_
758
+ _See code: [src/commands/export/iso.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.7/src/commands/export/iso.ts)_
732
759
 
733
760
  ## `eggs export pkg`
734
761
 
@@ -755,7 +782,7 @@ EXAMPLES
755
782
  $ eggs export pkg --all
756
783
  ```
757
784
 
758
- _See code: [src/commands/export/pkg.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.21/src/commands/export/pkg.ts)_
785
+ _See code: [src/commands/export/pkg.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.7/src/commands/export/pkg.ts)_
759
786
 
760
787
  ## `eggs export tarballs`
761
788
 
@@ -779,7 +806,7 @@ EXAMPLES
779
806
  $ eggs export tarballs --clean
780
807
  ```
781
808
 
782
- _See code: [src/commands/export/tarballs.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.21/src/commands/export/tarballs.ts)_
809
+ _See code: [src/commands/export/tarballs.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.7/src/commands/export/tarballs.ts)_
783
810
 
784
811
  ## `eggs help [COMMAND]`
785
812
 
@@ -822,7 +849,7 @@ EXAMPLES
822
849
  sudo eggs kill
823
850
  ```
824
851
 
825
- _See code: [src/commands/kill.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.21/src/commands/kill.ts)_
852
+ _See code: [src/commands/kill.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.7/src/commands/kill.ts)_
826
853
 
827
854
  ## `eggs krill`
828
855
 
@@ -863,7 +890,7 @@ EXAMPLES
863
890
  sudo eggs install --chroot
864
891
  ```
865
892
 
866
- _See code: [src/commands/krill.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.21/src/commands/krill.ts)_
893
+ _See code: [src/commands/krill.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.7/src/commands/krill.ts)_
867
894
 
868
895
  ## `eggs love`
869
896
 
@@ -889,7 +916,7 @@ EXAMPLES
889
916
  $ eggs auto
890
917
  ```
891
918
 
892
- _See code: [src/commands/love.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.21/src/commands/love.ts)_
919
+ _See code: [src/commands/love.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.7/src/commands/love.ts)_
893
920
 
894
921
  ## `eggs mom`
895
922
 
@@ -909,7 +936,7 @@ EXAMPLES
909
936
  $ eggs mom
910
937
  ```
911
938
 
912
- _See code: [src/commands/mom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.21/src/commands/mom.ts)_
939
+ _See code: [src/commands/mom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.7/src/commands/mom.ts)_
913
940
 
914
941
  ## `eggs produce`
915
942
 
@@ -962,32 +989,49 @@ EXAMPLES
962
989
  sudo eggs produce --basename=colibri
963
990
  ```
964
991
 
965
- _See code: [src/commands/produce.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.21/src/commands/produce.ts)_
992
+ _See code: [src/commands/produce.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.7/src/commands/produce.ts)_
966
993
 
967
- ## `eggs setup`
994
+ ## `eggs setup install`
968
995
 
969
996
  Automatically check and install system prerequisites
970
997
 
971
998
  ```
972
999
  USAGE
973
- $ eggs setup [-c] [-f]
1000
+ $ eggs setup install
974
1001
 
975
- FLAGS
976
- -c, --check check status only, do not install
977
- -f, --force force installation even if already installed
1002
+ DESCRIPTION
1003
+ Automatically check and install system prerequisites
1004
+
1005
+ EXAMPLES
1006
+ $ eggs setup # this help
1007
+
1008
+ sudo eggs setup install # install native dependencies, autocomplete, man, etc
1009
+
1010
+ sudo eggs setup purge # purge all configurations, autocomplete, man, etc installed from penguins-eggs AppImage
1011
+ ```
1012
+
1013
+ _See code: [src/commands/setup/install.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.7/src/commands/setup/install.ts)_
1014
+
1015
+ ## `eggs setup purge`
1016
+
1017
+ Automatically check and install system prerequisites
1018
+
1019
+ ```
1020
+ USAGE
1021
+ $ eggs setup purge
978
1022
 
979
1023
  DESCRIPTION
980
1024
  Automatically check and install system prerequisites
981
1025
 
982
1026
  EXAMPLES
983
- sudo eggs setup # install prerequisites
1027
+ $ eggs setup # this help
984
1028
 
985
- sudo eggs setup --check # check prerequisites presence
1029
+ sudo eggs setup install # install native dependencies, autocomplete, man, etc
986
1030
 
987
- sudo eggs setup --force # force prerequisites install
1031
+ sudo eggs setup purge # purge all configurations, autocomplete, man, etc installed from penguins-eggs AppImage
988
1032
  ```
989
1033
 
990
- _See code: [src/commands/setup.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.21/src/commands/setup.ts)_
1034
+ _See code: [src/commands/setup/purge.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.7/src/commands/setup/purge.ts)_
991
1035
 
992
1036
  ## `eggs status`
993
1037
 
@@ -1008,7 +1052,7 @@ EXAMPLES
1008
1052
  $ eggs status
1009
1053
  ```
1010
1054
 
1011
- _See code: [src/commands/status.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.21/src/commands/status.ts)_
1055
+ _See code: [src/commands/status.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.7/src/commands/status.ts)_
1012
1056
 
1013
1057
  ## `eggs tools clean`
1014
1058
 
@@ -1030,7 +1074,7 @@ EXAMPLES
1030
1074
  sudo eggs tools clean
1031
1075
  ```
1032
1076
 
1033
- _See code: [src/commands/tools/clean.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.21/src/commands/tools/clean.ts)_
1077
+ _See code: [src/commands/tools/clean.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.7/src/commands/tools/clean.ts)_
1034
1078
 
1035
1079
  ## `eggs tools repo`
1036
1080
 
@@ -1056,7 +1100,7 @@ EXAMPLES
1056
1100
  sudo eggs tools repo --remove
1057
1101
  ```
1058
1102
 
1059
- _See code: [src/commands/tools/repo.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.21/src/commands/tools/repo.ts)_
1103
+ _See code: [src/commands/tools/repo.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.7/src/commands/tools/repo.ts)_
1060
1104
 
1061
1105
  ## `eggs tools skel`
1062
1106
 
@@ -1080,7 +1124,7 @@ EXAMPLES
1080
1124
  sudo eggs tools skel --user user-to-be-copied
1081
1125
  ```
1082
1126
 
1083
- _See code: [src/commands/tools/skel.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.21/src/commands/tools/skel.ts)_
1127
+ _See code: [src/commands/tools/skel.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.7/src/commands/tools/skel.ts)_
1084
1128
 
1085
1129
  ## `eggs tools stat`
1086
1130
 
@@ -1106,7 +1150,7 @@ EXAMPLES
1106
1150
  $ eggs tools stat --year
1107
1151
  ```
1108
1152
 
1109
- _See code: [src/commands/tools/stat.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.21/src/commands/tools/stat.ts)_
1153
+ _See code: [src/commands/tools/stat.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.7/src/commands/tools/stat.ts)_
1110
1154
 
1111
1155
  ## `eggs tools yolk`
1112
1156
 
@@ -1127,7 +1171,7 @@ EXAMPLES
1127
1171
  sudo eggs tools yolk
1128
1172
  ```
1129
1173
 
1130
- _See code: [src/commands/tools/yolk.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.21/src/commands/tools/yolk.ts)_
1174
+ _See code: [src/commands/tools/yolk.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.7/src/commands/tools/yolk.ts)_
1131
1175
 
1132
1176
  ## `eggs update`
1133
1177
 
@@ -1148,7 +1192,7 @@ EXAMPLES
1148
1192
  $ eggs update
1149
1193
  ```
1150
1194
 
1151
- _See code: [src/commands/update.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.21/src/commands/update.ts)_
1195
+ _See code: [src/commands/update.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.7/src/commands/update.ts)_
1152
1196
 
1153
1197
  ## `eggs version`
1154
1198
 
@@ -1194,7 +1238,7 @@ EXAMPLES
1194
1238
  $ eggs wardrobe get your-wardrobe
1195
1239
  ```
1196
1240
 
1197
- _See code: [src/commands/wardrobe/get.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.21/src/commands/wardrobe/get.ts)_
1241
+ _See code: [src/commands/wardrobe/get.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.7/src/commands/wardrobe/get.ts)_
1198
1242
 
1199
1243
  ## `eggs wardrobe list [REPO]`
1200
1244
 
@@ -1223,7 +1267,7 @@ EXAMPLES
1223
1267
  $ eggs wardrobe list --distro arch
1224
1268
  ```
1225
1269
 
1226
- _See code: [src/commands/wardrobe/list.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.21/src/commands/wardrobe/list.ts)_
1270
+ _See code: [src/commands/wardrobe/list.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.7/src/commands/wardrobe/list.ts)_
1227
1271
 
1228
1272
  ## `eggs wardrobe show [REPO]`
1229
1273
 
@@ -1253,7 +1297,7 @@ EXAMPLES
1253
1297
  $ eggs wardrobe show accessories/
1254
1298
  ```
1255
1299
 
1256
- _See code: [src/commands/wardrobe/show.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.21/src/commands/wardrobe/show.ts)_
1300
+ _See code: [src/commands/wardrobe/show.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.7/src/commands/wardrobe/show.ts)_
1257
1301
 
1258
1302
  ## `eggs wardrobe wear [REPO]`
1259
1303
 
@@ -1284,7 +1328,7 @@ EXAMPLES
1284
1328
  sudo eggs wardrobe wear wagtail/waydroid
1285
1329
  ```
1286
1330
 
1287
- _See code: [src/commands/wardrobe/wear.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.21/src/commands/wardrobe/wear.ts)_
1331
+ _See code: [src/commands/wardrobe/wear.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.7/src/commands/wardrobe/wear.ts)_
1288
1332
  <!-- commandsstop -->
1289
1333
 
1290
1334
  # GUI