penguins-eggs 9.0.35 → 9.0.48

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 (131) hide show
  1. package/README.md +442 -17
  2. package/conf/distros/buster/calamares/modules/bootloader.yml +3 -1
  3. package/conf/eggs.yaml +9 -2
  4. package/lib/classes/basket.js +4 -4
  5. package/lib/classes/bleach.js +2 -2
  6. package/lib/classes/compressors.js +1 -1
  7. package/lib/classes/daddy.js +6 -6
  8. package/lib/classes/distro.js +17 -3
  9. package/lib/classes/family/archlinux.js +4 -4
  10. package/lib/classes/family/debian.js +4 -4
  11. package/lib/classes/family/fedora.js +4 -4
  12. package/lib/classes/family/suse.js +4 -4
  13. package/lib/classes/i18n.d.ts +28 -4
  14. package/lib/classes/i18n.js +112 -84
  15. package/lib/classes/incubation/branding.js +13 -7
  16. package/lib/classes/incubation/distros/bionic.js +1 -1
  17. package/lib/classes/incubation/distros/buster.js +1 -1
  18. package/lib/classes/incubation/distros/focal.js +1 -1
  19. package/lib/classes/incubation/distros/jessie.js +1 -1
  20. package/lib/classes/incubation/distros/rolling.js +1 -1
  21. package/lib/classes/incubation/fisherman-helper/displaymanager.js +1 -1
  22. package/lib/classes/incubation/fisherman-helper/packages.js +1 -1
  23. package/lib/classes/incubation/fisherman.js +5 -5
  24. package/lib/classes/incubation/incubator.js +4 -4
  25. package/lib/classes/incubation/installer.js +2 -2
  26. package/lib/classes/initrd.js +2 -2
  27. package/lib/classes/keyboards.d.ts +45 -0
  28. package/lib/classes/keyboards.js +196 -0
  29. package/lib/classes/krill_install.d.ts +4 -0
  30. package/lib/classes/krill_install.js +28 -10
  31. package/lib/classes/krill_prepare.d.ts +4 -0
  32. package/lib/classes/krill_prepare.js +56 -77
  33. package/lib/classes/locales.d.ts +14 -0
  34. package/lib/classes/locales.js +54 -0
  35. package/lib/classes/n8.js +1 -1
  36. package/lib/classes/ovary.js +17 -17
  37. package/lib/classes/pacman.js +19 -19
  38. package/lib/classes/pve-live.js +3 -3
  39. package/lib/classes/settings.d.ts +6 -0
  40. package/lib/classes/settings.js +11 -13
  41. package/lib/classes/systemctl.js +1 -1
  42. package/lib/classes/tailor.d.ts +20 -0
  43. package/lib/classes/tailor.js +460 -0
  44. package/lib/classes/tools.js +4 -4
  45. package/lib/classes/users.js +1 -1
  46. package/lib/classes/utils.js +9 -9
  47. package/lib/classes/xdg.js +5 -5
  48. package/lib/classes/yolk.js +5 -5
  49. package/lib/commands/adapt.js +1 -1
  50. package/lib/commands/analyze.js +2 -2
  51. package/lib/commands/bro.js +2 -2
  52. package/lib/commands/calamares.js +4 -4
  53. package/lib/commands/config.js +4 -4
  54. package/lib/commands/dad.js +2 -2
  55. package/lib/commands/export/deb.js +2 -2
  56. package/lib/commands/export/docs.js +2 -2
  57. package/lib/commands/export/iso.js +2 -2
  58. package/lib/commands/info.js +1 -1
  59. package/lib/commands/install.js +5 -5
  60. package/lib/commands/kill.js +2 -2
  61. package/lib/commands/mom.js +2 -2
  62. package/lib/commands/produce.js +8 -8
  63. package/lib/commands/remove.js +2 -2
  64. package/lib/commands/syncfrom.js +1 -1
  65. package/lib/commands/syncto.js +2 -2
  66. package/lib/commands/tools/clean.js +2 -2
  67. package/lib/commands/tools/locales.js +9 -4
  68. package/lib/commands/tools/skel.js +2 -2
  69. package/lib/commands/tools/stat.js +3 -3
  70. package/lib/commands/tools/yolk.js +4 -4
  71. package/lib/commands/update.js +5 -5
  72. package/lib/commands/wardrobe/ironing.d.ts +14 -0
  73. package/lib/commands/wardrobe/ironing.js +123 -0
  74. package/lib/commands/wardrobe/list.d.ts +13 -0
  75. package/lib/commands/wardrobe/list.js +46 -0
  76. package/lib/commands/wardrobe/show.d.ts +15 -0
  77. package/lib/commands/wardrobe/show.js +55 -0
  78. package/lib/commands/wardrobe/wear.d.ts +11 -0
  79. package/lib/commands/wardrobe/wear.js +42 -0
  80. package/lib/components/elements/information.js +6 -6
  81. package/lib/components/elements/steps.js +1 -1
  82. package/lib/components/elements/title.js +2 -2
  83. package/lib/components/finished.js +5 -5
  84. package/lib/components/install.js +5 -5
  85. package/lib/components/keyboard.js +5 -8
  86. package/lib/components/location.js +5 -5
  87. package/lib/components/network.js +5 -5
  88. package/lib/components/partitions.js +5 -5
  89. package/lib/components/summary.js +5 -5
  90. package/lib/components/users.js +5 -5
  91. package/lib/components/welcome.js +6 -6
  92. package/lib/interfaces/i-costume.d.ts +43 -0
  93. package/lib/interfaces/i-costume.js +2 -0
  94. package/lib/interfaces/i-krill.d.ts +1 -0
  95. package/lib/interfaces/i-packages.d.ts +13 -0
  96. package/lib/interfaces/i-packages.js +2 -0
  97. package/lib/interfaces/i-xkb-model.d.ts +17 -0
  98. package/lib/interfaces/i-xkb-model.js +2 -0
  99. package/lib/interfaces/index.d.ts +1 -0
  100. package/lib/lib/cli-autologin.js +3 -3
  101. package/lib/lib/select_address_type.js +1 -1
  102. package/lib/lib/select_filesystem_type.js +2 -2
  103. package/lib/lib/select_installation_device.js +1 -1
  104. package/lib/lib/select_interface.js +1 -1
  105. package/lib/lib/select_keyboard_layout.d.ts +1 -28
  106. package/lib/lib/select_keyboard_layout.js +18 -33
  107. package/lib/lib/select_keyboard_model.d.ts +4 -0
  108. package/lib/lib/select_keyboard_model.js +36 -0
  109. package/lib/lib/select_keyboard_option.d.ts +4 -0
  110. package/lib/lib/select_keyboard_option.js +36 -0
  111. package/lib/lib/select_keyboard_variant.d.ts +1 -5
  112. package/lib/lib/select_keyboard_variant.js +32 -5
  113. package/lib/lib/select_languages.d.ts +1 -1
  114. package/lib/lib/select_languages.js +8 -7
  115. package/lib/lib/select_regions.d.ts +1 -1
  116. package/lib/lib/select_regions.js +2 -2
  117. package/lib/lib/select_user_swap_choice.js +2 -2
  118. package/oclif.manifest.json +1 -1
  119. package/package.json +3 -2
  120. package/scripts/_eggs +43 -2
  121. package/scripts/eggs.bash +6 -2
  122. package/scripts/resy.sh +8 -0
  123. package/wardrobe.d/external.yml +7 -0
  124. package/wardrobe.d/hen/control.template +10 -0
  125. package/wardrobe.d/hen/index.yml +212 -0
  126. package/wardrobe.d/kde/index.yml +41 -0
  127. package/wardrobe.d/lamp/index.yml +35 -0
  128. package/wardrobe.d/xfce4/index.yml +53 -0
  129. package/conf/distros/buster/locales/locale.gen.template +0 -10
  130. package/conf/distros/buster/locales/locale.template +0 -11
  131. package/conf/distros/focal/locale.gen.template +0 -8
@@ -0,0 +1,36 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ /**
5
+ * penguins-eggs
6
+ * selectKeyboardModel
7
+ * author: Piero Proietti
8
+ */
9
+ const inquirer_1 = tslib_1.__importDefault(require("inquirer"));
10
+ const keyboards_1 = tslib_1.__importDefault(require("../classes/keyboards"));
11
+ /**
12
+ *
13
+ */
14
+ async function selectKeyboardModel(selected = '') {
15
+ const keyboards = new keyboards_1.default();
16
+ const models = keyboards.getModels();
17
+ const supported = [];
18
+ for (const m of models) {
19
+ supported.push(m.code);
20
+ }
21
+ const questions = [
22
+ {
23
+ type: 'list',
24
+ name: 'model',
25
+ message: 'Select model: ',
26
+ choices: supported,
27
+ default: selected
28
+ }
29
+ ];
30
+ return new Promise(function (resolve) {
31
+ inquirer_1.default.prompt(questions).then(function (options) {
32
+ resolve(options.model);
33
+ });
34
+ });
35
+ }
36
+ exports.default = selectKeyboardModel;
@@ -0,0 +1,4 @@
1
+ /**
2
+ * selectKeyboardOption
3
+ */
4
+ export default function selectKeyboardOption(selected?: string): Promise<string>;
@@ -0,0 +1,36 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ /**
5
+ * penguins-eggs
6
+ * selectKeyboardOption
7
+ * author: Piero Proietti
8
+ */
9
+ const inquirer_1 = tslib_1.__importDefault(require("inquirer"));
10
+ const keyboards_1 = tslib_1.__importDefault(require("../classes/keyboards"));
11
+ /**
12
+ * selectKeyboardOption
13
+ */
14
+ async function selectKeyboardOption(selected = '') {
15
+ const keyboards = new keyboards_1.default();
16
+ const options = keyboards.getOptions();
17
+ const supported = [];
18
+ for (const o of options) {
19
+ supported.push(o.code);
20
+ }
21
+ const questions = [
22
+ {
23
+ type: 'list',
24
+ name: 'option',
25
+ message: 'Select option: ',
26
+ choices: supported,
27
+ default: selected
28
+ }
29
+ ];
30
+ return new Promise(function (resolve) {
31
+ inquirer_1.default.prompt(questions).then(function (options) {
32
+ resolve(options.option);
33
+ });
34
+ });
35
+ }
36
+ exports.default = selectKeyboardOption;
@@ -1,8 +1,4 @@
1
1
  /**
2
- * https://unix.stackexchange.com/questions/43976/list-all-valid-kbd-layouts-variants-and-toggle-options-to-use-with-setxkbmap
3
2
  *
4
- * grep -E ^xkb_symbols < /usr/share/X11/xkb/symbols/it
5
- * localectl list-x11-keymap-layouts
6
- * localectl list-x11-keymap-variants
7
- * localectl list-x11-keymap-options | grep grp:
8
3
  */
4
+ export default function selectKeyboardVariant(keyboardLayout?: string): Promise<string>;
@@ -1,9 +1,36 @@
1
1
  "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ /**
5
+ * penguins-eggs
6
+ * selectKeyboardVariant
7
+ * author: Piero Proietti
8
+ */
9
+ const inquirer_1 = tslib_1.__importDefault(require("inquirer"));
10
+ const keyboards_1 = tslib_1.__importDefault(require("../classes/keyboards"));
2
11
  /**
3
- * https://unix.stackexchange.com/questions/43976/list-all-valid-kbd-layouts-variants-and-toggle-options-to-use-with-setxkbmap
4
12
  *
5
- * grep -E ^xkb_symbols < /usr/share/X11/xkb/symbols/it
6
- * localectl list-x11-keymap-layouts
7
- * localectl list-x11-keymap-variants
8
- * localectl list-x11-keymap-options | grep grp:
9
13
  */
14
+ async function selectKeyboardVariant(keyboardLayout = '') {
15
+ const keyboards = new keyboards_1.default();
16
+ const variants = keyboards.getVariants(keyboardLayout);
17
+ const supported = [];
18
+ for (const v of variants) {
19
+ supported.push(v.code);
20
+ }
21
+ const questions = [
22
+ {
23
+ type: 'list',
24
+ name: 'variant',
25
+ message: 'Select variant: ',
26
+ choices: supported,
27
+ default: ''
28
+ }
29
+ ];
30
+ return new Promise(function (resolve) {
31
+ inquirer_1.default.prompt(questions).then(function (options) {
32
+ resolve(options.variant);
33
+ });
34
+ });
35
+ }
36
+ exports.default = selectKeyboardVariant;
@@ -1 +1 @@
1
- export default function selectLanguages(): Promise<string>;
1
+ export default function selectLanguages(selectedLanguage?: string): Promise<string>;
@@ -4,18 +4,19 @@ const tslib_1 = require("tslib");
4
4
  /**
5
5
  * less /usr/share/i18n/SUPPORTED
6
6
  */
7
- const inquirer_1 = (0, tslib_1.__importDefault)(require("inquirer"));
8
- const shelljs_1 = (0, tslib_1.__importDefault)(require("shelljs"));
9
- async function selectLanguages() {
10
- const start = shelljs_1.default.exec('cat /etc/default/locale |cut -f2 -d=| cut -f1 -d-', { silent: true });
11
- const languages = shelljs_1.default.exec('locale -a|cut -f1 -d.', { silent: true }).split('\n');
7
+ const inquirer_1 = tslib_1.__importDefault(require("inquirer"));
8
+ const locales_1 = tslib_1.__importDefault(require("../classes/locales"));
9
+ async function selectLanguages(selectedLanguage = "") {
10
+ const locales = new locales_1.default();
11
+ const supported = await locales.getSupported();
12
+ const selected = selectedLanguage;
12
13
  const questions = [
13
14
  {
14
15
  type: 'list',
15
16
  name: 'language',
16
17
  message: 'Select language: ',
17
- choices: languages,
18
- default: start
18
+ choices: supported,
19
+ default: selected
19
20
  }
20
21
  ];
21
22
  return new Promise(function (resolve) {
@@ -1 +1 @@
1
- export default function selectRegions(): Promise<string>;
1
+ export default function selectRegions(selected?: string): Promise<string>;
@@ -1,14 +1,14 @@
1
1
  'use strict';
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const inquirer = require("inquirer");
4
- async function selectRegions() {
4
+ async function selectRegions(selected = '') {
5
5
  const questions = [
6
6
  {
7
7
  type: 'list',
8
8
  name: 'region',
9
9
  message: 'Select your region: ',
10
10
  choices: ['Atlantic', 'Africa', 'America', 'Antarctica', 'Artic', 'Australia', 'Europe', 'India', 'Europe', 'Pacific'],
11
- default: 'Europe'
11
+ default: selected
12
12
  }
13
13
  ];
14
14
  return new Promise(function (resolve) {
@@ -2,8 +2,8 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const tslib_1 = require("tslib");
4
4
  const inquirer = require("inquirer");
5
- const js_yaml_1 = (0, tslib_1.__importDefault)(require("js-yaml"));
6
- const node_fs_1 = (0, tslib_1.__importDefault)(require("node:fs"));
5
+ const js_yaml_1 = tslib_1.__importDefault(require("js-yaml"));
6
+ const node_fs_1 = tslib_1.__importDefault(require("node:fs"));
7
7
  async function selectUserSwapChoice() {
8
8
  let partitions = {};
9
9
  if (node_fs_1.default.existsSync('/etc/calamares/modules/partition.conf')) {
@@ -1 +1 @@
1
- {"version":"9.0.35","commands":{"adapt":{"id":"adapt","description":"adapt monitor resolution for VM only","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":["adjust"],"flags":{"verbose":{"name":"verbose","type":"boolean","char":"v","allowNo":false},"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false}},"args":[],"_globalFlags":{}},"analyze":{"id":"analyze","description":"analyze situation","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":[],"examples":["$ sudo eggs analyze"],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"verbose":{"name":"verbose","type":"boolean","char":"v","description":"verbose","allowNo":false}},"args":[],"_globalFlags":{}},"bro":{"id":"bro","description":"bro: waydroid helper","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":[],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false}},"args":[],"_globalFlags":{}},"calamares":{"id":"calamares","description":"calamares or install or configure it","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":[],"examples":["~$ sudo eggs calamares \ncreate/renew calamares configuration's files\n","~$ sudo eggs calamares -i \ninstall calamares and create it's configuration's files\n"],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"verbose":{"name":"verbose","type":"boolean","char":"v","allowNo":false},"install":{"name":"install","type":"boolean","char":"i","description":"install calamares and it's dependencies","allowNo":false},"final":{"name":"final","type":"boolean","char":"f","description":"final: remove calamares and all it's dependencies after the installation","allowNo":false},"remove":{"name":"remove","type":"boolean","char":"r","description":"remove calamares and it's dependencies","allowNo":false},"theme":{"name":"theme","type":"option","description":"theme/branding for eggs and calamares","multiple":false}},"args":[],"_globalFlags":{}},"config":{"id":"config","description":"Configure and install prerequisites deb packages to run it","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":["prerequisites"],"examples":["~$ sudo eggs config\nConfigure and install prerequisites deb packages to run it"],"flags":{"nointeractive":{"name":"nointeractive","type":"boolean","char":"n","description":"assume yes","allowNo":false},"clean":{"name":"clean","type":"boolean","char":"c","description":"remove old configuration before to create new one","allowNo":false},"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"verbose":{"name":"verbose","type":"boolean","char":"v","description":"verbose","allowNo":false}},"args":[],"_globalFlags":{}},"dad":{"id":"dad","description":"ask help from daddy - configuration helper","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":[],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"clean":{"name":"clean","type":"boolean","char":"c","description":"remove old configuration before to create","allowNo":false},"default":{"name":"default","type":"boolean","char":"d","description":"remove old configuration and force default","allowNo":false},"verbose":{"name":"verbose","type":"boolean","char":"v","allowNo":false}},"args":[],"_globalFlags":{}},"info":{"id":"info","description":"re-thinking for a different approach to CLI","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":[],"flags":{"verbose":{"name":"verbose","type":"boolean","char":"v","allowNo":false},"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false}},"args":[],"_globalFlags":{}},"install":{"id":"install","description":"command-line system installer - the egg became a penguin!","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":["hatch","krill"],"examples":["$ eggs install\nInstall the system using GUI or CLI installer\n"],"flags":{"cli":{"name":"cli","type":"boolean","char":"c","description":"force use CLI installer","allowNo":false},"crypted":{"name":"crypted","type":"boolean","char":"k","description":"crypted CLI installation","allowNo":false},"pve":{"name":"pve","type":"boolean","char":"p","description":"Proxmox VE install","allowNo":false},"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"verbose":{"name":"verbose","type":"boolean","char":"v","description":"verbose","allowNo":false}},"args":[],"_globalFlags":{}},"kill":{"id":"kill","description":"kill the eggs/free the nest","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":[],"examples":["$ eggs kill\nkill the eggs/free the nest"],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"verbose":{"name":"verbose","type":"boolean","char":"v","description":"verbose","allowNo":false}},"args":[],"_globalFlags":{}},"mom":{"id":"mom","description":"ask for mommy - gui helper","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":[],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false}},"args":[],"_globalFlags":{}},"produce":{"id":"produce","description":"produce a live image from your system whithout your data","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":["spawn","lay"],"examples":["$ sudo eggs produce \nproduce an ISO called [hostname]-[arch]-YYYY-MM-DD_HHMM.iso, compressed xz (standard compression).\nIf hostname=ugo and arch=i386 ugo-x86-2020-08-25_1215.iso\n","$ sudo eggs produce -v\nsame as previuos, but with --verbose output\n","$ sudo eggs produce -vf\nsame as previuos, compression zstd, lz4 or gzip (depend from system capability)\n","$ sudo eggs produce -vm\nsame as previuos, compression xz -Xbcj x86 (max compression, about 10%\nmore compressed)\n","$ sudo eggs produce -vf --basename leo --theme debian --addons adapt \nproduce an ISO called leo-i386-2020-08-25_1215.iso compression fast,\nusing Debian theme and link to adapt\n","$ sudo eggs produce -v --basename leo --theme debian --addons rsupport \nproduce an ISO called leo-i386-2020-08-25_1215.iso compression xz,\nusing Debian theme and link to dwagent\n","$ sudo eggs produce -v --basename leo --rsupport \nproduce an ISO called leo-i386-2020-08-25_1215.iso compression xz, using eggs\ntheme and link to dwagent\n","$ sudo eggs produce -vs --basename leo --rsupport \nproduce scripts to build an ISO as the previus example. Scripts can be found\nin /home/eggs/ovarium and you can customize all you need\n"],"flags":{"prefix":{"name":"prefix","type":"option","char":"p","description":"prefix","multiple":false},"basename":{"name":"basename","type":"option","description":"basename","multiple":false},"backup":{"name":"backup","type":"boolean","char":"b","description":"backup mode","allowNo":false},"fast":{"name":"fast","type":"boolean","char":"f","description":"fast compression","allowNo":false},"normal":{"name":"normal","type":"boolean","char":"n","description":"normal compression","allowNo":false},"max":{"name":"max","type":"boolean","char":"m","description":"max compression","allowNo":false},"verbose":{"name":"verbose","type":"boolean","char":"v","description":"verbose","allowNo":false},"yolk":{"name":"yolk","type":"boolean","char":"y","description":"-y force yolk renew","allowNo":false},"script":{"name":"script","type":"boolean","char":"s","description":"script mode. Generate scripts to manage iso build","allowNo":false},"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"theme":{"name":"theme","type":"option","description":"theme for livecd, calamares branding and partitions","multiple":false},"addons":{"name":"addons","type":"option","description":"addons to be used: adapt, ichoice, pve, rsupport","multiple":true},"release":{"name":"release","type":"boolean","description":"release: configure GUI installer to remove eggs and calamares after installation","allowNo":false}},"args":[],"_globalFlags":{}},"remove":{"id":"remove","description":"remove eggs and others stuff","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":[],"examples":["$ sudo eggs remove \nremove eggs\n","$ sudo eggs remove --purge \nremove eggs, eggs configurations, configuration's files\n","$ sudo eggs remove --autoremove \nremove eggs, eggs configurations, packages dependencies\n"],"flags":{"purge":{"name":"purge","type":"boolean","char":"p","description":"remove eggs configurations files","allowNo":false},"autoremove":{"name":"autoremove","type":"boolean","char":"a","description":"remove eggs packages dependencies","allowNo":false},"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"verbose":{"name":"verbose","type":"boolean","char":"v","description":"verbose","allowNo":false}},"args":[],"_globalFlags":{}},"syncfrom":{"id":"syncfrom","description":"Restore users, server and datas from luks-eggs-backup","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":["restore"],"examples":["$ sudo eggs restore"],"flags":{"delete":{"name":"delete","type":"option","description":"rsync --delete delete extraneous files from dest dirs","multiple":false},"file":{"name":"file","type":"option","char":"f","description":"file LUKS volume encrypted","multiple":false},"rootdir":{"name":"rootdir","type":"option","char":"r","description":"rootdir of the installed system, when used from live","multiple":false},"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"verbose":{"name":"verbose","type":"boolean","char":"v","description":"verbose","allowNo":false}},"args":[],"_globalFlags":{}},"syncto":{"id":"syncto","description":"Backup users, server and datas to luks-eggs-backup","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":["backup"],"examples":["$ sudo eggs syncto"],"flags":{"delete":{"name":"delete","type":"option","description":"rsync --delete delete extraneous files from dest dirs","multiple":false},"file":{"name":"file","type":"option","char":"f","description":"file LUKS volume encrypted","multiple":false},"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"verbose":{"name":"verbose","type":"boolean","char":"v","description":"verbose","allowNo":false}},"args":[],"_globalFlags":{}},"update":{"id":"update","description":"update the penguin's eggs tool","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":[],"examples":["$ eggs update\nupdate/upgrade the penguin's eggs tool"],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"apt":{"name":"apt","type":"boolean","char":"a","description":"if eggs package is .deb, update from distro repositories","allowNo":false},"basket":{"name":"basket","type":"boolean","char":"b","description":"if eggs package is .deb, update from eggs basket","allowNo":false},"verbose":{"name":"verbose","type":"boolean","char":"v","description":"verbose","allowNo":false}},"args":[],"_globalFlags":{}},"export:deb":{"id":"export:deb","description":"export deb/docs/iso to the destination host","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":[],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"clean":{"name":"clean","type":"boolean","char":"c","description":"remove old .deb before to copy","allowNo":false},"amd64":{"name":"amd64","type":"boolean","description":"export amd64 arch","allowNo":false},"i386":{"name":"i386","type":"boolean","description":"export i386 arch","allowNo":false},"armel":{"name":"armel","type":"boolean","description":"export armel arch","allowNo":false},"arm64":{"name":"arm64","type":"boolean","description":"export arm64 arch","allowNo":false},"all":{"name":"all","type":"boolean","char":"a","description":"export all archs","allowNo":false}},"args":[],"_globalFlags":{}},"export:docs":{"id":"export:docs","description":"remove and export docType documentation of the sources in the destination host","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":[],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false}},"args":[],"_globalFlags":{}},"export:iso":{"id":"export:iso","description":"export iso in the destination host","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":[],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"backup":{"name":"backup","type":"boolean","char":"b","description":"export backup ISOs","allowNo":false},"clean":{"name":"clean","type":"boolean","char":"c","description":"delete old ISOs before to copy","allowNo":false}},"args":[],"_globalFlags":{}},"tools:clean":{"id":"tools:clean","description":"clean system log, apt, etc","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":["clean"],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"verbose":{"name":"verbose","type":"boolean","char":"v","description":"verbose","allowNo":false}},"args":[],"_globalFlags":{}},"tools:locales":{"id":"tools:locales","description":"install/clean locales","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":[],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"reinstall":{"name":"reinstall","type":"boolean","char":"r","description":"reinstall locales","allowNo":false},"verbose":{"name":"verbose","type":"boolean","char":"v","description":"verbose","allowNo":false}},"args":[],"_globalFlags":{}},"tools:skel":{"id":"tools:skel","description":"update skel from home configuration","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":["skel"],"examples":["$ eggs skel --user mauro\ndesktop configuration of user mauro will get used as default"],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"user":{"name":"user","type":"option","char":"u","description":"user to be used","multiple":false},"verbose":{"name":"verbose","type":"boolean","char":"v","allowNo":false}},"args":[],"_globalFlags":{}},"tools:stat":{"id":"tools:stat","description":"get statistics from sourceforge","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":["stat"],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"month":{"name":"month","type":"boolean","char":"m","description":"current month","allowNo":false},"year":{"name":"year","type":"boolean","char":"y","description":"current year","allowNo":false}},"args":[],"_globalFlags":{}},"tools:yolk":{"id":"tools:yolk","description":"configure eggs to install without internet","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":[],"examples":["$ eggs yolk -v"],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"verbose":{"name":"verbose","type":"boolean","char":"v","allowNo":false}},"args":[],"_globalFlags":{},"dir":"/var/local/yolk"}}}
1
+ {"version":"9.0.48","commands":{"adapt":{"id":"adapt","description":"adapt monitor resolution for VM only","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":["adjust"],"flags":{"verbose":{"name":"verbose","type":"boolean","char":"v","allowNo":false},"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false}},"args":[],"_globalFlags":{}},"analyze":{"id":"analyze","description":"analyze situation","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":[],"examples":["$ sudo eggs analyze"],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"verbose":{"name":"verbose","type":"boolean","char":"v","description":"verbose","allowNo":false}},"args":[],"_globalFlags":{}},"bro":{"id":"bro","description":"bro: waydroid helper","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":[],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false}},"args":[],"_globalFlags":{}},"calamares":{"id":"calamares","description":"calamares or install or configure it","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":[],"examples":["~$ sudo eggs calamares \ncreate/renew calamares configuration's files\n","~$ sudo eggs calamares -i \ninstall calamares and create it's configuration's files\n"],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"verbose":{"name":"verbose","type":"boolean","char":"v","allowNo":false},"install":{"name":"install","type":"boolean","char":"i","description":"install calamares and it's dependencies","allowNo":false},"final":{"name":"final","type":"boolean","char":"f","description":"final: remove calamares and all it's dependencies after the installation","allowNo":false},"remove":{"name":"remove","type":"boolean","char":"r","description":"remove calamares and it's dependencies","allowNo":false},"theme":{"name":"theme","type":"option","description":"theme/branding for eggs and calamares","multiple":false}},"args":[],"_globalFlags":{}},"config":{"id":"config","description":"Configure and install prerequisites deb packages to run it","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":["prerequisites"],"examples":["~$ sudo eggs config\nConfigure and install prerequisites deb packages to run it"],"flags":{"nointeractive":{"name":"nointeractive","type":"boolean","char":"n","description":"assume yes","allowNo":false},"clean":{"name":"clean","type":"boolean","char":"c","description":"remove old configuration before to create new one","allowNo":false},"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"verbose":{"name":"verbose","type":"boolean","char":"v","description":"verbose","allowNo":false}},"args":[],"_globalFlags":{}},"dad":{"id":"dad","description":"ask help from daddy - configuration helper","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":[],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"clean":{"name":"clean","type":"boolean","char":"c","description":"remove old configuration before to create","allowNo":false},"default":{"name":"default","type":"boolean","char":"d","description":"remove old configuration and force default","allowNo":false},"verbose":{"name":"verbose","type":"boolean","char":"v","allowNo":false}},"args":[],"_globalFlags":{}},"info":{"id":"info","description":"re-thinking for a different approach to CLI","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":[],"flags":{"verbose":{"name":"verbose","type":"boolean","char":"v","allowNo":false},"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false}},"args":[],"_globalFlags":{}},"install":{"id":"install","description":"command-line system installer - the egg became a penguin!","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":["hatch","krill"],"examples":["$ eggs install\nInstall the system using GUI or CLI installer\n"],"flags":{"cli":{"name":"cli","type":"boolean","char":"c","description":"force use CLI installer","allowNo":false},"crypted":{"name":"crypted","type":"boolean","char":"k","description":"crypted CLI installation","allowNo":false},"pve":{"name":"pve","type":"boolean","char":"p","description":"Proxmox VE install","allowNo":false},"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"verbose":{"name":"verbose","type":"boolean","char":"v","description":"verbose","allowNo":false}},"args":[],"_globalFlags":{}},"kill":{"id":"kill","description":"kill the eggs/free the nest","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":[],"examples":["$ eggs kill\nkill the eggs/free the nest"],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"verbose":{"name":"verbose","type":"boolean","char":"v","description":"verbose","allowNo":false}},"args":[],"_globalFlags":{}},"mom":{"id":"mom","description":"ask for mommy - gui helper","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":[],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false}},"args":[],"_globalFlags":{}},"produce":{"id":"produce","description":"produce a live image from your system whithout your data","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":["spawn","lay"],"examples":["$ sudo eggs produce \nproduce an ISO called [hostname]-[arch]-YYYY-MM-DD_HHMM.iso, compressed xz (standard compression).\nIf hostname=ugo and arch=i386 ugo-x86-2020-08-25_1215.iso\n","$ sudo eggs produce -v\nsame as previuos, but with --verbose output\n","$ sudo eggs produce -vf\nsame as previuos, compression zstd, lz4 or gzip (depend from system capability)\n","$ sudo eggs produce -vm\nsame as previuos, compression xz -Xbcj x86 (max compression, about 10%\nmore compressed)\n","$ sudo eggs produce -vf --basename leo --theme debian --addons adapt \nproduce an ISO called leo-i386-2020-08-25_1215.iso compression fast,\nusing Debian theme and link to adapt\n","$ sudo eggs produce -v --basename leo --theme debian --addons rsupport \nproduce an ISO called leo-i386-2020-08-25_1215.iso compression xz,\nusing Debian theme and link to dwagent\n","$ sudo eggs produce -v --basename leo --rsupport \nproduce an ISO called leo-i386-2020-08-25_1215.iso compression xz, using eggs\ntheme and link to dwagent\n","$ sudo eggs produce -vs --basename leo --rsupport \nproduce scripts to build an ISO as the previus example. Scripts can be found\nin /home/eggs/ovarium and you can customize all you need\n"],"flags":{"prefix":{"name":"prefix","type":"option","char":"p","description":"prefix","multiple":false},"basename":{"name":"basename","type":"option","description":"basename","multiple":false},"backup":{"name":"backup","type":"boolean","char":"b","description":"backup mode","allowNo":false},"fast":{"name":"fast","type":"boolean","char":"f","description":"fast compression","allowNo":false},"normal":{"name":"normal","type":"boolean","char":"n","description":"normal compression","allowNo":false},"max":{"name":"max","type":"boolean","char":"m","description":"max compression","allowNo":false},"verbose":{"name":"verbose","type":"boolean","char":"v","description":"verbose","allowNo":false},"yolk":{"name":"yolk","type":"boolean","char":"y","description":"-y force yolk renew","allowNo":false},"script":{"name":"script","type":"boolean","char":"s","description":"script mode. Generate scripts to manage iso build","allowNo":false},"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"theme":{"name":"theme","type":"option","description":"theme for livecd, calamares branding and partitions","multiple":false},"addons":{"name":"addons","type":"option","description":"addons to be used: adapt, ichoice, pve, rsupport","multiple":true},"release":{"name":"release","type":"boolean","description":"release: configure GUI installer to remove eggs and calamares after installation","allowNo":false}},"args":[],"_globalFlags":{}},"remove":{"id":"remove","description":"remove eggs and others stuff","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":[],"examples":["$ sudo eggs remove \nremove eggs\n","$ sudo eggs remove --purge \nremove eggs, eggs configurations, configuration's files\n","$ sudo eggs remove --autoremove \nremove eggs, eggs configurations, packages dependencies\n"],"flags":{"purge":{"name":"purge","type":"boolean","char":"p","description":"remove eggs configurations files","allowNo":false},"autoremove":{"name":"autoremove","type":"boolean","char":"a","description":"remove eggs packages dependencies","allowNo":false},"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"verbose":{"name":"verbose","type":"boolean","char":"v","description":"verbose","allowNo":false}},"args":[],"_globalFlags":{}},"syncfrom":{"id":"syncfrom","description":"Restore users, server and datas from luks-eggs-backup","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":["restore"],"examples":["$ sudo eggs restore"],"flags":{"delete":{"name":"delete","type":"option","description":"rsync --delete delete extraneous files from dest dirs","multiple":false},"file":{"name":"file","type":"option","char":"f","description":"file LUKS volume encrypted","multiple":false},"rootdir":{"name":"rootdir","type":"option","char":"r","description":"rootdir of the installed system, when used from live","multiple":false},"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"verbose":{"name":"verbose","type":"boolean","char":"v","description":"verbose","allowNo":false}},"args":[],"_globalFlags":{}},"syncto":{"id":"syncto","description":"Backup users, server and datas to luks-eggs-backup","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":["backup"],"examples":["$ sudo eggs syncto"],"flags":{"delete":{"name":"delete","type":"option","description":"rsync --delete delete extraneous files from dest dirs","multiple":false},"file":{"name":"file","type":"option","char":"f","description":"file LUKS volume encrypted","multiple":false},"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"verbose":{"name":"verbose","type":"boolean","char":"v","description":"verbose","allowNo":false}},"args":[],"_globalFlags":{}},"update":{"id":"update","description":"update the penguin's eggs tool","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":[],"examples":["$ eggs update\nupdate/upgrade the penguin's eggs tool"],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"apt":{"name":"apt","type":"boolean","char":"a","description":"if eggs package is .deb, update from distro repositories","allowNo":false},"basket":{"name":"basket","type":"boolean","char":"b","description":"if eggs package is .deb, update from eggs basket","allowNo":false},"verbose":{"name":"verbose","type":"boolean","char":"v","description":"verbose","allowNo":false}},"args":[],"_globalFlags":{}},"export:deb":{"id":"export:deb","description":"export deb/docs/iso to the destination host","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":[],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"clean":{"name":"clean","type":"boolean","char":"c","description":"remove old .deb before to copy","allowNo":false},"amd64":{"name":"amd64","type":"boolean","description":"export amd64 arch","allowNo":false},"i386":{"name":"i386","type":"boolean","description":"export i386 arch","allowNo":false},"armel":{"name":"armel","type":"boolean","description":"export armel arch","allowNo":false},"arm64":{"name":"arm64","type":"boolean","description":"export arm64 arch","allowNo":false},"all":{"name":"all","type":"boolean","char":"a","description":"export all archs","allowNo":false}},"args":[],"_globalFlags":{}},"export:docs":{"id":"export:docs","description":"remove and export docType documentation of the sources in the destination host","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":[],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false}},"args":[],"_globalFlags":{}},"export:iso":{"id":"export:iso","description":"export iso in the destination host","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":[],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"backup":{"name":"backup","type":"boolean","char":"b","description":"export backup ISOs","allowNo":false},"clean":{"name":"clean","type":"boolean","char":"c","description":"delete old ISOs before to copy","allowNo":false}},"args":[],"_globalFlags":{}},"tools:clean":{"id":"tools:clean","description":"clean system log, apt, etc","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":["clean"],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"verbose":{"name":"verbose","type":"boolean","char":"v","description":"verbose","allowNo":false}},"args":[],"_globalFlags":{}},"tools:locales":{"id":"tools:locales","description":"install/clean locales","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":[],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"reinstall":{"name":"reinstall","type":"boolean","char":"r","description":"reinstall locales","allowNo":false},"verbose":{"name":"verbose","type":"boolean","char":"v","description":"verbose","allowNo":false}},"args":[],"_globalFlags":{}},"tools:skel":{"id":"tools:skel","description":"update skel from home configuration","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":["skel"],"examples":["$ eggs skel --user mauro\ndesktop configuration of user mauro will get used as default"],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"user":{"name":"user","type":"option","char":"u","description":"user to be used","multiple":false},"verbose":{"name":"verbose","type":"boolean","char":"v","allowNo":false}},"args":[],"_globalFlags":{}},"tools:stat":{"id":"tools:stat","description":"get statistics from sourceforge","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":["stat"],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"month":{"name":"month","type":"boolean","char":"m","description":"current month","allowNo":false},"year":{"name":"year","type":"boolean","char":"y","description":"current year","allowNo":false}},"args":[],"_globalFlags":{}},"tools:yolk":{"id":"tools:yolk","description":"configure eggs to install without internet","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":[],"examples":["$ eggs yolk -v"],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"verbose":{"name":"verbose","type":"boolean","char":"v","allowNo":false}},"args":[],"_globalFlags":{},"dir":"/var/local/yolk"},"wardrobe:ironing":{"id":"wardrobe:ironing","description":"ironing costumes: sorting packages, firmwares and so on","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":[],"flags":{"costume":{"name":"costume","type":"option","char":"c","description":"costume","multiple":false},"wardrobe":{"name":"wardrobe","type":"option","char":"w","description":"wardrobe","multiple":false},"verbose":{"name":"verbose","type":"boolean","char":"v","allowNo":false},"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false}},"args":[],"_globalFlags":{}},"wardrobe:list":{"id":"wardrobe:list","description":"list, wear costumes","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":[],"flags":{"wardrobe":{"name":"wardrobe","type":"option","char":"w","description":"wardrobe","multiple":false},"verbose":{"name":"verbose","type":"boolean","char":"v","allowNo":false},"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false}},"args":[],"_globalFlags":{}},"wardrobe:show":{"id":"wardrobe:show","description":"show costumes","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":[],"flags":{"wardrobe":{"name":"wardrobe","type":"option","char":"w","description":"wardrobe","multiple":false},"costume":{"name":"costume","type":"option","char":"c","description":"costume","multiple":false},"json":{"name":"json","type":"boolean","char":"j","description":"output JSON","allowNo":false},"verbose":{"name":"verbose","type":"boolean","char":"v","allowNo":false},"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false}},"args":[],"_globalFlags":{}},"wardrobe:wear":{"id":"wardrobe:wear","description":"wear costume","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":[],"flags":{"costume":{"name":"costume","type":"option","char":"c","description":"Costume","multiple":false},"wardrobe":{"name":"wardrobe","type":"option","char":"w","description":"wardrobe","multiple":false},"verbose":{"name":"verbose","type":"boolean","char":"v","allowNo":false},"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false}},"args":[],"_globalFlags":{}}}}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "penguins-eggs",
3
3
  "description": "Perri's Brewery edition: remaster your system and distribuite it",
4
- "version": "9.0.35",
4
+ "version": "9.0.48",
5
5
  "author": "Piero Proietti @pieroproietti",
6
6
  "bin": {
7
7
  "eggs": "bin/run"
@@ -69,7 +69,8 @@
69
69
  "/manpages",
70
70
  "/oclif.manifest.json",
71
71
  "/scripts",
72
- "/templates"
72
+ "/templates",
73
+ "/wardrobe.d"
73
74
  ],
74
75
  "homepage": "https://penguins-eggs.net/",
75
76
  "keywords": [
package/scripts/_eggs CHANGED
@@ -30,6 +30,10 @@ _eggs () {
30
30
  "tools\:stat:get statistics from sourceforge"
31
31
  "tools\:yolk:configure eggs to install without internet"
32
32
  "update:update the penguin's eggs tool"
33
+ "wardrobe\:ironing:ironing costumes"
34
+ "wardrobe\:list:list, wear costumes"
35
+ "wardrobe\:show:show costumes"
36
+ "wardrobe\:wear:wear costume"
33
37
  "help:Display help for <%= config.bin %>."
34
38
  "autocomplete:display autocomplete installation instructions"
35
39
  "version:"
@@ -171,7 +175,8 @@ remove)
171
175
 
172
176
  syncfrom)
173
177
  _command_flags=(
174
- "--file=-[file with LUKS volume encrypted]:"
178
+ "--delete=-[rsync --delete delete extraneous files from dest dirs]:"
179
+ "--file=-[file LUKS volume encrypted]:"
175
180
  "--rootdir=-[rootdir of the installed system, when used from live]:"
176
181
  "--help[Show CLI help.]"
177
182
  "--verbose[verbose]"
@@ -180,7 +185,7 @@ syncfrom)
180
185
 
181
186
  syncto)
182
187
  _command_flags=(
183
- "--krill[krill]"
188
+ "--delete=-[rsync --delete delete extraneous files from dest dirs]:"
184
189
  "--file=-[file LUKS volume encrypted]:"
185
190
  "--help[Show CLI help.]"
186
191
  "--verbose[verbose]"
@@ -234,6 +239,42 @@ update)
234
239
  )
235
240
  ;;
236
241
 
242
+ wardrobe:ironing)
243
+ _command_flags=(
244
+ "--costume=-[costume]:"
245
+ "--wardrobe=-[wardrobe]:"
246
+ "--verbose[]"
247
+ "--help[Show CLI help.]"
248
+ )
249
+ ;;
250
+
251
+ wardrobe:list)
252
+ _command_flags=(
253
+ "--wardrobe=-[wardrobe]:"
254
+ "--verbose[]"
255
+ "--help[Show CLI help.]"
256
+ )
257
+ ;;
258
+
259
+ wardrobe:show)
260
+ _command_flags=(
261
+ "--wardrobe=-[wardrobe]:"
262
+ "--costume=-[costume]:"
263
+ "--json[output JSON]"
264
+ "--verbose[]"
265
+ "--help[Show CLI help.]"
266
+ )
267
+ ;;
268
+
269
+ wardrobe:wear)
270
+ _command_flags=(
271
+ "--costume=-[Costume]:"
272
+ "--wardrobe=-[wardrobe]:"
273
+ "--verbose[]"
274
+ "--help[Show CLI help.]"
275
+ )
276
+ ;;
277
+
237
278
  help)
238
279
  _command_flags=(
239
280
  "--nested-commands[Include all nested commands in the output.]"
package/scripts/eggs.bash CHANGED
@@ -26,14 +26,18 @@ kill --help --verbose
26
26
  mom --help
27
27
  produce --prefix --basename --backup --fast --normal --max --verbose --yolk --script --help --theme --addons --release
28
28
  remove --purge --autoremove --help --verbose
29
- syncfrom --file --rootdir --help --verbose
30
- syncto --krill --file --help --verbose
29
+ syncfrom --delete --file --rootdir --help --verbose
30
+ syncto --delete --file --help --verbose
31
31
  tools:clean --help --verbose
32
32
  tools:locales --help --reinstall --verbose
33
33
  tools:skel --help --user --verbose
34
34
  tools:stat --help --month --year
35
35
  tools:yolk --help --verbose
36
36
  update --help --apt --basket --verbose
37
+ wardrobe:ironing --costume --wardrobe --verbose --help
38
+ wardrobe:list --wardrobe --verbose --help
39
+ wardrobe:show --wardrobe --costume --json --verbose --help
40
+ wardrobe:wear --costume --wardrobe --verbose --help
37
41
  help --nested-commands
38
42
  autocomplete --refresh-cache
39
43
  version
@@ -0,0 +1,8 @@
1
+ clear
2
+ echo ">>> Re-install Eggs Saving Yolk"
3
+ tmp=`mktemp -d`
4
+ sudo mv /var/local/yolk $tmp
5
+ sudo apt purge eggs
6
+ sudo dpkg -i /tmp/eggs*.deb
7
+ sudo mv $tmp/yolk /var/local
8
+ sudo eggs dad -d
@@ -0,0 +1,7 @@
1
+ wardrobes:
2
+ - authot: artisan,
3
+ url: https://github.com/pieroproietti/penguins-wardrobe,
4
+ description: Some examples from the author of eggs
5
+ - authot: electrikjesus,
6
+ url: https://github.com/electrikjesus/penguins-wardrobe,
7
+ description: Some examples from the author of waydroid
@@ -0,0 +1,10 @@
1
+ Package: {{{name}}}
2
+ Version: {{{version}}}
3
+ Maintainer: {{{mantainer}}}
4
+ Architecture: {{{arch}}}
5
+ Section: {{{section}}}
6
+ Priority: {{{priority}}}
7
+ Description: {{{description}}}
8
+ Depends: {{{depends}}}
9
+ Suggest: {{{suggest}}}
10
+ Conflicts: {{{conflict}}}