penguins-eggs 9.0.35 → 9.1.11
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/README.md +136 -71
- package/assets/leaves.svg +1 -0
- package/assets/live-installer/com.github.pieroproietti.penguins-eggs.policy +25 -0
- package/assets/live-installer/filesystem.packages-remove +49 -0
- package/assets/penguins-live-installer.desktop +27 -0
- package/conf/distros/buster/calamares/modules/bootloader.yml +3 -1
- package/conf/eggs.yaml +9 -2
- package/lib/classes/bleach.js +2 -2
- package/lib/classes/compressors.js +1 -1
- package/lib/classes/daddy.js +28 -28
- package/lib/classes/distro.d.ts +1 -1
- package/lib/classes/distro.js +18 -4
- package/lib/classes/family/archlinux.js +4 -4
- package/lib/classes/family/debian.d.ts +4 -0
- package/lib/classes/family/debian.js +11 -4
- package/lib/classes/family/fedora.js +4 -4
- package/lib/classes/family/suse.js +4 -4
- package/lib/classes/i18n.d.ts +28 -4
- package/lib/classes/i18n.js +112 -84
- package/lib/classes/incubation/branding.js +13 -7
- package/lib/classes/incubation/distros/bionic.js +1 -1
- package/lib/classes/incubation/distros/buster.js +1 -1
- package/lib/classes/incubation/distros/focal.js +1 -1
- package/lib/classes/incubation/distros/jessie.js +1 -1
- package/lib/classes/incubation/distros/rolling.js +1 -1
- package/lib/classes/incubation/fisherman-helper/displaymanager.js +1 -1
- package/lib/classes/incubation/fisherman-helper/packages.js +1 -1
- package/lib/classes/incubation/fisherman.js +5 -5
- package/lib/classes/incubation/incubator.js +4 -4
- package/lib/classes/incubation/installer.js +2 -2
- package/lib/classes/initrd.js +2 -2
- package/lib/classes/keyboards.d.ts +45 -0
- package/lib/classes/keyboards.js +196 -0
- package/lib/classes/krill_install.d.ts +4 -0
- package/lib/classes/krill_install.js +28 -10
- package/lib/classes/krill_prepare.d.ts +4 -0
- package/lib/classes/krill_prepare.js +56 -77
- package/lib/classes/locales.d.ts +14 -0
- package/lib/classes/locales.js +54 -0
- package/lib/classes/n8.js +1 -1
- package/lib/classes/ovary.d.ts +6 -0
- package/lib/classes/ovary.js +38 -24
- package/lib/classes/pacman.js +19 -19
- package/lib/classes/pve-live.js +3 -3
- package/lib/classes/settings.d.ts +6 -0
- package/lib/classes/settings.js +13 -16
- package/lib/classes/sources_list.d.ts +27 -0
- package/lib/classes/sources_list.js +103 -0
- package/lib/classes/systemctl.js +1 -1
- package/lib/classes/tailor.d.ts +41 -0
- package/lib/classes/tailor.js +356 -0
- package/lib/classes/tools.js +4 -4
- package/lib/classes/users.js +1 -1
- package/lib/classes/utils.d.ts +10 -0
- package/lib/classes/utils.js +39 -19
- package/lib/classes/xdg.d.ts +2 -1
- package/lib/classes/xdg.js +52 -111
- package/lib/classes/yolk.js +5 -5
- package/lib/commands/adapt.d.ts +0 -1
- package/lib/commands/adapt.js +2 -2
- package/lib/commands/analyze.js +6 -3
- package/lib/commands/calamares.js +4 -4
- package/lib/commands/config.d.ts +0 -1
- package/lib/commands/config.js +12 -7
- package/lib/commands/dad.js +5 -2
- package/lib/commands/export/deb.js +2 -2
- package/lib/commands/export/docs.js +2 -2
- package/lib/commands/export/iso.js +2 -2
- package/lib/commands/info.js +2 -2
- package/lib/commands/install.d.ts +0 -1
- package/lib/commands/install.js +11 -8
- package/lib/commands/kill.js +6 -3
- package/lib/commands/mom.js +2 -2
- package/lib/commands/produce.d.ts +0 -1
- package/lib/commands/produce.js +13 -10
- package/lib/commands/remove.js +5 -2
- package/lib/commands/syncfrom.d.ts +0 -1
- package/lib/commands/syncfrom.js +6 -3
- package/lib/commands/syncto.d.ts +0 -1
- package/lib/commands/syncto.js +7 -4
- package/lib/commands/tools/clean.d.ts +0 -1
- package/lib/commands/tools/clean.js +11 -6
- package/lib/commands/tools/locales.js +12 -4
- package/lib/commands/tools/skel.d.ts +0 -1
- package/lib/commands/tools/skel.js +6 -3
- package/lib/commands/tools/stat.d.ts +0 -1
- package/lib/commands/tools/stat.js +4 -4
- package/lib/commands/tools/yolk.js +7 -4
- package/lib/commands/update.d.ts +0 -2
- package/lib/commands/update.js +12 -58
- package/lib/commands/wardrobe/get.d.ts +17 -0
- package/lib/commands/wardrobe/get.js +43 -0
- package/lib/commands/wardrobe/ironing.d.ts +15 -0
- package/lib/commands/wardrobe/ironing.js +125 -0
- package/lib/commands/wardrobe/list.d.ts +17 -0
- package/lib/commands/wardrobe/list.js +81 -0
- package/lib/commands/wardrobe/show.d.ts +19 -0
- package/lib/commands/wardrobe/show.js +71 -0
- package/lib/commands/wardrobe/wear.d.ts +20 -0
- package/lib/commands/wardrobe/wear.js +79 -0
- package/lib/components/elements/information.js +29 -25
- package/lib/components/elements/steps.js +1 -1
- package/lib/components/elements/title.js +5 -4
- package/lib/components/finished.js +6 -5
- package/lib/components/install.js +5 -5
- package/lib/components/keyboard.js +5 -8
- package/lib/components/location.js +5 -5
- package/lib/components/network.js +6 -5
- package/lib/components/partitions.js +5 -5
- package/lib/components/summary.js +5 -5
- package/lib/components/users.js +5 -5
- package/lib/components/welcome.js +7 -7
- package/lib/interfaces/i-costume.d.ts +27 -0
- package/lib/interfaces/i-costume.js +2 -0
- package/lib/interfaces/i-krill.d.ts +1 -0
- package/lib/interfaces/i-materia.d.ts +32 -0
- package/lib/interfaces/i-materia.js +2 -0
- package/lib/interfaces/i-packages.d.ts +13 -0
- package/lib/interfaces/i-packages.js +2 -0
- package/lib/interfaces/i-xkb-model.d.ts +17 -0
- package/lib/interfaces/i-xkb-model.js +2 -0
- package/lib/interfaces/index.d.ts +2 -0
- package/lib/lib/cli-autologin.js +3 -3
- package/lib/lib/select_address_type.js +1 -1
- package/lib/lib/select_filesystem_type.js +2 -2
- package/lib/lib/select_installation_device.js +1 -1
- package/lib/lib/select_interface.js +1 -1
- package/lib/lib/select_keyboard_layout.d.ts +1 -28
- package/lib/lib/select_keyboard_layout.js +18 -33
- package/lib/lib/select_keyboard_model.d.ts +4 -0
- package/lib/lib/select_keyboard_model.js +36 -0
- package/lib/lib/select_keyboard_option.d.ts +4 -0
- package/lib/lib/select_keyboard_option.js +36 -0
- package/lib/lib/select_keyboard_variant.d.ts +1 -5
- package/lib/lib/select_keyboard_variant.js +32 -5
- package/lib/lib/select_languages.d.ts +1 -1
- package/lib/lib/select_languages.js +8 -7
- package/lib/lib/select_regions.d.ts +1 -1
- package/lib/lib/select_regions.js +2 -2
- package/lib/lib/select_user_swap_choice.js +2 -2
- package/oclif.manifest.json +1 -1
- package/package.json +19 -20
- package/scripts/_eggs +54 -16
- package/scripts/eggs.bash +9 -5
- package/scripts/mom-cli.sh +66 -0
- package/scripts/resy.sh +8 -0
- package/assets/penguins-clinstaller.desktop +0 -24
- package/assets/penguins-minstall.desktop +0 -95
- package/conf/distros/buster/locales/locale.gen.template +0 -10
- package/conf/distros/buster/locales/locale.template +0 -11
- package/conf/distros/focal/locale.gen.template +0 -8
- package/lib/classes/basket.d.ts +0 -22
- package/lib/classes/basket.js +0 -114
- package/lib/commands/bro.d.ts +0 -14
- package/lib/commands/bro.js +0 -31
package/README.md
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
[](https://vshymanskyy.github.io/StandWithUkraine)
|
|
2
|
+
|
|
1
3
|
penguins-eggs
|
|
2
4
|
=============
|
|
3
5
|
|
|
@@ -70,6 +72,13 @@ I suggest to leave the default values unchanged during the development of your r
|
|
|
70
72
|
### yolk
|
|
71
73
|
yolk so called - staying on the subject of eggs - is a local repository included in the livecd that contains a minimum of indispensable packages during installation. Thanks to yolk, you can safely install your system without the need of an active internet connection.
|
|
72
74
|
|
|
75
|
+
### wardrobe
|
|
76
|
+
wardrobe was added to eggs on april 2022, it's is a way to guide and consolidate the processo of creating a custom version of Linux, starting from a CLI system. Actually - after very short time . all my personal editions are created using wardrobe. In this way I can organize, consolidate and manage better my work.
|
|
77
|
+
|
|
78
|
+
I hope peoples will be interested in wardrobe and you will end to fork the main repository and add your customizations: together will be possibile to make great steps impossible for an alone developer.
|
|
79
|
+
|
|
80
|
+
You can read more in wardrobe on [penguin's eggs blog](https://penguins-eggs.net/2022/04/12/wardrobe-colibri-duck-eagle-and-owl/). The result of mine customizations are under [ISOs/Debian/bullseys](https://sourceforge.net/projects/penguins-eggs/files/iso/debian/bullseye/) on my sourgeforce page.
|
|
81
|
+
|
|
73
82
|
## What distributions can I use?
|
|
74
83
|
eggs was born on Debian strecth/buster, but actually full support Debian from jessie to bookworm/sid, Devuan beowulf, chimaera, daedalus, Ubuntu bionic, focal, , hirsute, impish, jammy and all derivatives including Linux mint, Deepin, neon KDE, etc. I continuisly try it against Debian various versions, before releases, I tried it successfully in LMDE 4 debbie, and deepin. eggs, generally must work with all the derivates from Debian, Devuan and Ubuntu.
|
|
75
84
|
|
|
@@ -114,7 +123,6 @@ sudo dpkg -i eggs_8.17.17-1_i386.deb
|
|
|
114
123
|
## Upgrade eggs
|
|
115
124
|
If you are using penguins-eggs-ppa You can ugrade eggs as others packages just: **sudo apt upgrade**.
|
|
116
125
|
|
|
117
|
-
|
|
118
126
|
### Upgrade from basket
|
|
119
127
|
If you are using not the penguins-eggs-ppa, the fastest way to use sudo eggs update and choose basket. Eggs let you to select the last 4 versions on the [basket](https://sourceforge.net/projects/penguins-eggs/files/packages-deb/) and install it.
|
|
120
128
|
|
|
@@ -133,7 +141,7 @@ $ npm install -g penguins-eggs
|
|
|
133
141
|
$ eggs COMMAND
|
|
134
142
|
running command...
|
|
135
143
|
$ eggs (--version|-v)
|
|
136
|
-
penguins-eggs/9.
|
|
144
|
+
penguins-eggs/9.1.11 linux-x64 node-v16.14.2
|
|
137
145
|
$ eggs --help [COMMAND]
|
|
138
146
|
USAGE
|
|
139
147
|
$ eggs COMMAND
|
|
@@ -146,7 +154,6 @@ USAGE
|
|
|
146
154
|
* [`eggs adapt`](#eggs-adapt)
|
|
147
155
|
* [`eggs analyze`](#eggs-analyze)
|
|
148
156
|
* [`eggs autocomplete [SHELL]`](#eggs-autocomplete-shell)
|
|
149
|
-
* [`eggs bro`](#eggs-bro)
|
|
150
157
|
* [`eggs calamares`](#eggs-calamares)
|
|
151
158
|
* [`eggs config`](#eggs-config)
|
|
152
159
|
* [`eggs dad`](#eggs-dad)
|
|
@@ -169,6 +176,11 @@ USAGE
|
|
|
169
176
|
* [`eggs tools yolk`](#eggs-tools-yolk)
|
|
170
177
|
* [`eggs update`](#eggs-update)
|
|
171
178
|
* [`eggs version`](#eggs-version)
|
|
179
|
+
* [`eggs wardrobe get [REPO]`](#eggs-wardrobe-get-repo)
|
|
180
|
+
* [`eggs wardrobe ironing [COSTUME]`](#eggs-wardrobe-ironing-costume)
|
|
181
|
+
* [`eggs wardrobe list [WARDROBE]`](#eggs-wardrobe-list-wardrobe)
|
|
182
|
+
* [`eggs wardrobe show [COSTUME]`](#eggs-wardrobe-show-costume)
|
|
183
|
+
* [`eggs wardrobe wear [COSTUME]`](#eggs-wardrobe-wear-costume)
|
|
172
184
|
|
|
173
185
|
## `eggs adapt`
|
|
174
186
|
|
|
@@ -184,16 +196,13 @@ FLAGS
|
|
|
184
196
|
|
|
185
197
|
DESCRIPTION
|
|
186
198
|
adapt monitor resolution for VM only
|
|
187
|
-
|
|
188
|
-
ALIASES
|
|
189
|
-
$ eggs adjust
|
|
190
199
|
```
|
|
191
200
|
|
|
192
|
-
_See code: [src/commands/adapt.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.
|
|
201
|
+
_See code: [src/commands/adapt.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.1.11/src/commands/adapt.ts)_
|
|
193
202
|
|
|
194
203
|
## `eggs analyze`
|
|
195
204
|
|
|
196
|
-
analyze
|
|
205
|
+
analyze for syncto
|
|
197
206
|
|
|
198
207
|
```
|
|
199
208
|
USAGE
|
|
@@ -204,13 +213,13 @@ FLAGS
|
|
|
204
213
|
-v, --verbose verbose
|
|
205
214
|
|
|
206
215
|
DESCRIPTION
|
|
207
|
-
analyze
|
|
216
|
+
analyze for syncto
|
|
208
217
|
|
|
209
218
|
EXAMPLES
|
|
210
219
|
$ sudo eggs analyze
|
|
211
220
|
```
|
|
212
221
|
|
|
213
|
-
_See code: [src/commands/analyze.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.
|
|
222
|
+
_See code: [src/commands/analyze.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.1.11/src/commands/analyze.ts)_
|
|
214
223
|
|
|
215
224
|
## `eggs autocomplete [SHELL]`
|
|
216
225
|
|
|
@@ -241,23 +250,6 @@ EXAMPLES
|
|
|
241
250
|
|
|
242
251
|
_See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/v1.2.0/src/commands/autocomplete/index.ts)_
|
|
243
252
|
|
|
244
|
-
## `eggs bro`
|
|
245
|
-
|
|
246
|
-
bro: waydroid helper
|
|
247
|
-
|
|
248
|
-
```
|
|
249
|
-
USAGE
|
|
250
|
-
$ eggs bro [-h]
|
|
251
|
-
|
|
252
|
-
FLAGS
|
|
253
|
-
-h, --help Show CLI help.
|
|
254
|
-
|
|
255
|
-
DESCRIPTION
|
|
256
|
-
bro: waydroid helper
|
|
257
|
-
```
|
|
258
|
-
|
|
259
|
-
_See code: [src/commands/bro.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.35/src/commands/bro.ts)_
|
|
260
|
-
|
|
261
253
|
## `eggs calamares`
|
|
262
254
|
|
|
263
255
|
calamares or install or configure it
|
|
@@ -285,7 +277,7 @@ EXAMPLES
|
|
|
285
277
|
install calamares and create it's configuration's files
|
|
286
278
|
```
|
|
287
279
|
|
|
288
|
-
_See code: [src/commands/calamares.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.
|
|
280
|
+
_See code: [src/commands/calamares.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.1.11/src/commands/calamares.ts)_
|
|
289
281
|
|
|
290
282
|
## `eggs config`
|
|
291
283
|
|
|
@@ -304,15 +296,12 @@ FLAGS
|
|
|
304
296
|
DESCRIPTION
|
|
305
297
|
Configure and install prerequisites deb packages to run it
|
|
306
298
|
|
|
307
|
-
ALIASES
|
|
308
|
-
$ eggs prerequisites
|
|
309
|
-
|
|
310
299
|
EXAMPLES
|
|
311
300
|
~$ sudo eggs config
|
|
312
301
|
Configure and install prerequisites deb packages to run it
|
|
313
302
|
```
|
|
314
303
|
|
|
315
|
-
_See code: [src/commands/config.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.
|
|
304
|
+
_See code: [src/commands/config.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.1.11/src/commands/config.ts)_
|
|
316
305
|
|
|
317
306
|
## `eggs dad`
|
|
318
307
|
|
|
@@ -332,7 +321,7 @@ DESCRIPTION
|
|
|
332
321
|
ask help from daddy - configuration helper
|
|
333
322
|
```
|
|
334
323
|
|
|
335
|
-
_See code: [src/commands/dad.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.
|
|
324
|
+
_See code: [src/commands/dad.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.1.11/src/commands/dad.ts)_
|
|
336
325
|
|
|
337
326
|
## `eggs export deb`
|
|
338
327
|
|
|
@@ -405,11 +394,11 @@ DESCRIPTION
|
|
|
405
394
|
Display help for eggs.
|
|
406
395
|
```
|
|
407
396
|
|
|
408
|
-
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v5.1.
|
|
397
|
+
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v5.1.12/src/commands/help.ts)_
|
|
409
398
|
|
|
410
399
|
## `eggs info`
|
|
411
400
|
|
|
412
|
-
|
|
401
|
+
informations about eggs configuration
|
|
413
402
|
|
|
414
403
|
```
|
|
415
404
|
USAGE
|
|
@@ -420,10 +409,10 @@ FLAGS
|
|
|
420
409
|
-v, --verbose
|
|
421
410
|
|
|
422
411
|
DESCRIPTION
|
|
423
|
-
|
|
412
|
+
informations about eggs configuration
|
|
424
413
|
```
|
|
425
414
|
|
|
426
|
-
_See code: [src/commands/info.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.
|
|
415
|
+
_See code: [src/commands/info.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.1.11/src/commands/info.ts)_
|
|
427
416
|
|
|
428
417
|
## `eggs install`
|
|
429
418
|
|
|
@@ -443,16 +432,12 @@ FLAGS
|
|
|
443
432
|
DESCRIPTION
|
|
444
433
|
command-line system installer - the egg became a penguin!
|
|
445
434
|
|
|
446
|
-
ALIASES
|
|
447
|
-
$ eggs hatch
|
|
448
|
-
$ eggs krill
|
|
449
|
-
|
|
450
435
|
EXAMPLES
|
|
451
436
|
$ eggs install
|
|
452
437
|
Install the system using GUI or CLI installer
|
|
453
438
|
```
|
|
454
439
|
|
|
455
|
-
_See code: [src/commands/install.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.
|
|
440
|
+
_See code: [src/commands/install.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.1.11/src/commands/install.ts)_
|
|
456
441
|
|
|
457
442
|
## `eggs kill`
|
|
458
443
|
|
|
@@ -474,7 +459,7 @@ EXAMPLES
|
|
|
474
459
|
kill the eggs/free the nest
|
|
475
460
|
```
|
|
476
461
|
|
|
477
|
-
_See code: [src/commands/kill.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.
|
|
462
|
+
_See code: [src/commands/kill.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.1.11/src/commands/kill.ts)_
|
|
478
463
|
|
|
479
464
|
## `eggs mom`
|
|
480
465
|
|
|
@@ -491,7 +476,7 @@ DESCRIPTION
|
|
|
491
476
|
ask for mommy - gui helper
|
|
492
477
|
```
|
|
493
478
|
|
|
494
|
-
_See code: [src/commands/mom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.
|
|
479
|
+
_See code: [src/commands/mom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.1.11/src/commands/mom.ts)_
|
|
495
480
|
|
|
496
481
|
## `eggs produce`
|
|
497
482
|
|
|
@@ -520,10 +505,6 @@ FLAGS
|
|
|
520
505
|
DESCRIPTION
|
|
521
506
|
produce a live image from your system whithout your data
|
|
522
507
|
|
|
523
|
-
ALIASES
|
|
524
|
-
$ eggs spawn
|
|
525
|
-
$ eggs lay
|
|
526
|
-
|
|
527
508
|
EXAMPLES
|
|
528
509
|
$ sudo eggs produce
|
|
529
510
|
produce an ISO called [hostname]-[arch]-YYYY-MM-DD_HHMM.iso, compressed xz (standard compression).
|
|
@@ -556,7 +537,7 @@ EXAMPLES
|
|
|
556
537
|
in /home/eggs/ovarium and you can customize all you need
|
|
557
538
|
```
|
|
558
539
|
|
|
559
|
-
_See code: [src/commands/produce.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.
|
|
540
|
+
_See code: [src/commands/produce.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.1.11/src/commands/produce.ts)_
|
|
560
541
|
|
|
561
542
|
## `eggs remove`
|
|
562
543
|
|
|
@@ -586,7 +567,7 @@ EXAMPLES
|
|
|
586
567
|
remove eggs, eggs configurations, packages dependencies
|
|
587
568
|
```
|
|
588
569
|
|
|
589
|
-
_See code: [src/commands/remove.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.
|
|
570
|
+
_See code: [src/commands/remove.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.1.11/src/commands/remove.ts)_
|
|
590
571
|
|
|
591
572
|
## `eggs syncfrom`
|
|
592
573
|
|
|
@@ -606,14 +587,11 @@ FLAGS
|
|
|
606
587
|
DESCRIPTION
|
|
607
588
|
Restore users, server and datas from luks-eggs-backup
|
|
608
589
|
|
|
609
|
-
ALIASES
|
|
610
|
-
$ eggs restore
|
|
611
|
-
|
|
612
590
|
EXAMPLES
|
|
613
591
|
$ sudo eggs restore
|
|
614
592
|
```
|
|
615
593
|
|
|
616
|
-
_See code: [src/commands/syncfrom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.
|
|
594
|
+
_See code: [src/commands/syncfrom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.1.11/src/commands/syncfrom.ts)_
|
|
617
595
|
|
|
618
596
|
## `eggs syncto`
|
|
619
597
|
|
|
@@ -632,14 +610,11 @@ FLAGS
|
|
|
632
610
|
DESCRIPTION
|
|
633
611
|
Backup users, server and datas to luks-eggs-backup
|
|
634
612
|
|
|
635
|
-
ALIASES
|
|
636
|
-
$ eggs backup
|
|
637
|
-
|
|
638
613
|
EXAMPLES
|
|
639
614
|
$ sudo eggs syncto
|
|
640
615
|
```
|
|
641
616
|
|
|
642
|
-
_See code: [src/commands/syncto.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.
|
|
617
|
+
_See code: [src/commands/syncto.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.1.11/src/commands/syncto.ts)_
|
|
643
618
|
|
|
644
619
|
## `eggs tools clean`
|
|
645
620
|
|
|
@@ -655,9 +630,6 @@ FLAGS
|
|
|
655
630
|
|
|
656
631
|
DESCRIPTION
|
|
657
632
|
clean system log, apt, etc
|
|
658
|
-
|
|
659
|
-
ALIASES
|
|
660
|
-
$ eggs clean
|
|
661
633
|
```
|
|
662
634
|
|
|
663
635
|
## `eggs tools locales`
|
|
@@ -693,9 +665,6 @@ FLAGS
|
|
|
693
665
|
DESCRIPTION
|
|
694
666
|
update skel from home configuration
|
|
695
667
|
|
|
696
|
-
ALIASES
|
|
697
|
-
$ eggs skel
|
|
698
|
-
|
|
699
668
|
EXAMPLES
|
|
700
669
|
$ eggs skel --user mauro
|
|
701
670
|
desktop configuration of user mauro will get used as default
|
|
@@ -716,9 +685,6 @@ FLAGS
|
|
|
716
685
|
|
|
717
686
|
DESCRIPTION
|
|
718
687
|
get statistics from sourceforge
|
|
719
|
-
|
|
720
|
-
ALIASES
|
|
721
|
-
$ eggs stat
|
|
722
688
|
```
|
|
723
689
|
|
|
724
690
|
## `eggs tools yolk`
|
|
@@ -746,11 +712,9 @@ update the penguin's eggs tool
|
|
|
746
712
|
|
|
747
713
|
```
|
|
748
714
|
USAGE
|
|
749
|
-
$ eggs update [-h] [-
|
|
715
|
+
$ eggs update [-h] [-v]
|
|
750
716
|
|
|
751
717
|
FLAGS
|
|
752
|
-
-a, --apt if eggs package is .deb, update from distro repositories
|
|
753
|
-
-b, --basket if eggs package is .deb, update from eggs basket
|
|
754
718
|
-h, --help Show CLI help.
|
|
755
719
|
-v, --verbose verbose
|
|
756
720
|
|
|
@@ -762,7 +726,7 @@ EXAMPLES
|
|
|
762
726
|
update/upgrade the penguin's eggs tool
|
|
763
727
|
```
|
|
764
728
|
|
|
765
|
-
_See code: [src/commands/update.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.
|
|
729
|
+
_See code: [src/commands/update.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.1.11/src/commands/update.ts)_
|
|
766
730
|
|
|
767
731
|
## `eggs version`
|
|
768
732
|
|
|
@@ -772,6 +736,107 @@ USAGE
|
|
|
772
736
|
```
|
|
773
737
|
|
|
774
738
|
_See code: [@oclif/plugin-version](https://github.com/oclif/plugin-version/blob/v1.0.4/src/commands/version.ts)_
|
|
739
|
+
|
|
740
|
+
## `eggs wardrobe get [REPO]`
|
|
741
|
+
|
|
742
|
+
get warorobe
|
|
743
|
+
|
|
744
|
+
```
|
|
745
|
+
USAGE
|
|
746
|
+
$ eggs wardrobe get [REPO] [-v] [-h]
|
|
747
|
+
|
|
748
|
+
ARGUMENTS
|
|
749
|
+
REPO repository to get
|
|
750
|
+
|
|
751
|
+
FLAGS
|
|
752
|
+
-h, --help Show CLI help.
|
|
753
|
+
-v, --verbose
|
|
754
|
+
|
|
755
|
+
DESCRIPTION
|
|
756
|
+
get warorobe
|
|
757
|
+
```
|
|
758
|
+
|
|
759
|
+
## `eggs wardrobe ironing [COSTUME]`
|
|
760
|
+
|
|
761
|
+
ordered show of costumes or accessories in wardrobe
|
|
762
|
+
|
|
763
|
+
```
|
|
764
|
+
USAGE
|
|
765
|
+
$ eggs wardrobe ironing [COSTUME] [-w <value>] [-v] [-h]
|
|
766
|
+
|
|
767
|
+
ARGUMENTS
|
|
768
|
+
COSTUME costume
|
|
769
|
+
|
|
770
|
+
FLAGS
|
|
771
|
+
-h, --help Show CLI help.
|
|
772
|
+
-v, --verbose
|
|
773
|
+
-w, --wardrobe=<value> wardrobe
|
|
774
|
+
|
|
775
|
+
DESCRIPTION
|
|
776
|
+
ordered show of costumes or accessories in wardrobe
|
|
777
|
+
```
|
|
778
|
+
|
|
779
|
+
## `eggs wardrobe list [WARDROBE]`
|
|
780
|
+
|
|
781
|
+
list costumes and accessoires in wardrobe
|
|
782
|
+
|
|
783
|
+
```
|
|
784
|
+
USAGE
|
|
785
|
+
$ eggs wardrobe list [WARDROBE] [-v] [-h]
|
|
786
|
+
|
|
787
|
+
ARGUMENTS
|
|
788
|
+
WARDROBE wardrobe
|
|
789
|
+
|
|
790
|
+
FLAGS
|
|
791
|
+
-h, --help Show CLI help.
|
|
792
|
+
-v, --verbose
|
|
793
|
+
|
|
794
|
+
DESCRIPTION
|
|
795
|
+
list costumes and accessoires in wardrobe
|
|
796
|
+
```
|
|
797
|
+
|
|
798
|
+
## `eggs wardrobe show [COSTUME]`
|
|
799
|
+
|
|
800
|
+
show costumes/accessories in wardrobe
|
|
801
|
+
|
|
802
|
+
```
|
|
803
|
+
USAGE
|
|
804
|
+
$ eggs wardrobe show [COSTUME] [-w <value>] [-j] [-v] [-h]
|
|
805
|
+
|
|
806
|
+
ARGUMENTS
|
|
807
|
+
COSTUME costume
|
|
808
|
+
|
|
809
|
+
FLAGS
|
|
810
|
+
-h, --help Show CLI help.
|
|
811
|
+
-j, --json output JSON
|
|
812
|
+
-v, --verbose
|
|
813
|
+
-w, --wardrobe=<value> wardrobe
|
|
814
|
+
|
|
815
|
+
DESCRIPTION
|
|
816
|
+
show costumes/accessories in wardrobe
|
|
817
|
+
```
|
|
818
|
+
|
|
819
|
+
## `eggs wardrobe wear [COSTUME]`
|
|
820
|
+
|
|
821
|
+
wear costume/accessories from wardrobe
|
|
822
|
+
|
|
823
|
+
```
|
|
824
|
+
USAGE
|
|
825
|
+
$ eggs wardrobe wear [COSTUME] [-w <value>] [-n] [-s] [-v] [-h]
|
|
826
|
+
|
|
827
|
+
ARGUMENTS
|
|
828
|
+
COSTUME costume
|
|
829
|
+
|
|
830
|
+
FLAGS
|
|
831
|
+
-h, --help Show CLI help.
|
|
832
|
+
-n, --no_accessories not install accessories
|
|
833
|
+
-s, --silent
|
|
834
|
+
-v, --verbose
|
|
835
|
+
-w, --wardrobe=<value> wardrobe
|
|
836
|
+
|
|
837
|
+
DESCRIPTION
|
|
838
|
+
wear costume/accessories from wardrobe
|
|
839
|
+
```
|
|
775
840
|
<!-- commandsstop -->
|
|
776
841
|
|
|
777
842
|
# Terminal samples
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 485.82 330.37"><defs><style>.cls-1{fill:#205c2e;}</style></defs><title>Wikimania2019_icon</title><path class="cls-1" d="M101,256.56c53.44,78.12,126.28,76.54,155.64,72.09-31.9-6.57-69.7-25-100.89-70.61C102.29,179.92,29.44,181.51.08,186,32,192.52,69.79,211,101,256.56Z"/><path class="cls-1" d="M157.34,125.91C293.09,131.06,338.87,40.11,352.42,0,323,33.25,274.42,63,195.2,60,59.48,54.84,13.69,145.75.13,185.87l0,0C29.58,152.62,78.16,122.92,157.34,125.91Z"/><path class="cls-1" d="M.11,185.94c53.4-11.08,123.32-5.77,200,51.11,131.55,97.53,243.09,43.47,285.66,15.09-53.41,11.11-123.38,5.83-200.16-51.09-131.39-97.4-242.81-43.6-285.5-15.2l0,0L0,186H.11Z"/></svg>
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!-- SPDX-FileCopyrightText: no
|
|
3
|
+
SPDX-License-Identifier: CC0-1.0
|
|
4
|
+
-->
|
|
5
|
+
<!DOCTYPE policyconfig PUBLIC
|
|
6
|
+
"-//freedesktop//DTD PolicyKit Policy Configuration 1.0//EN"
|
|
7
|
+
"http://www.freedesktop.org/standards/PolicyKit/1/policyconfig.dtd">
|
|
8
|
+
<policyconfig>
|
|
9
|
+
|
|
10
|
+
<vendor>penguins-eggs</vendor>
|
|
11
|
+
<vendor_url>com.github.pieroproietti.penguins-eggs</vendor_url>
|
|
12
|
+
|
|
13
|
+
<action id="com.github.pieroproietti.penguins-eggs.pkexec.run">
|
|
14
|
+
<description>Run Installer</description>
|
|
15
|
+
<message>Authentication is required to run the installation program</message>
|
|
16
|
+
<icon_name>drive-harddisk</icon_name>
|
|
17
|
+
<defaults>
|
|
18
|
+
<allow_any>no</allow_any>
|
|
19
|
+
<allow_inactive>no</allow_inactive>
|
|
20
|
+
<allow_active>auth_admin</allow_active>
|
|
21
|
+
</defaults>
|
|
22
|
+
<annotate key="org.freedesktop.policykit.exec.path">/usr/bin/live-installer</annotate>
|
|
23
|
+
<annotate key="org.freedesktop.policykit.exec.allow_gui">true</annotate>
|
|
24
|
+
</action>
|
|
25
|
+
</policyconfig>
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
boot-repair
|
|
2
|
+
boot-sav
|
|
3
|
+
boot-sav-extra
|
|
4
|
+
circle-flags-svg
|
|
5
|
+
glade2script
|
|
6
|
+
glade2script-python3
|
|
7
|
+
gparted
|
|
8
|
+
gparted-common
|
|
9
|
+
imagemagick
|
|
10
|
+
imagemagick-6-common
|
|
11
|
+
imagemagick-6.q16
|
|
12
|
+
insserv
|
|
13
|
+
isoquery
|
|
14
|
+
libde265-0:amd64
|
|
15
|
+
libheif1:amd64
|
|
16
|
+
libilmbase25:amd64
|
|
17
|
+
libjxr-tools
|
|
18
|
+
libjxr0:amd64
|
|
19
|
+
liblqr-1-0:amd64
|
|
20
|
+
libmagickcore-6.q16-6:amd64
|
|
21
|
+
libmagickcore-6.q16-6-extra:amd64
|
|
22
|
+
libmagickwand-6.q16-6:amd64
|
|
23
|
+
libnetpbm10
|
|
24
|
+
libopenexr25:amd64
|
|
25
|
+
libqt5designer5:amd64
|
|
26
|
+
libqt5help5:amd64
|
|
27
|
+
libqt5printsupport5:amd64
|
|
28
|
+
libqt5sql5:amd64
|
|
29
|
+
libqt5sql5-sqlite:amd64
|
|
30
|
+
libqt5test5:amd64
|
|
31
|
+
libqt5xml5:amd64
|
|
32
|
+
libwmf0.2-7:amd64
|
|
33
|
+
live-boot
|
|
34
|
+
live-boot-doc
|
|
35
|
+
live-boot-initramfs-tools
|
|
36
|
+
live-config
|
|
37
|
+
live-config-doc
|
|
38
|
+
live-config-systemd
|
|
39
|
+
live-installer
|
|
40
|
+
live-tools
|
|
41
|
+
menu
|
|
42
|
+
mint-live-session
|
|
43
|
+
netpbm
|
|
44
|
+
pastebinit
|
|
45
|
+
python3-pyqt5
|
|
46
|
+
python3-pyqt5.sip
|
|
47
|
+
startpar
|
|
48
|
+
syslinux-utils
|
|
49
|
+
sysv-rc
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
#!/usr/bin/env xdg-open
|
|
2
|
+
[Desktop Entry]
|
|
3
|
+
Type=Application
|
|
4
|
+
Version=1.0
|
|
5
|
+
Name=Linux Mint installer
|
|
6
|
+
GenericName=Linux Mint installer
|
|
7
|
+
Exec=sudo /usr/bin/live-installer
|
|
8
|
+
Comment=Linux Mint installer
|
|
9
|
+
Keywords=system;install;debian;installer
|
|
10
|
+
Icon=leaves
|
|
11
|
+
Terminal=false
|
|
12
|
+
Categories=System;
|
|
13
|
+
Name[it]=Linux Mint installer
|
|
14
|
+
GenericName[it]=Installa sistema
|
|
15
|
+
Comment[it]=Installazione sistema
|
|
16
|
+
Name[en]=Linux Mint installer
|
|
17
|
+
GenericName[en]=Linux Mint installer
|
|
18
|
+
Comment[en]=Linux Mint installer
|
|
19
|
+
Name[es]=Instalación del sistema
|
|
20
|
+
GenericName[es]=Instalación del sistema
|
|
21
|
+
Comment[es]=Instalación del sistema
|
|
22
|
+
Name[pt]=Instalação do sistema
|
|
23
|
+
GenericName[pt]=Instalação do sistema
|
|
24
|
+
Comment[pt]=Instalação do sistema
|
|
25
|
+
Name[fr]=Installation du système
|
|
26
|
+
GenericName[fr]=Installation du système
|
|
27
|
+
Comment[fr]=Installation du système
|
|
@@ -42,7 +42,7 @@ efiBootMgr: "efibootmgr"
|
|
|
42
42
|
# setting the option here, keep in mind that the name is sanitized
|
|
43
43
|
# (problematic characters, see above, are replaced).
|
|
44
44
|
#
|
|
45
|
-
#
|
|
45
|
+
#efiBootloaderId: "dirname"
|
|
46
46
|
|
|
47
47
|
# Optionally install a copy of the GRUB EFI bootloader as the EFI
|
|
48
48
|
# fallback loader (either bootx32.efi or bootx64.efi depending on
|
|
@@ -51,3 +51,5 @@ efiBootMgr: "efibootmgr"
|
|
|
51
51
|
# to add another module to optionally install the fallback on those
|
|
52
52
|
# boards that need it.
|
|
53
53
|
installEFIFallback: false
|
|
54
|
+
|
|
55
|
+
|
package/conf/eggs.yaml
CHANGED
|
@@ -74,18 +74,25 @@ compression: 'xz'
|
|
|
74
74
|
# default true
|
|
75
75
|
ssh_pass: true
|
|
76
76
|
|
|
77
|
+
|
|
78
|
+
|
|
77
79
|
# timezone
|
|
78
|
-
# default Europe/Rome
|
|
79
80
|
timezone: Europe/Rome
|
|
80
81
|
|
|
81
82
|
# locales to be builded
|
|
82
83
|
locales:
|
|
83
|
-
- en_US.UTF-8
|
|
84
84
|
- it_IT.UTF-8
|
|
85
85
|
|
|
86
86
|
# default locales
|
|
87
87
|
locales_default: it_IT.UTF-8
|
|
88
88
|
|
|
89
|
+
# keyboard
|
|
90
|
+
keyboard:
|
|
91
|
+
XkbModel: "pc105"
|
|
92
|
+
XkbLayout: "it"
|
|
93
|
+
XkbVariant: ""
|
|
94
|
+
XkbOptions: ""
|
|
95
|
+
|
|
89
96
|
##
|
|
90
97
|
# The following fields are actually not used in eggs
|
|
91
98
|
pmount_fixed: false
|
package/lib/classes/bleach.js
CHANGED
|
@@ -8,8 +8,8 @@
|
|
|
8
8
|
*/
|
|
9
9
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10
10
|
const tslib_1 = require("tslib");
|
|
11
|
-
const node_fs_1 =
|
|
12
|
-
const utils_1 =
|
|
11
|
+
const node_fs_1 = tslib_1.__importDefault(require("node:fs"));
|
|
12
|
+
const utils_1 = tslib_1.__importDefault(require("./utils"));
|
|
13
13
|
// libraries
|
|
14
14
|
const utils_2 = require("../lib/utils");
|
|
15
15
|
/**
|
|
@@ -4,7 +4,7 @@ const tslib_1 = require("tslib");
|
|
|
4
4
|
/**
|
|
5
5
|
* test i compressori disponibili
|
|
6
6
|
*/
|
|
7
|
-
const shelljs_1 =
|
|
7
|
+
const shelljs_1 = tslib_1.__importDefault(require("shelljs"));
|
|
8
8
|
class Compressors {
|
|
9
9
|
constructor() {
|
|
10
10
|
this.isEnabled = {
|
package/lib/classes/daddy.js
CHANGED
|
@@ -7,13 +7,13 @@ const tslib_1 = require("tslib");
|
|
|
7
7
|
* email: piero.proietti@gmail.com
|
|
8
8
|
* license: MIT
|
|
9
9
|
*/
|
|
10
|
-
const utils_1 =
|
|
11
|
-
const pacman_1 =
|
|
12
|
-
const settings_1 =
|
|
13
|
-
const ovary_1 =
|
|
14
|
-
const compressors_1 =
|
|
10
|
+
const utils_1 = tslib_1.__importDefault(require("../classes/utils"));
|
|
11
|
+
const pacman_1 = tslib_1.__importDefault(require("../classes/pacman"));
|
|
12
|
+
const settings_1 = tslib_1.__importDefault(require("../classes/settings"));
|
|
13
|
+
const ovary_1 = tslib_1.__importDefault(require("../classes/ovary"));
|
|
14
|
+
const compressors_1 = tslib_1.__importDefault(require("../classes/compressors"));
|
|
15
15
|
const inquirer = require("inquirer");
|
|
16
|
-
const chalk_1 =
|
|
16
|
+
const chalk_1 = tslib_1.__importDefault(require("chalk"));
|
|
17
17
|
const utils_2 = require("../lib/utils");
|
|
18
18
|
class Daddy {
|
|
19
19
|
constructor() {
|
|
@@ -109,28 +109,28 @@ class Daddy {
|
|
|
109
109
|
await (0, utils_2.exec)(`rm ${this.settings.work_dir.path} -rf`);
|
|
110
110
|
await (0, utils_2.exec)(`rm ${this.settings.config.snapshot_dir} -rf`);
|
|
111
111
|
}
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
112
|
+
/**
|
|
113
|
+
* produce
|
|
114
|
+
*/
|
|
115
|
+
if (loadDefault) {
|
|
116
|
+
verbose = false;
|
|
117
|
+
}
|
|
118
|
+
flags += ' --' + newConf.compression;
|
|
119
|
+
flags += ' --addons adapt';
|
|
120
|
+
utils_1.default.titles('produce' + ' ' + flags);
|
|
121
|
+
console.log(chalk_1.default.cyan('Daddy, what else did you leave for me?'));
|
|
122
|
+
const myAddons = {};
|
|
123
|
+
myAddons.adapt = true;
|
|
124
|
+
const backup = false;
|
|
125
|
+
const scriptOnly = false;
|
|
126
|
+
const yolkRenew = false;
|
|
127
|
+
const final = false;
|
|
128
|
+
const ovary = new ovary_1.default();
|
|
129
|
+
utils_1.default.warning('Produce an egg...');
|
|
130
|
+
if (await ovary.fertilization(config.snapshot_prefix, config.snapshot_basename, config.theme, config.compression)) {
|
|
131
|
+
await ovary.produce(backup, scriptOnly, yolkRenew, final, myAddons, verbose);
|
|
132
|
+
ovary.finished(scriptOnly);
|
|
133
|
+
}
|
|
134
134
|
}
|
|
135
135
|
}
|
|
136
136
|
}
|