penguins-eggs 25.11.21 → 25.11.29
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.
- package/.oclif.manifest.json +53 -41
- package/README.md +146 -64
- package/README.pdf +21400 -3491
- package/addons/eggs/theme/livecd/full.grub.main.cfg +39 -4
- package/addons/eggs/theme/livecd/full.isolinux.main.cfg +47 -4
- package/bin/run.js +11 -0
- package/conf/derivatives.yaml +2 -1
- package/dist/appimage/dependency-manager.d.ts +31 -0
- package/dist/appimage/dependency-manager.js +292 -0
- package/dist/appimage/first-run-check.js +3 -3
- package/dist/bin/run.js +11 -0
- package/dist/classes/cli-autologin.js +1 -1
- package/dist/classes/daddy.js +11 -11
- package/dist/classes/incubation/fisherman-helper/initcpio.d.ts +7 -0
- package/dist/classes/incubation/fisherman-helper/initcpio.js +7 -0
- package/dist/classes/incubation/fisherman.js +0 -2
- package/dist/classes/network.d.ts +1 -1
- package/dist/classes/ovary.d/edit-live-fs.d.ts +1 -1
- package/dist/classes/ovary.d/edit-live-fs.js +129 -93
- package/dist/classes/ovary.d/fertilization.js +1 -1
- package/dist/classes/ovary.d/xorriso-command.js +1 -5
- package/dist/classes/pacman.d.ts +21 -7
- package/dist/classes/pacman.js +53 -32
- package/dist/classes/utils.d.ts +1 -5
- package/dist/classes/utils.js +15 -12
- package/dist/commands/config.js +3 -14
- package/dist/commands/cuckoo.js +1 -1
- package/dist/commands/{setup.d.ts → setup/install.d.ts} +1 -5
- package/dist/commands/setup/install.js +71 -0
- package/dist/commands/setup/purge.d.ts +17 -0
- package/dist/commands/setup/purge.js +71 -0
- package/dist/commands/update.d.ts +15 -0
- package/dist/commands/update.js +74 -6
- package/dist/krill/components/title.js +4 -4
- package/dist/lib/utils.js +0 -19
- package/manpages/doc/man/eggs.1.gz +0 -0
- package/manpages/doc/man/eggs.html +29 -17
- package/package.json +8 -9
- package/scripts/_eggs +35 -7
- package/scripts/eggs.bash +2 -1
- package/dist/appimage/prerequisites.d.ts +0 -34
- package/dist/appimage/prerequisites.js +0 -350
- package/dist/commands/setup.js +0 -90
- package/scripts/appimage-build.sh +0 -152
- package/scripts/appimage-install.sh +0 -43
package/.oclif.manifest.json
CHANGED
|
@@ -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.
|
|
1573
|
+
"version": "25.11.29"
|
|
1562
1574
|
}
|
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
[](https://drive.google.com/drive/folders/19fwjvsZiW0Dspu2Iq-fQN0J-PDbKBlYY)
|
|
8
8
|
[](https://sourceforge.net/projects/penguins-eggs/files/)
|
|
9
9
|
[](https://npmjs.org/package/penguins-eggs)
|
|
10
|
-
[](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,18 @@ 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
|
+
[](https://github.com/pieroproietti/penguins-eggs/releases)
|
|
61
63
|
|
|
64
|
+
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
|
+
|
|
66
|
+
The AppImage will be be automatically configured and renamed as `/usr/bin/eggs`. It's ready to use!
|
|
67
|
+
|
|
68
|
+
`eggs love` to get your system remastered as live ISO.
|
|
69
|
+
|
|
70
|
+
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.
|
|
71
|
+
|
|
72
|
+
## Native packages
|
|
62
73
|
**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
74
|
|
|
64
75
|
## penguins-eggs-25.7.x installation
|
|
@@ -487,35 +498,89 @@ sudo eggs produce --max
|
|
|
487
498
|
> This command will apply differents compression to the ISO file, resulting in a smaller file size or in a longer process. Consult [Penguins Eggs' official guide](https://penguins-eggs.net/docs/Tutorial/eggs-users-guide) for more detailed informations.
|
|
488
499
|
# Commands
|
|
489
500
|
<!-- commands -->
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
501
|
+
- [README](#readme)
|
|
502
|
+
- [Penguin's eggs are generated and new birds are ready to fly...](#penguins-eggs-are-generated-and-new-birds-are-ready-to-fly)
|
|
503
|
+
- [Index](#index)
|
|
504
|
+
- [Links](#links)
|
|
505
|
+
- [Presentation](#presentation)
|
|
506
|
+
- [Installation](#installation)
|
|
507
|
+
- [AppImage](#appimage)
|
|
508
|
+
- [Native packages](#native-packages)
|
|
509
|
+
- [penguins-eggs-25.7.x installation](#penguins-eggs-257x-installation)
|
|
510
|
+
- [using fresh-eggs](#using-fresh-eggs)
|
|
511
|
+
- [Manual installation](#manual-installation)
|
|
512
|
+
- [AlmaLinux, RockyLinux](#almalinux-rockylinux)
|
|
513
|
+
- [AlpineLinux](#alpinelinux)
|
|
514
|
+
- [Arch](#arch)
|
|
515
|
+
- [Debian, Devuan, Ubuntu](#debian-devuan-ubuntu)
|
|
516
|
+
- [Debian 10 Buster, Debian 11 Bullseye](#debian-10-buster-debian-11-bullseye)
|
|
517
|
+
- [Debian 9 Stretch, Ubuntu 18.04 Bionic](#debian-9-stretch-ubuntu-1804-bionic)
|
|
518
|
+
- [Fedora](#fedora)
|
|
519
|
+
- [Manjaro](#manjaro)
|
|
520
|
+
- [Openmanba](#openmanba)
|
|
521
|
+
- [OpenSUSE](#opensuse)
|
|
522
|
+
- [Introduction](#introduction)
|
|
523
|
+
- [Technology](#technology)
|
|
524
|
+
- [Features](#features)
|
|
525
|
+
- [Wardrobe, Themes, and Addons](#wardrobe-themes-and-addons)
|
|
526
|
+
- [Clone/Cryptedclone](#clonecryptedclone)
|
|
527
|
+
- [Calamares and krill](#calamares-and-krill)
|
|
528
|
+
- [Cuckoo](#cuckoo)
|
|
529
|
+
- [Mom and Dad](#mom-and-dad)
|
|
530
|
+
- [Yolk](#yolk)
|
|
531
|
+
- [Packages](#packages)
|
|
532
|
+
- [Debian families](#debian-families)
|
|
533
|
+
- [Install eggs](#install-eggs)
|
|
534
|
+
- [Debian families](#debian-families-1)
|
|
535
|
+
- [Download and install penguins-eggs packages](#download-and-install-penguins-eggs-packages)
|
|
536
|
+
- [Using penguins-eggs-ppa](#using-penguins-eggs-ppa)
|
|
537
|
+
- [Upgrade eggs](#upgrade-eggs)
|
|
538
|
+
- [Arch families](#arch-families)
|
|
539
|
+
- [Arch](#arch-1)
|
|
540
|
+
- [Manjaro](#manjaro-1)
|
|
541
|
+
- [Usage](#usage)
|
|
542
|
+
- [Examples](#examples)
|
|
543
|
+
- [Compression](#compression)
|
|
544
|
+
- [Commands](#commands)
|
|
545
|
+
- [`eggs adapt`](#eggs-adapt)
|
|
546
|
+
- [`eggs autocomplete [SHELL]`](#eggs-autocomplete-shell)
|
|
547
|
+
- [`eggs calamares`](#eggs-calamares)
|
|
548
|
+
- [`eggs config`](#eggs-config)
|
|
549
|
+
- [`eggs cuckoo`](#eggs-cuckoo)
|
|
550
|
+
- [`eggs dad`](#eggs-dad)
|
|
551
|
+
- [`eggs export appimage`](#eggs-export-appimage)
|
|
552
|
+
- [`eggs export iso`](#eggs-export-iso)
|
|
553
|
+
- [`eggs export pkg`](#eggs-export-pkg)
|
|
554
|
+
- [`eggs export tarballs`](#eggs-export-tarballs)
|
|
555
|
+
- [`eggs help [COMMAND]`](#eggs-help-command)
|
|
556
|
+
- [`eggs kill`](#eggs-kill)
|
|
557
|
+
- [`eggs krill`](#eggs-krill)
|
|
558
|
+
- [`eggs love`](#eggs-love)
|
|
559
|
+
- [`eggs mom`](#eggs-mom)
|
|
560
|
+
- [`eggs produce`](#eggs-produce)
|
|
561
|
+
- [`eggs setup install`](#eggs-setup-install)
|
|
562
|
+
- [`eggs setup purge`](#eggs-setup-purge)
|
|
563
|
+
- [`eggs status`](#eggs-status)
|
|
564
|
+
- [`eggs tools clean`](#eggs-tools-clean)
|
|
565
|
+
- [`eggs tools repo`](#eggs-tools-repo)
|
|
566
|
+
- [`eggs tools skel`](#eggs-tools-skel)
|
|
567
|
+
- [`eggs tools stat`](#eggs-tools-stat)
|
|
568
|
+
- [`eggs tools yolk`](#eggs-tools-yolk)
|
|
569
|
+
- [`eggs update`](#eggs-update)
|
|
570
|
+
- [`eggs version`](#eggs-version)
|
|
571
|
+
- [`eggs wardrobe get [REPO]`](#eggs-wardrobe-get-repo)
|
|
572
|
+
- [`eggs wardrobe list [REPO]`](#eggs-wardrobe-list-repo)
|
|
573
|
+
- [`eggs wardrobe show [REPO]`](#eggs-wardrobe-show-repo)
|
|
574
|
+
- [`eggs wardrobe wear [REPO]`](#eggs-wardrobe-wear-repo)
|
|
575
|
+
- [GUI](#gui)
|
|
576
|
+
- [eggsmaker](#eggsmaker)
|
|
577
|
+
- [A project by Jorge Luis Endres.](#a-project-by-jorge-luis-endres)
|
|
578
|
+
- [Book](#book)
|
|
579
|
+
- [That's all, Folks!](#thats-all-folks)
|
|
580
|
+
- [More Information](#more-information)
|
|
581
|
+
- [A word of thanks](#a-word-of-thanks)
|
|
582
|
+
- [Star History](#star-history)
|
|
583
|
+
- [Copyright and licenses](#copyright-and-licenses)
|
|
519
584
|
|
|
520
585
|
## `eggs adapt`
|
|
521
586
|
|
|
@@ -536,7 +601,7 @@ EXAMPLES
|
|
|
536
601
|
$ eggs adapt
|
|
537
602
|
```
|
|
538
603
|
|
|
539
|
-
_See code: [src/commands/adapt.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.
|
|
604
|
+
_See code: [src/commands/adapt.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.29/src/commands/adapt.ts)_
|
|
540
605
|
|
|
541
606
|
## `eggs autocomplete [SHELL]`
|
|
542
607
|
|
|
@@ -600,7 +665,7 @@ EXAMPLES
|
|
|
600
665
|
sudo eggs calamares --remove
|
|
601
666
|
```
|
|
602
667
|
|
|
603
|
-
_See code: [src/commands/calamares.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.
|
|
668
|
+
_See code: [src/commands/calamares.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.29/src/commands/calamares.ts)_
|
|
604
669
|
|
|
605
670
|
## `eggs config`
|
|
606
671
|
|
|
@@ -627,7 +692,7 @@ EXAMPLES
|
|
|
627
692
|
sudo eggs config --clean --nointeractive
|
|
628
693
|
```
|
|
629
694
|
|
|
630
|
-
_See code: [src/commands/config.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.
|
|
695
|
+
_See code: [src/commands/config.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.29/src/commands/config.ts)_
|
|
631
696
|
|
|
632
697
|
## `eggs cuckoo`
|
|
633
698
|
|
|
@@ -648,7 +713,7 @@ EXAMPLES
|
|
|
648
713
|
sudo eggs cuckoo
|
|
649
714
|
```
|
|
650
715
|
|
|
651
|
-
_See code: [src/commands/cuckoo.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.
|
|
716
|
+
_See code: [src/commands/cuckoo.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.29/src/commands/cuckoo.ts)_
|
|
652
717
|
|
|
653
718
|
## `eggs dad`
|
|
654
719
|
|
|
@@ -677,7 +742,7 @@ EXAMPLES
|
|
|
677
742
|
sudo dad --default
|
|
678
743
|
```
|
|
679
744
|
|
|
680
|
-
_See code: [src/commands/dad.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.
|
|
745
|
+
_See code: [src/commands/dad.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.29/src/commands/dad.ts)_
|
|
681
746
|
|
|
682
747
|
## `eggs export appimage`
|
|
683
748
|
|
|
@@ -703,7 +768,7 @@ EXAMPLES
|
|
|
703
768
|
$ eggs export pkg --all
|
|
704
769
|
```
|
|
705
770
|
|
|
706
|
-
_See code: [src/commands/export/appimage.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.
|
|
771
|
+
_See code: [src/commands/export/appimage.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.29/src/commands/export/appimage.ts)_
|
|
707
772
|
|
|
708
773
|
## `eggs export iso`
|
|
709
774
|
|
|
@@ -728,7 +793,7 @@ EXAMPLES
|
|
|
728
793
|
$ eggs export iso --clean
|
|
729
794
|
```
|
|
730
795
|
|
|
731
|
-
_See code: [src/commands/export/iso.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.
|
|
796
|
+
_See code: [src/commands/export/iso.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.29/src/commands/export/iso.ts)_
|
|
732
797
|
|
|
733
798
|
## `eggs export pkg`
|
|
734
799
|
|
|
@@ -755,7 +820,7 @@ EXAMPLES
|
|
|
755
820
|
$ eggs export pkg --all
|
|
756
821
|
```
|
|
757
822
|
|
|
758
|
-
_See code: [src/commands/export/pkg.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.
|
|
823
|
+
_See code: [src/commands/export/pkg.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.29/src/commands/export/pkg.ts)_
|
|
759
824
|
|
|
760
825
|
## `eggs export tarballs`
|
|
761
826
|
|
|
@@ -779,7 +844,7 @@ EXAMPLES
|
|
|
779
844
|
$ eggs export tarballs --clean
|
|
780
845
|
```
|
|
781
846
|
|
|
782
|
-
_See code: [src/commands/export/tarballs.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.
|
|
847
|
+
_See code: [src/commands/export/tarballs.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.29/src/commands/export/tarballs.ts)_
|
|
783
848
|
|
|
784
849
|
## `eggs help [COMMAND]`
|
|
785
850
|
|
|
@@ -822,7 +887,7 @@ EXAMPLES
|
|
|
822
887
|
sudo eggs kill
|
|
823
888
|
```
|
|
824
889
|
|
|
825
|
-
_See code: [src/commands/kill.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.
|
|
890
|
+
_See code: [src/commands/kill.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.29/src/commands/kill.ts)_
|
|
826
891
|
|
|
827
892
|
## `eggs krill`
|
|
828
893
|
|
|
@@ -863,7 +928,7 @@ EXAMPLES
|
|
|
863
928
|
sudo eggs install --chroot
|
|
864
929
|
```
|
|
865
930
|
|
|
866
|
-
_See code: [src/commands/krill.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.
|
|
931
|
+
_See code: [src/commands/krill.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.29/src/commands/krill.ts)_
|
|
867
932
|
|
|
868
933
|
## `eggs love`
|
|
869
934
|
|
|
@@ -889,7 +954,7 @@ EXAMPLES
|
|
|
889
954
|
$ eggs auto
|
|
890
955
|
```
|
|
891
956
|
|
|
892
|
-
_See code: [src/commands/love.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.
|
|
957
|
+
_See code: [src/commands/love.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.29/src/commands/love.ts)_
|
|
893
958
|
|
|
894
959
|
## `eggs mom`
|
|
895
960
|
|
|
@@ -909,7 +974,7 @@ EXAMPLES
|
|
|
909
974
|
$ eggs mom
|
|
910
975
|
```
|
|
911
976
|
|
|
912
|
-
_See code: [src/commands/mom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.
|
|
977
|
+
_See code: [src/commands/mom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.29/src/commands/mom.ts)_
|
|
913
978
|
|
|
914
979
|
## `eggs produce`
|
|
915
980
|
|
|
@@ -962,32 +1027,49 @@ EXAMPLES
|
|
|
962
1027
|
sudo eggs produce --basename=colibri
|
|
963
1028
|
```
|
|
964
1029
|
|
|
965
|
-
_See code: [src/commands/produce.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.
|
|
1030
|
+
_See code: [src/commands/produce.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.29/src/commands/produce.ts)_
|
|
966
1031
|
|
|
967
|
-
## `eggs setup`
|
|
1032
|
+
## `eggs setup install`
|
|
968
1033
|
|
|
969
1034
|
Automatically check and install system prerequisites
|
|
970
1035
|
|
|
971
1036
|
```
|
|
972
1037
|
USAGE
|
|
973
|
-
$ eggs setup
|
|
1038
|
+
$ eggs setup install
|
|
974
1039
|
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
1040
|
+
DESCRIPTION
|
|
1041
|
+
Automatically check and install system prerequisites
|
|
1042
|
+
|
|
1043
|
+
EXAMPLES
|
|
1044
|
+
$ eggs setup # this help
|
|
1045
|
+
|
|
1046
|
+
sudo eggs setup install # install native dependencies, autocomplete, man, etc
|
|
1047
|
+
|
|
1048
|
+
sudo eggs setup purge # purge all configurations, autocomplete, man, etc installed from penguins-eggs AppImage
|
|
1049
|
+
```
|
|
1050
|
+
|
|
1051
|
+
_See code: [src/commands/setup/install.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.29/src/commands/setup/install.ts)_
|
|
1052
|
+
|
|
1053
|
+
## `eggs setup purge`
|
|
1054
|
+
|
|
1055
|
+
Automatically check and install system prerequisites
|
|
1056
|
+
|
|
1057
|
+
```
|
|
1058
|
+
USAGE
|
|
1059
|
+
$ eggs setup purge
|
|
978
1060
|
|
|
979
1061
|
DESCRIPTION
|
|
980
1062
|
Automatically check and install system prerequisites
|
|
981
1063
|
|
|
982
1064
|
EXAMPLES
|
|
983
|
-
|
|
1065
|
+
$ eggs setup # this help
|
|
984
1066
|
|
|
985
|
-
sudo eggs setup
|
|
1067
|
+
sudo eggs setup install # install native dependencies, autocomplete, man, etc
|
|
986
1068
|
|
|
987
|
-
sudo eggs setup
|
|
1069
|
+
sudo eggs setup purge # purge all configurations, autocomplete, man, etc installed from penguins-eggs AppImage
|
|
988
1070
|
```
|
|
989
1071
|
|
|
990
|
-
_See code: [src/commands/setup.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.
|
|
1072
|
+
_See code: [src/commands/setup/purge.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.29/src/commands/setup/purge.ts)_
|
|
991
1073
|
|
|
992
1074
|
## `eggs status`
|
|
993
1075
|
|
|
@@ -1008,7 +1090,7 @@ EXAMPLES
|
|
|
1008
1090
|
$ eggs status
|
|
1009
1091
|
```
|
|
1010
1092
|
|
|
1011
|
-
_See code: [src/commands/status.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.
|
|
1093
|
+
_See code: [src/commands/status.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.29/src/commands/status.ts)_
|
|
1012
1094
|
|
|
1013
1095
|
## `eggs tools clean`
|
|
1014
1096
|
|
|
@@ -1030,7 +1112,7 @@ EXAMPLES
|
|
|
1030
1112
|
sudo eggs tools clean
|
|
1031
1113
|
```
|
|
1032
1114
|
|
|
1033
|
-
_See code: [src/commands/tools/clean.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.
|
|
1115
|
+
_See code: [src/commands/tools/clean.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.29/src/commands/tools/clean.ts)_
|
|
1034
1116
|
|
|
1035
1117
|
## `eggs tools repo`
|
|
1036
1118
|
|
|
@@ -1056,7 +1138,7 @@ EXAMPLES
|
|
|
1056
1138
|
sudo eggs tools repo --remove
|
|
1057
1139
|
```
|
|
1058
1140
|
|
|
1059
|
-
_See code: [src/commands/tools/repo.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.
|
|
1141
|
+
_See code: [src/commands/tools/repo.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.29/src/commands/tools/repo.ts)_
|
|
1060
1142
|
|
|
1061
1143
|
## `eggs tools skel`
|
|
1062
1144
|
|
|
@@ -1080,7 +1162,7 @@ EXAMPLES
|
|
|
1080
1162
|
sudo eggs tools skel --user user-to-be-copied
|
|
1081
1163
|
```
|
|
1082
1164
|
|
|
1083
|
-
_See code: [src/commands/tools/skel.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.
|
|
1165
|
+
_See code: [src/commands/tools/skel.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.29/src/commands/tools/skel.ts)_
|
|
1084
1166
|
|
|
1085
1167
|
## `eggs tools stat`
|
|
1086
1168
|
|
|
@@ -1106,7 +1188,7 @@ EXAMPLES
|
|
|
1106
1188
|
$ eggs tools stat --year
|
|
1107
1189
|
```
|
|
1108
1190
|
|
|
1109
|
-
_See code: [src/commands/tools/stat.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.
|
|
1191
|
+
_See code: [src/commands/tools/stat.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.29/src/commands/tools/stat.ts)_
|
|
1110
1192
|
|
|
1111
1193
|
## `eggs tools yolk`
|
|
1112
1194
|
|
|
@@ -1127,7 +1209,7 @@ EXAMPLES
|
|
|
1127
1209
|
sudo eggs tools yolk
|
|
1128
1210
|
```
|
|
1129
1211
|
|
|
1130
|
-
_See code: [src/commands/tools/yolk.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.
|
|
1212
|
+
_See code: [src/commands/tools/yolk.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.29/src/commands/tools/yolk.ts)_
|
|
1131
1213
|
|
|
1132
1214
|
## `eggs update`
|
|
1133
1215
|
|
|
@@ -1148,7 +1230,7 @@ EXAMPLES
|
|
|
1148
1230
|
$ eggs update
|
|
1149
1231
|
```
|
|
1150
1232
|
|
|
1151
|
-
_See code: [src/commands/update.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.
|
|
1233
|
+
_See code: [src/commands/update.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.29/src/commands/update.ts)_
|
|
1152
1234
|
|
|
1153
1235
|
## `eggs version`
|
|
1154
1236
|
|
|
@@ -1194,7 +1276,7 @@ EXAMPLES
|
|
|
1194
1276
|
$ eggs wardrobe get your-wardrobe
|
|
1195
1277
|
```
|
|
1196
1278
|
|
|
1197
|
-
_See code: [src/commands/wardrobe/get.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.
|
|
1279
|
+
_See code: [src/commands/wardrobe/get.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.29/src/commands/wardrobe/get.ts)_
|
|
1198
1280
|
|
|
1199
1281
|
## `eggs wardrobe list [REPO]`
|
|
1200
1282
|
|
|
@@ -1223,7 +1305,7 @@ EXAMPLES
|
|
|
1223
1305
|
$ eggs wardrobe list --distro arch
|
|
1224
1306
|
```
|
|
1225
1307
|
|
|
1226
|
-
_See code: [src/commands/wardrobe/list.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.
|
|
1308
|
+
_See code: [src/commands/wardrobe/list.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.29/src/commands/wardrobe/list.ts)_
|
|
1227
1309
|
|
|
1228
1310
|
## `eggs wardrobe show [REPO]`
|
|
1229
1311
|
|
|
@@ -1253,7 +1335,7 @@ EXAMPLES
|
|
|
1253
1335
|
$ eggs wardrobe show accessories/
|
|
1254
1336
|
```
|
|
1255
1337
|
|
|
1256
|
-
_See code: [src/commands/wardrobe/show.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.
|
|
1338
|
+
_See code: [src/commands/wardrobe/show.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.29/src/commands/wardrobe/show.ts)_
|
|
1257
1339
|
|
|
1258
1340
|
## `eggs wardrobe wear [REPO]`
|
|
1259
1341
|
|
|
@@ -1284,7 +1366,7 @@ EXAMPLES
|
|
|
1284
1366
|
sudo eggs wardrobe wear wagtail/waydroid
|
|
1285
1367
|
```
|
|
1286
1368
|
|
|
1287
|
-
_See code: [src/commands/wardrobe/wear.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.
|
|
1369
|
+
_See code: [src/commands/wardrobe/wear.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.11.29/src/commands/wardrobe/wear.ts)_
|
|
1288
1370
|
<!-- commandsstop -->
|
|
1289
1371
|
|
|
1290
1372
|
# GUI
|