penguins-eggs 25.12.7 → 25.12.15

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 (53) hide show
  1. package/.oclif.manifest.json +1 -1
  2. package/README.md +74 -45
  3. package/README.pdf +13450 -14838
  4. package/addons/eggs/theme/livecd/simple.grub.main.cfg +3 -3
  5. package/conf/distros/buster/calamares/calamares-modules/cleanup/cleanup.sh +1 -1
  6. package/conf/distros/focal/calamares/calamares-modules/cleanup/cleanup.sh +1 -1
  7. package/conf/distros/noble/calamares/calamares-modules/cleanup/cleanup.sh +1 -1
  8. package/conf/distros/noble/calamares/libexec/calamares-l10n-helper.sh +2 -1
  9. package/conf/distros/noble/calamares/settings.yml +1 -0
  10. package/conf/distros/trixie/calamares/calamares-modules/cleanup/cleanup.sh +1 -1
  11. package/dist/classes/cli-autologin.d.ts +37 -4
  12. package/dist/classes/cli-autologin.js +125 -112
  13. package/dist/classes/daddy.js +4 -1
  14. package/dist/classes/incubation/fisherman-helper/initcpio.d.ts +3 -2
  15. package/dist/classes/incubation/fisherman-helper/initcpio.js +25 -20
  16. package/dist/classes/incubation/incubator.d/manjaro.js +1 -0
  17. package/dist/classes/ovary.d/edit-live-fs.d.ts +1 -1
  18. package/dist/classes/ovary.d/edit-live-fs.js +15 -122
  19. package/dist/classes/ovary.d/fertilization.js +1 -1
  20. package/dist/classes/ovary.d/luks-home.js +33 -19
  21. package/dist/classes/ovary.d/luks-root.d.ts +1 -2
  22. package/dist/classes/ovary.d/luks-root.js +46 -27
  23. package/dist/classes/ovary.d/luks-shrink.d.ts +14 -0
  24. package/dist/classes/ovary.d/luks-shrink.js +86 -0
  25. package/dist/classes/ovary.d/produce.js +63 -21
  26. package/dist/classes/ovary.d.ts +3 -1
  27. package/dist/classes/ovary.js +3 -1
  28. package/dist/classes/utils.js +1 -1
  29. package/dist/classes/yolk.js +1 -1
  30. package/dist/commands/produce.js +11 -7
  31. package/dist/interfaces/calamares/i-calamares-branding.d.ts +56 -38
  32. package/dist/interfaces/calamares/i-calamares-branding.js +10 -0
  33. package/dist/krill/classes/prepare.d/users.js +1 -1
  34. package/dist/krill/classes/sequence.d/fstab.js +1 -1
  35. package/dist/krill/classes/sequence.d/mkfs.js +1 -1
  36. package/dist/krill/classes/sequence.d/unpackfs.js +2 -2
  37. package/dist/krill/classes/sequence.d.ts +1 -5
  38. package/dist/krill/classes/sequence.js +26 -29
  39. package/dist/krill/components/finished.js +2 -2
  40. package/dist/krill/components/install.js +2 -2
  41. package/dist/krill/components/keyboard.js +2 -2
  42. package/dist/krill/components/location.js +2 -2
  43. package/dist/krill/components/network.js +2 -2
  44. package/dist/krill/components/partitions.js +2 -2
  45. package/dist/krill/components/summary.js +2 -2
  46. package/dist/krill/components/users.js +2 -2
  47. package/dist/krill/components/welcome.js +2 -2
  48. package/dist/lib/utils.d.ts +1 -0
  49. package/dist/lib/utils.js +46 -0
  50. package/manpages/doc/man/eggs.1.gz +0 -0
  51. package/manpages/doc/man/eggs.html +8 -8
  52. package/package.json +2 -2
  53. package/scripts/restore_homecrypt_krill.sh +93 -0
@@ -1570,5 +1570,5 @@
1570
1570
  ]
1571
1571
  }
1572
1572
  },
1573
- "version": "25.12.7"
1573
+ "version": "25.12.15"
1574
1574
  }
package/README.md CHANGED
@@ -62,13 +62,13 @@ Lightweight and Distro-Agnostic: It works across various Debian, Devuan, Ubuntu,
62
62
  [![penguins-eggs as AppImage](https://img.shields.io/badge/Get%20it%20as-AppImage-important.svg)](https://github.com/pieroproietti/penguins-eggs/releases)
63
63
 
64
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`
65
+ Although penguins-eggs has only recently been released as an AppImage, this 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
66
 
67
- The AppImage will be be automatically configured and renamed as `/usr/bin/eggs`. It's ready to use!
67
+ The AppImage will be automatically configured and renamed as `/usr/bin/eggs`. It's ready to use!
68
68
 
69
69
  `eggs love` to get your system remastered as live ISO.
70
70
 
71
- ## Before to try AppImage depending on your distro, you need this packages installed:
71
+ ## Before trying the AppImage, depending on your distro, you need to install these packages:
72
72
  * Alpine: `sudo apk add fuse`
73
73
  * Arch/Manjaro: `sudo pacman -S fuse2`
74
74
  * Debian/Devuan/Ubuntu: `sudo apt-get install fuse libfuse2`
@@ -101,13 +101,17 @@ sudo ./fresh-eggs.sh
101
101
  ```
102
102
  And follow instructions.
103
103
 
104
+ ### using Eggo - The Simpler Installer for Penguins Eggs
105
+ From our friend [Brickboss](https://github.com/robert19066) come [eggo](https://github.com/robert19066/Eggo) a simple installer for penguins-eggs. [Instructions](https://github.com/robert19066/Eggo).
106
+
107
+
104
108
  ### Manual installation
105
109
 
106
110
  ### AlmaLinux, RockyLinux
107
111
  Since penguins-eggs-25.7.14 rpm packages for Enterprise Linux [el9](https://penguins-eggs.net/basket/index.php/packages/el9) are availables.
108
112
 
109
113
  ### AlpineLinux
110
- I created and maintain a package for Alpine. Its repository is [penguins-alpine](https://github.com/pieroproietti/penguins-alpine) and related packages can be downloaded from [penguins-eggs.net](https://penguins-eggs.net/basket/index.php/packages/alpine) or the [sourceforge page](https://sourceforge.net/projects/penguins-eggs/files/Packages/alpine/).
114
+ I maintain a package for Alpine Linux. Its repository is [penguins-alpine](https://github.com/pieroproietti/penguins-alpine) and related packages can be downloaded from [penguins-eggs.net](https://penguins-eggs.net/basket/index.php/packages/alpine) or the [sourceforge page](https://sourceforge.net/projects/penguins-eggs/files/Packages/alpine/).
111
115
 
112
116
  ### Arch
113
117
  Just download and install penguins-eggs-25.x.x using [fresh-eggs](https://github.com/pieroproietti/fresh-eggs).
@@ -241,25 +245,50 @@ Furthermore, addons, predominantly themes, have been organized under the vendor'
241
245
  > For detailed instructions on using a wardrobe, please consult the wardrobe users' guide [wardrobe users' guide](https://penguins-eggs.net/docs/Tutorial/wardrobe-users-guide).
242
246
 
243
247
 
244
- ## Clone/Cryptedclone
245
- When creating a live distribution of your system, you have different options to consider: the default mode, clone, and cryptedclone.
246
- • The default mode, achieved by using the command `eggs produce`, completely removes user data from the live distribution. This ensures that no private data remains in the live system.
247
-
248
- • The `eggs produce --clone` command allows you to save both user data and system data directly in the generated ISO. This means that if someone obtains a copy of the ISO, they will be able to see and access the
249
- user data directly from the live system. It's important to note that this data is not encrypted, so it may not be suitable if you have sensitive information on your system.
250
-
251
- • On the other hand, the `eggs produce --cryptedclone` command saves the data within the generated ISO using a LUKS (Linux Unified Key Setup) volume. With this option, the user data will not be visible in the live system. However, it can be automatically reinstalled during the system installation process using the "krill" installer. Even if someone has the generated ISO, they won't be able to access the user data without the LUKS passphrase. This ensures that your data remains protected.
248
+ ## System Cloning and Data Handling
249
+ When creating a live distribution of your system using eggs produce, you must decide how to handle user data. You have three primary approaches: Default (Clean), Direct Clone, and Encrypted Clone.
252
250
 
253
- To summarize the available options:
251
+ ### 1. Default Mode (Clean System)
252
+ Command: `eggs produce`
254
253
 
255
- • `eggs produce` (default): All private data is removed from the live system.
254
+ This is the default mode. It completely removes all user data and personal settings from the live distribution.
256
255
 
257
- • `eggs produce --clone`: All user data is included unencrypted directly in the live system.
256
+ Best for: Creating a distributable ISO to share with others or creating a clean "factory reset" image.
258
257
 
259
- • `eggs produce --cryptedclone`: All user data is included encrypted within a LUKS volume inside the ISO.
260
- > [!TIP]
261
- > During the installation process, you can use the "krill" installer to restore your crypted data automatically. By running the command "sudo eggs install" with the "krill" installer, your encrypted data will be securely transferred and made available in the installed system.
258
+ Privacy: Maximum. No private data remains in the live system.
259
+
260
+ ### 2. Clone (Unencrypted)
261
+ Command: `eggs produce --clone`
262
+
263
+ This command creates an exact replica of your current system, saving both system files and user data directly into the ISO.
264
+
265
+ Behavior: If someone obtains this ISO, they can boot it and immediately access your files, browsing history, and settings without a password.
266
+
267
+ Best for: Personal backups where the physical media (USB/DVD) remains in your secure possession.
268
+
269
+ Privacy Warning: Low. Data is not encrypted. Do not share this ISO publicly if it contains sensitive information.
270
+
271
+ ### 3. Encrypted Clone (Secure Backup)
272
+ Commands: `eggs produce --homecrypt` / `eggs produce --fullcrypt`
273
+
274
+ These options save your data within the ISO but protect it inside a LUKS (Linux Unified Key Setup) volume.
275
+
276
+ Behavior: Your user data is included but is not visible or accessible in the live system session. Even if a third party obtains the ISO, they cannot access the data without the LUKS passphrase.
277
+
278
+ Best for: Secure backups or transporting your environment across different machines.
279
+
280
+ > [NOTE] Availability and Scope
281
+
282
+ > eggs produce --homecrypt: Available for most distributions using either native penguins-eggs packages or the AppImage. It protects sensitive data under /home and system accounts.
283
+
284
+ > `eggs produce --fullcrypt`: Supported only on Debian Trixie and Devuan Excalibur, and exclusively when using native eggs packages. Unlike homecrypt, this option does not limit protection to /home, but encrypts the entire system.
262
285
 
286
+ | Command | Data Included? | Encryption | Visible on Live System? | Use Case |
287
+ | :--- | :--- | :--- | :--- | :--- |
288
+ | `eggs produce` | No | N/A | No | Public Distribution / Clean Install |
289
+ | `eggs produce --clone` | **Yes** | No | **Yes** | Personal Unsecured Backup |
290
+ | `eggs produce --homecrypt` | **Yes** (/home) | **Yes (LUKS)** | Yes | Secure Backup of User Data |
291
+ | `eggs produce --fullcrypt` | **Yes** (Full) | **Yes (LUKS)** | Yes | Maximum Security Backup (Debian/Devuan only) |
263
292
 
264
293
  ## Calamares and krill
265
294
  Calamares and Krill are powerful tools in the Eggs project, [calamares](https://calamares.io), offering versatile installation options for Linux systems. The Eggs project was specifically designed to utilize Calamares as the default system installer, providing users with the flexibility to customize their installations using themes. However, Eggs goes beyond Calamares by introducing its own installer called Krill, which focuses on command-line interface (CLI) installations, particularly for server environments.
@@ -563,7 +592,7 @@ EXAMPLES
563
592
  $ eggs adapt
564
593
  ```
565
594
 
566
- _See code: [src/commands/adapt.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.7/src/commands/adapt.ts)_
595
+ _See code: [src/commands/adapt.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.15/src/commands/adapt.ts)_
567
596
 
568
597
  ## `eggs autocomplete [SHELL]`
569
598
 
@@ -627,7 +656,7 @@ EXAMPLES
627
656
  sudo eggs calamares --remove
628
657
  ```
629
658
 
630
- _See code: [src/commands/calamares.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.7/src/commands/calamares.ts)_
659
+ _See code: [src/commands/calamares.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.15/src/commands/calamares.ts)_
631
660
 
632
661
  ## `eggs config`
633
662
 
@@ -654,7 +683,7 @@ EXAMPLES
654
683
  sudo eggs config --clean --nointeractive
655
684
  ```
656
685
 
657
- _See code: [src/commands/config.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.7/src/commands/config.ts)_
686
+ _See code: [src/commands/config.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.15/src/commands/config.ts)_
658
687
 
659
688
  ## `eggs cuckoo`
660
689
 
@@ -675,7 +704,7 @@ EXAMPLES
675
704
  sudo eggs cuckoo
676
705
  ```
677
706
 
678
- _See code: [src/commands/cuckoo.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.7/src/commands/cuckoo.ts)_
707
+ _See code: [src/commands/cuckoo.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.15/src/commands/cuckoo.ts)_
679
708
 
680
709
  ## `eggs dad`
681
710
 
@@ -704,7 +733,7 @@ EXAMPLES
704
733
  sudo dad --default
705
734
  ```
706
735
 
707
- _See code: [src/commands/dad.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.7/src/commands/dad.ts)_
736
+ _See code: [src/commands/dad.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.15/src/commands/dad.ts)_
708
737
 
709
738
  ## `eggs export appimage`
710
739
 
@@ -730,7 +759,7 @@ EXAMPLES
730
759
  $ eggs export pkg --all
731
760
  ```
732
761
 
733
- _See code: [src/commands/export/appimage.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.7/src/commands/export/appimage.ts)_
762
+ _See code: [src/commands/export/appimage.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.15/src/commands/export/appimage.ts)_
734
763
 
735
764
  ## `eggs export iso`
736
765
 
@@ -755,7 +784,7 @@ EXAMPLES
755
784
  $ eggs export iso --clean
756
785
  ```
757
786
 
758
- _See code: [src/commands/export/iso.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.7/src/commands/export/iso.ts)_
787
+ _See code: [src/commands/export/iso.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.15/src/commands/export/iso.ts)_
759
788
 
760
789
  ## `eggs export pkg`
761
790
 
@@ -782,7 +811,7 @@ EXAMPLES
782
811
  $ eggs export pkg --all
783
812
  ```
784
813
 
785
- _See code: [src/commands/export/pkg.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.7/src/commands/export/pkg.ts)_
814
+ _See code: [src/commands/export/pkg.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.15/src/commands/export/pkg.ts)_
786
815
 
787
816
  ## `eggs export tarballs`
788
817
 
@@ -806,7 +835,7 @@ EXAMPLES
806
835
  $ eggs export tarballs --clean
807
836
  ```
808
837
 
809
- _See code: [src/commands/export/tarballs.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.7/src/commands/export/tarballs.ts)_
838
+ _See code: [src/commands/export/tarballs.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.15/src/commands/export/tarballs.ts)_
810
839
 
811
840
  ## `eggs help [COMMAND]`
812
841
 
@@ -849,7 +878,7 @@ EXAMPLES
849
878
  sudo eggs kill
850
879
  ```
851
880
 
852
- _See code: [src/commands/kill.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.7/src/commands/kill.ts)_
881
+ _See code: [src/commands/kill.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.15/src/commands/kill.ts)_
853
882
 
854
883
  ## `eggs krill`
855
884
 
@@ -890,7 +919,7 @@ EXAMPLES
890
919
  sudo eggs install --chroot
891
920
  ```
892
921
 
893
- _See code: [src/commands/krill.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.7/src/commands/krill.ts)_
922
+ _See code: [src/commands/krill.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.15/src/commands/krill.ts)_
894
923
 
895
924
  ## `eggs love`
896
925
 
@@ -916,7 +945,7 @@ EXAMPLES
916
945
  $ eggs auto
917
946
  ```
918
947
 
919
- _See code: [src/commands/love.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.7/src/commands/love.ts)_
948
+ _See code: [src/commands/love.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.15/src/commands/love.ts)_
920
949
 
921
950
  ## `eggs mom`
922
951
 
@@ -936,7 +965,7 @@ EXAMPLES
936
965
  $ eggs mom
937
966
  ```
938
967
 
939
- _See code: [src/commands/mom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.7/src/commands/mom.ts)_
968
+ _See code: [src/commands/mom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.15/src/commands/mom.ts)_
940
969
 
941
970
  ## `eggs produce`
942
971
 
@@ -989,7 +1018,7 @@ EXAMPLES
989
1018
  sudo eggs produce --basename=colibri
990
1019
  ```
991
1020
 
992
- _See code: [src/commands/produce.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.7/src/commands/produce.ts)_
1021
+ _See code: [src/commands/produce.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.15/src/commands/produce.ts)_
993
1022
 
994
1023
  ## `eggs setup install`
995
1024
 
@@ -1010,7 +1039,7 @@ EXAMPLES
1010
1039
  sudo eggs setup purge # purge all configurations, autocomplete, man, etc installed from penguins-eggs AppImage
1011
1040
  ```
1012
1041
 
1013
- _See code: [src/commands/setup/install.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.7/src/commands/setup/install.ts)_
1042
+ _See code: [src/commands/setup/install.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.15/src/commands/setup/install.ts)_
1014
1043
 
1015
1044
  ## `eggs setup purge`
1016
1045
 
@@ -1031,7 +1060,7 @@ EXAMPLES
1031
1060
  sudo eggs setup purge # purge all configurations, autocomplete, man, etc installed from penguins-eggs AppImage
1032
1061
  ```
1033
1062
 
1034
- _See code: [src/commands/setup/purge.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.7/src/commands/setup/purge.ts)_
1063
+ _See code: [src/commands/setup/purge.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.15/src/commands/setup/purge.ts)_
1035
1064
 
1036
1065
  ## `eggs status`
1037
1066
 
@@ -1052,7 +1081,7 @@ EXAMPLES
1052
1081
  $ eggs status
1053
1082
  ```
1054
1083
 
1055
- _See code: [src/commands/status.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.7/src/commands/status.ts)_
1084
+ _See code: [src/commands/status.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.15/src/commands/status.ts)_
1056
1085
 
1057
1086
  ## `eggs tools clean`
1058
1087
 
@@ -1074,7 +1103,7 @@ EXAMPLES
1074
1103
  sudo eggs tools clean
1075
1104
  ```
1076
1105
 
1077
- _See code: [src/commands/tools/clean.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.7/src/commands/tools/clean.ts)_
1106
+ _See code: [src/commands/tools/clean.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.15/src/commands/tools/clean.ts)_
1078
1107
 
1079
1108
  ## `eggs tools repo`
1080
1109
 
@@ -1100,7 +1129,7 @@ EXAMPLES
1100
1129
  sudo eggs tools repo --remove
1101
1130
  ```
1102
1131
 
1103
- _See code: [src/commands/tools/repo.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.7/src/commands/tools/repo.ts)_
1132
+ _See code: [src/commands/tools/repo.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.15/src/commands/tools/repo.ts)_
1104
1133
 
1105
1134
  ## `eggs tools skel`
1106
1135
 
@@ -1124,7 +1153,7 @@ EXAMPLES
1124
1153
  sudo eggs tools skel --user user-to-be-copied
1125
1154
  ```
1126
1155
 
1127
- _See code: [src/commands/tools/skel.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.7/src/commands/tools/skel.ts)_
1156
+ _See code: [src/commands/tools/skel.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.15/src/commands/tools/skel.ts)_
1128
1157
 
1129
1158
  ## `eggs tools stat`
1130
1159
 
@@ -1150,7 +1179,7 @@ EXAMPLES
1150
1179
  $ eggs tools stat --year
1151
1180
  ```
1152
1181
 
1153
- _See code: [src/commands/tools/stat.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.7/src/commands/tools/stat.ts)_
1182
+ _See code: [src/commands/tools/stat.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.15/src/commands/tools/stat.ts)_
1154
1183
 
1155
1184
  ## `eggs tools yolk`
1156
1185
 
@@ -1171,7 +1200,7 @@ EXAMPLES
1171
1200
  sudo eggs tools yolk
1172
1201
  ```
1173
1202
 
1174
- _See code: [src/commands/tools/yolk.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.7/src/commands/tools/yolk.ts)_
1203
+ _See code: [src/commands/tools/yolk.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.15/src/commands/tools/yolk.ts)_
1175
1204
 
1176
1205
  ## `eggs update`
1177
1206
 
@@ -1192,7 +1221,7 @@ EXAMPLES
1192
1221
  $ eggs update
1193
1222
  ```
1194
1223
 
1195
- _See code: [src/commands/update.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.7/src/commands/update.ts)_
1224
+ _See code: [src/commands/update.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.15/src/commands/update.ts)_
1196
1225
 
1197
1226
  ## `eggs version`
1198
1227
 
@@ -1238,7 +1267,7 @@ EXAMPLES
1238
1267
  $ eggs wardrobe get your-wardrobe
1239
1268
  ```
1240
1269
 
1241
- _See code: [src/commands/wardrobe/get.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.7/src/commands/wardrobe/get.ts)_
1270
+ _See code: [src/commands/wardrobe/get.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.15/src/commands/wardrobe/get.ts)_
1242
1271
 
1243
1272
  ## `eggs wardrobe list [REPO]`
1244
1273
 
@@ -1267,7 +1296,7 @@ EXAMPLES
1267
1296
  $ eggs wardrobe list --distro arch
1268
1297
  ```
1269
1298
 
1270
- _See code: [src/commands/wardrobe/list.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.7/src/commands/wardrobe/list.ts)_
1299
+ _See code: [src/commands/wardrobe/list.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.15/src/commands/wardrobe/list.ts)_
1271
1300
 
1272
1301
  ## `eggs wardrobe show [REPO]`
1273
1302
 
@@ -1297,7 +1326,7 @@ EXAMPLES
1297
1326
  $ eggs wardrobe show accessories/
1298
1327
  ```
1299
1328
 
1300
- _See code: [src/commands/wardrobe/show.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.7/src/commands/wardrobe/show.ts)_
1329
+ _See code: [src/commands/wardrobe/show.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.15/src/commands/wardrobe/show.ts)_
1301
1330
 
1302
1331
  ## `eggs wardrobe wear [REPO]`
1303
1332
 
@@ -1328,7 +1357,7 @@ EXAMPLES
1328
1357
  sudo eggs wardrobe wear wagtail/waydroid
1329
1358
  ```
1330
1359
 
1331
- _See code: [src/commands/wardrobe/wear.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.7/src/commands/wardrobe/wear.ts)_
1360
+ _See code: [src/commands/wardrobe/wear.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.12.15/src/commands/wardrobe/wear.ts)_
1332
1361
  <!-- commandsstop -->
1333
1362
 
1334
1363
  # GUI