penguins-eggs 8.1.3 → 9.0.16
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 +332 -168
- package/addons/README.md +78 -84
- package/addons/{pve → blissos}/theme/applications/install-debian.desktop +0 -0
- package/addons/{deblinux → blissos}/theme/artwork/install-debian.png +0 -0
- package/addons/blissos/theme/calamares/branding/blissos-logo.png +0 -0
- package/addons/{guadalinex → blissos}/theme/calamares/branding/branding.desc +0 -0
- package/addons/blissos/theme/calamares/branding/languages.png +0 -0
- package/addons/blissos/theme/calamares/branding/show.qml +75 -0
- package/addons/blissos/theme/calamares/branding/slide1.png +0 -0
- package/addons/blissos/theme/calamares/branding/slide2.png +0 -0
- package/addons/blissos/theme/calamares/branding/slide3.png +0 -0
- package/addons/blissos/theme/calamares/branding/welcome.png +0 -0
- package/addons/{guadalinex → blissos}/theme/calamares/modules/partition.yml +1 -1
- package/{conf/distros/buster/grub/theme.cfg → addons/blissos/theme/livecd/grub.theme.cfg} +10 -9
- package/{conf/distros/buster/isolinux/stdmenu.template.cfg → addons/blissos/theme/livecd/isolinux.theme.cfg} +4 -0
- package/addons/blissos/theme/livecd/splash.png +0 -0
- package/addons/eggs/adapt/applications/eggs-adapt.desktop +1 -1
- package/addons/eggs/theme/calamares/branding/show.qml +1 -1
- package/addons/eggs/theme/livecd/README.md +19 -6
- package/addons/eggs/theme/livecd/{theme.cfg → grub.theme.cfg} +13 -12
- package/addons/eggs/theme/livecd/isolinux.theme.cfg +46 -0
- package/addons/eggs/theme/livecd/splash.png +0 -0
- package/addons/{ufficiozero/theme/livecd/theme.cfg → neon/theme/livecd/grub.theme.cfg} +13 -12
- package/addons/neon/theme/livecd/isolinux.theme.cfg +46 -0
- package/addons/neon/theme/livecd/splash.png +0 -0
- package/addons/templates/grub.template +28 -0
- package/addons/templates/isolinux.template +29 -0
- package/addons/ufficiozero/theme/applications/install-debian.desktop +17 -2
- package/bin/dev +17 -0
- package/bin/dev.cmd +3 -0
- package/bin/run +2 -4
- package/conf/distros/bionic/calamares/settings.yml +5 -5
- package/conf/distros/bookworm/README.md +9 -0
- package/conf/distros/bullseye/README.md +6 -8
- package/conf/distros/buster/calamares/calamares-modules/sources-yolk/sources-yolk.sh +1 -1
- package/conf/distros/buster/calamares/calamares-modules/sources-yolk/sources-yolk.working.sh +1 -1
- package/conf/distros/buster/calamares/modules/shellprocess_eggs-cleanup.yml +6 -0
- package/conf/distros/buster/calamares/settings.yml +14 -3
- package/conf/distros/chimaera/README.md +3 -0
- package/conf/distros/daedalus/README.md +3 -0
- package/conf/distros/focal/calamares/settings.yml +2 -2
- package/conf/distros/hirsute/README.md +1 -1
- package/conf/distros/impish/README.md +9 -0
- package/conf/distros/jammy/README.md +9 -0
- package/conf/distros/jessie/krill/krill-modules/sources-yolk/sources-yolk.sh +1 -1
- package/conf/distros/rolling/README.md +3 -0
- package/conf/distros/rolling/calamares/calamares-modules/remove-link/module.yml +9 -0
- package/conf/distros/rolling/calamares/calamares-modules/remove-link/remove-link.sh +3 -0
- package/conf/distros/rolling/calamares/modules/displaymanager.yml +22 -0
- package/conf/distros/rolling/calamares/modules/finished.yml +6 -0
- package/conf/distros/rolling/calamares/modules/fstab.yml +13 -0
- package/conf/distros/rolling/calamares/modules/locale.yml +97 -0
- package/conf/distros/rolling/calamares/modules/luksopenswaphookcfg.yml +6 -0
- package/conf/distros/rolling/calamares/modules/mount.yml +38 -0
- package/conf/distros/rolling/calamares/modules/packages.yml +8 -0
- package/conf/distros/rolling/calamares/modules/removeuser.yml +15 -0
- package/conf/distros/rolling/calamares/modules/unpackfs.yml +7 -0
- package/conf/distros/rolling/calamares/modules/users.yml +20 -0
- package/conf/distros/rolling/calamares/modules/welcome.yml +19 -0
- package/conf/distros/{bullseye → rolling}/calamares/settings.yml +17 -12
- package/conf/distros/thirtyfive/README.md +3 -0
- package/conf/distros/tumbleweed/README.md +3 -0
- package/conf/eggs.yaml +3 -3
- package/conf/exclude.list +12 -7
- package/conf/tools.yaml +1 -1
- package/lib/classes/basket.js +24 -20
- package/lib/classes/bleach.js +19 -19
- package/lib/classes/compressors.js +15 -14
- package/lib/classes/daddy.js +44 -31
- package/lib/classes/distro.d.ts +3 -2
- package/lib/classes/distro.js +314 -175
- package/lib/classes/family/archlinux.d.ts +69 -0
- package/lib/classes/family/archlinux.js +182 -0
- package/lib/classes/family/debian.d.ts +64 -0
- package/lib/classes/family/debian.js +227 -0
- package/lib/classes/family/fedora.d.ts +63 -0
- package/lib/classes/family/fedora.js +169 -0
- package/lib/classes/family/suse.d.ts +63 -0
- package/lib/classes/family/suse.js +169 -0
- package/lib/classes/i18n.js +16 -16
- package/lib/classes/incubation/branding.js +5 -4
- package/lib/classes/incubation/distros/bionic.js +1 -2
- package/lib/classes/incubation/distros/buster.js +2 -2
- package/lib/classes/incubation/distros/focal.js +3 -2
- package/lib/classes/incubation/distros/jessie.js +1 -25
- package/lib/classes/incubation/distros/{bullseye.d.ts → rolling.d.ts} +3 -3
- package/lib/classes/incubation/distros/{bullseye.js → rolling.js} +15 -16
- package/lib/classes/incubation/fisherman-helper/displaymanager.js +2 -7
- package/lib/classes/incubation/fisherman-helper/packages.js +31 -32
- package/lib/classes/incubation/fisherman.d.ts +17 -17
- package/lib/classes/incubation/fisherman.js +84 -71
- package/lib/classes/incubation/incubator.js +116 -74
- package/lib/classes/incubation/installer.d.ts +2 -2
- package/lib/classes/incubation/installer.js +6 -20
- package/lib/classes/initrd.d.ts +1 -1
- package/lib/classes/initrd.js +37 -30
- package/lib/classes/krill_install.d.ts +4 -4
- package/lib/classes/krill_install.js +166 -162
- package/lib/classes/krill_prepare.d.ts +6 -2
- package/lib/classes/krill_prepare.js +73 -60
- package/lib/classes/n8.js +6 -11
- package/lib/classes/ovary.d.ts +34 -25
- package/lib/classes/ovary.js +771 -688
- package/lib/classes/pacman.d.ts +55 -56
- package/lib/classes/pacman.js +524 -436
- package/lib/classes/pve-live.js +6 -6
- package/lib/classes/settings.js +47 -56
- package/lib/classes/systemctl.d.ts +6 -6
- package/lib/classes/systemctl.js +7 -7
- package/lib/classes/tools.d.ts +1 -1
- package/lib/classes/tools.js +10 -10
- package/lib/classes/users.d.ts +21 -0
- package/lib/classes/users.js +129 -0
- package/lib/classes/utils.d.ts +10 -13
- package/lib/classes/utils.js +128 -107
- package/lib/classes/xdg.js +112 -91
- package/lib/classes/yolk.js +38 -31
- package/lib/commands/adapt.d.ts +3 -3
- package/lib/commands/adapt.js +12 -12
- package/lib/commands/analyze.d.ts +25 -0
- package/lib/commands/analyze.js +74 -0
- package/lib/commands/bro.d.ts +14 -0
- package/lib/commands/bro.js +31 -0
- package/lib/commands/calamares.d.ts +7 -7
- package/lib/commands/calamares.js +22 -54
- package/lib/commands/config.d.ts +5 -5
- package/lib/commands/config.js +69 -79
- package/lib/commands/dad.d.ts +5 -5
- package/lib/commands/dad.js +11 -11
- package/lib/commands/export/deb.d.ts +8 -8
- package/lib/commands/export/deb.js +16 -16
- package/lib/commands/export/docs.d.ts +2 -2
- package/lib/commands/export/docs.js +9 -9
- package/lib/commands/export/iso.d.ts +4 -4
- package/lib/commands/export/iso.js +12 -17
- package/lib/commands/info.d.ts +9 -3
- package/lib/commands/info.js +14 -164
- package/lib/commands/install.d.ts +5 -5
- package/lib/commands/install.js +28 -42
- package/lib/commands/kill.d.ts +3 -3
- package/lib/commands/kill.js +11 -13
- package/lib/commands/mom.d.ts +2 -2
- package/lib/commands/mom.js +8 -8
- package/lib/commands/produce.d.ts +14 -14
- package/lib/commands/produce.js +48 -46
- package/lib/commands/remove.d.ts +5 -5
- package/lib/commands/remove.js +46 -57
- package/lib/commands/syncfrom.d.ts +37 -0
- package/lib/commands/syncfrom.js +156 -0
- package/lib/commands/syncto.d.ts +48 -0
- package/lib/commands/syncto.js +219 -0
- package/lib/commands/tools/clean.d.ts +3 -3
- package/lib/commands/tools/clean.js +10 -12
- package/lib/commands/tools/locales.d.ts +4 -4
- package/lib/commands/tools/locales.js +8 -8
- package/lib/commands/tools/skel.d.ts +4 -4
- package/lib/commands/tools/skel.js +10 -15
- package/lib/commands/tools/stat.d.ts +7 -4
- package/lib/commands/tools/stat.js +20 -13
- package/lib/commands/tools/yolk.d.ts +3 -3
- package/lib/commands/tools/yolk.js +13 -13
- package/lib/commands/update.d.ts +5 -10
- package/lib/commands/update.js +56 -72
- package/lib/components/elements/information.d.ts +4 -0
- package/lib/components/elements/information.js +166 -0
- package/lib/components/elements/steps.js +1 -1
- package/lib/components/elements/title.js +7 -10
- package/lib/components/finished.js +5 -5
- package/lib/components/install.js +5 -5
- package/lib/components/keyboard.js +5 -5
- package/lib/components/location.js +5 -5
- package/lib/components/network.js +5 -5
- package/lib/components/partitions.d.ts +2 -1
- package/lib/components/partitions.js +9 -7
- package/lib/components/summary.js +5 -5
- package/lib/components/users.js +6 -6
- package/lib/components/welcome.js +6 -6
- package/lib/index.d.ts +1 -1
- package/lib/index.js +2 -2
- package/lib/interfaces/i-analyze.d.ts +13 -0
- package/lib/interfaces/i-analyze.js +18 -0
- package/lib/interfaces/i-distro.d.ts +3 -2
- package/lib/interfaces/i-krill.d.ts +1 -0
- package/lib/interfaces/i-settings.d.ts +2 -2
- package/lib/lib/cli-autologin.d.ts +19 -2
- package/lib/lib/cli-autologin.js +114 -39
- package/lib/lib/dependencies.d.ts +9 -6
- package/lib/lib/dependencies.js +22 -13
- package/lib/lib/get_address.js +2 -2
- package/lib/lib/get_dns.js +2 -2
- package/lib/lib/get_domain.js +2 -2
- package/lib/lib/get_gateway.js +2 -2
- package/lib/lib/get_hostname.js +2 -2
- package/lib/lib/get_netmask.js +2 -2
- package/lib/lib/get_password.js +3 -2
- package/lib/lib/get_root_password.js +2 -2
- package/lib/lib/get_userfullname.js +2 -2
- package/lib/lib/get_username.js +2 -2
- package/lib/lib/select_address_type.js +2 -5
- package/lib/lib/select_filesystem_type.js +5 -14
- package/lib/lib/select_installation_device.js +3 -3
- package/lib/lib/select_interface.js +1 -1
- package/lib/lib/select_keyboard_layout.js +2 -10
- package/lib/lib/select_languages.js +2 -2
- package/lib/lib/select_regions.js +1 -12
- package/lib/lib/select_user_swap_choice.js +4 -4
- package/lib/lib/select_zones.js +483 -62
- package/manpages/doc/man/eggs.html +508 -0
- package/manpages/doc/man/eggs.roll.gz +0 -0
- package/oclif.manifest.json +1 -1
- package/package.json +115 -107
- package/scripts/_eggs +275 -0
- package/scripts/bros/waydroid-helper.sh +92 -0
- package/scripts/eggs.bash +68 -19
- package/scripts/mom-cli.sh +6 -5
- package/scripts/not-used/eggs-cleanup.sh +7 -0
- package/scripts/not-used/install-eggs-ppa.sh +2 -0
- package/scripts/{mkinitramfs → not-used/mkinitramfs} +0 -0
- package/scripts/{pve-live.sh → not-used/pve-live.sh} +0 -0
- package/addons/debian/theme/applications/install-debian.desktop +0 -13
- package/addons/debian/theme/artwork/install-debian.png +0 -0
- package/addons/debian/theme/branding/branding.desc +0 -27
- package/addons/debian/theme/branding/debian-logo.png +0 -0
- package/addons/debian/theme/branding/show.qml +0 -51
- package/addons/debian/theme/branding/slide1.png +0 -0
- package/addons/debian/theme/branding/welcome.png +0 -0
- package/addons/deblinux/theme/README.md +0 -16
- package/addons/deblinux/theme/applications/install-debian.desktop +0 -13
- package/addons/deblinux/theme/calamares/branding/branding.desc +0 -23
- package/addons/deblinux/theme/calamares/branding/deblinux-logo.png +0 -0
- package/addons/deblinux/theme/calamares/branding/show.qml +0 -46
- package/addons/deblinux/theme/calamares/branding/slide1.png +0 -0
- package/addons/deblinux/theme/calamares/branding/welcome.png +0 -0
- package/addons/deblinux/theme/calamares/modules/partition.yml +0 -233
- package/addons/eggs/theme/calamares/branding/4tation.png +0 -0
- package/addons/eggs/theme/livecd/grub.template.cfg +0 -60
- package/addons/eggs/theme/livecd/menu.template.cfg +0 -54
- package/addons/guadalinex/theme/README.md +0 -9
- package/addons/guadalinex/theme/applications/install-debian.desktop +0 -28
- package/addons/guadalinex/theme/artwork/install-debian.png +0 -0
- package/addons/guadalinex/theme/calamares/branding/guadalinex-logo.png +0 -0
- package/addons/guadalinex/theme/calamares/branding/show.qml +0 -85
- package/addons/guadalinex/theme/calamares/branding/slide1.png +0 -0
- package/addons/guadalinex/theme/calamares/branding/slide2.png +0 -0
- package/addons/guadalinex/theme/calamares/branding/slide3.png +0 -0
- package/addons/guadalinex/theme/calamares/branding/slide4.png +0 -0
- package/addons/guadalinex/theme/calamares/branding/slide5.png +0 -0
- package/addons/guadalinex/theme/calamares/branding/slide6.png +0 -0
- package/addons/guadalinex/theme/calamares/branding/slide7.png +0 -0
- package/addons/guadalinex/theme/calamares/branding/welcome.png +0 -0
- package/addons/guadalinex/theme/livecd/menu.template.cfg +0 -54
- package/addons/guadalinex/theme/livecd/splash.png +0 -0
- package/addons/guadalinex/theme/livecd/theme.cfg +0 -42
- package/addons/openos/theme/applications/Install-OpenOS-Neon_RLTS-Desktop.png +0 -0
- package/addons/openos/theme/applications/install-debian.desktop +0 -24
- package/addons/openos/theme/artwork/install-debian.png +0 -0
- package/addons/openos/theme/calamares/branding/branding.desc +0 -28
- package/addons/openos/theme/calamares/branding/openos-logo.png +0 -0
- package/addons/openos/theme/calamares/branding/show.qml +0 -203
- package/addons/openos/theme/calamares/branding/slide1.png +0 -0
- package/addons/openos/theme/calamares/branding/slide10.png +0 -0
- package/addons/openos/theme/calamares/branding/slide11.png +0 -0
- package/addons/openos/theme/calamares/branding/slide12.png +0 -0
- package/addons/openos/theme/calamares/branding/slide13.png +0 -0
- package/addons/openos/theme/calamares/branding/slide14.png +0 -0
- package/addons/openos/theme/calamares/branding/slide15.png +0 -0
- package/addons/openos/theme/calamares/branding/slide16.png +0 -0
- package/addons/openos/theme/calamares/branding/slide2.png +0 -0
- package/addons/openos/theme/calamares/branding/slide3.png +0 -0
- package/addons/openos/theme/calamares/branding/slide4.png +0 -0
- package/addons/openos/theme/calamares/branding/slide5.png +0 -0
- package/addons/openos/theme/calamares/branding/slide6.png +0 -0
- package/addons/openos/theme/calamares/branding/slide7.png +0 -0
- package/addons/openos/theme/calamares/branding/slide8.png +0 -0
- package/addons/openos/theme/calamares/branding/slide9.png +0 -0
- package/addons/openos/theme/calamares/branding/welcome.png +0 -0
- package/addons/openos/theme/calamares/branding.desc +0 -24
- package/addons/openos/theme/calamares/lang/calamares-default_ar.qm +0 -0
- package/addons/openos/theme/calamares/lang/calamares-default_en.qm +0 -0
- package/addons/openos/theme/calamares/lang/calamares-default_eo.qm +0 -0
- package/addons/openos/theme/calamares/lang/calamares-default_fr.qm +0 -0
- package/addons/openos/theme/calamares/lang/calamares-default_nl.qm +0 -0
- package/addons/openos/theme/calamares/modules/partition.yml +0 -233
- package/addons/openos/theme/livecd/grub.template.cfg +0 -60
- package/addons/openos/theme/livecd/menu.template.cfg +0 -54
- package/addons/openos/theme/livecd/splash.png +0 -0
- package/addons/openos/theme/livecd/theme.cfg +0 -42
- package/addons/pve/theme/applications/penguins-pve.desktop +0 -24
- package/addons/pve/theme/artwork/install-debian.png +0 -0
- package/addons/pve/theme/calamares/branding/branding.desc +0 -1
- package/addons/pve/theme/calamares/branding/pve-logo.png +0 -0
- package/addons/pve/theme/calamares/branding/show.qml +0 -227
- package/addons/pve/theme/calamares/branding/slide1.png +0 -0
- package/addons/pve/theme/calamares/branding/slide2.png +0 -0
- package/addons/pve/theme/calamares/branding/slide3.png +0 -0
- package/addons/pve/theme/calamares/branding/slide4.png +0 -0
- package/addons/pve/theme/calamares/branding/slide5.png +0 -0
- package/addons/pve/theme/calamares/branding/slide6.png +0 -0
- package/addons/pve/theme/calamares/branding/slide7.png +0 -0
- package/addons/pve/theme/calamares/branding/slide8.png +0 -0
- package/addons/pve/theme/calamares/branding/slide9.png +0 -0
- package/addons/pve/theme/calamares/branding/welcome.png +0 -0
- package/addons/pve/theme/calamares/modules/partition.yml +0 -233
- package/addons/pve/theme/livecd/README.md +0 -8
- package/addons/pve/theme/livecd/grub.template.cfg +0 -60
- package/addons/pve/theme/livecd/menu.template.cfg +0 -54
- package/addons/pve/theme/livecd/splash.png +0 -0
- package/addons/pve/theme/livecd/theme.cfg +0 -42
- package/addons/ufficiozero/theme/artwork/install-debian.png +0 -0
- package/addons/ufficiozero/theme/livecd/README.md +0 -8
- package/addons/ufficiozero/theme/livecd/grub.template.cfg +0 -60
- package/addons/ufficiozero/theme/livecd/menu.template.cfg +0 -54
- package/conf/distros/bullseye/calamares/calamares-modules/bootloader-config/bootloader-config.sh +0 -28
- package/conf/distros/bullseye/calamares/calamares-modules/bootloader-config/module.yml +0 -8
- package/conf/distros/buster/grub/grub.template.cfg +0 -58
- package/conf/distros/buster/grub/loopback.cfg +0 -1
- package/conf/distros/buster/isolinux/isolinux.template.cfg +0 -8
- package/conf/distros/buster/isolinux/menu.template.cfg +0 -56
- package/conf/distros/focal/grub/grub.template.cfg +0 -67
- package/conf/distros/focal/isolinux/menu.template.cfg +0 -54
- package/lib/classes/incubation/distros/beowulf.d.ts +0 -30
- package/lib/classes/incubation/distros/beowulf.js +0 -69
- package/manpages/doc/man/eggs.1.gz +0 -0
package/addons/README.md
CHANGED
|
@@ -1,86 +1,80 @@
|
|
|
1
1
|
# eggs addons
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
3
|
+
## Themes
|
|
4
|
+
|
|
5
|
+
You can customize the boot of live images made with eggs using **themes**.
|
|
6
|
+
|
|
7
|
+
A **theme** consists of a simple folder under addons, called with the name of
|
|
8
|
+
vendor (in the example: blissos), that includes:
|
|
9
|
+
|
|
10
|
+
```
|
|
11
|
+
blissos/
|
|
12
|
+
theme
|
|
13
|
+
applications
|
|
14
|
+
artwork
|
|
15
|
+
calamares
|
|
16
|
+
branding
|
|
17
|
+
modules
|
|
18
|
+
livecd
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
* in **applications** we have the desktop link named **install-debian.desktop** into calamares startup;
|
|
22
|
+
* in **artwork** the icon named **install-debian.png** for the calamares launcher
|
|
23
|
+
* in **calamares** we have two directories: **branding** with your slides for calamares and **modules**
|
|
24
|
+
* **livecd** includes grub and isolinux templates, buoot splash named **splash.png** and theme for grub and isolinux.
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
# How to proceed in creating an original theme
|
|
28
|
+
Copy the structure of an existing theme and rename it with your desired name. mutheme
|
|
29
|
+
|
|
30
|
+
Example with sources: need to install build-essential, git and nodejs v.16.
|
|
31
|
+
|
|
32
|
+
```
|
|
33
|
+
sudo apt install build-essential git nodejs
|
|
34
|
+
git clone https://github.com/pieroproietti/penguins-eggs
|
|
35
|
+
cd penguins-eggs
|
|
36
|
+
npm install
|
|
37
|
+
cp -r addons/blissos addons/mytheme
|
|
38
|
+
```
|
|
39
|
+
edit your theme with a nice editor.
|
|
40
|
+
```
|
|
41
|
+
sudo ./eggs produce --fast --theme mytheme
|
|
42
|
+
```
|
|
43
|
+
Example with eggs installed as package:
|
|
44
|
+
```
|
|
45
|
+
sudo cd /usr/lib/penguins-eggs
|
|
46
|
+
sudo cp -r addons/blissos addons/mytheme
|
|
47
|
+
```
|
|
48
|
+
edit your theme with a nice editor.
|
|
49
|
+
```
|
|
50
|
+
sudo eggs produce --fast --theme mytheme
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
# Other addons (vendor eggs)
|
|
55
|
+
|
|
56
|
+
Themes are nothing more than addons developed by third parties: vendors.
|
|
57
|
+
|
|
58
|
+
For eggs - the default vendor, named **eggs** - in addition to the default
|
|
59
|
+
theme there are additional addons provided:
|
|
60
|
+
|
|
61
|
+
* **--adapt** it is an addon that I often use - working mainly on virtual machines -
|
|
62
|
+
and allows me to to adapt with a click the monitor of the VM to the set
|
|
63
|
+
video window;
|
|
64
|
+
* __--ichoice__ allows the selection of the installer between calamares and krill
|
|
65
|
+
(recommended on machines with little memory < 1GB);
|
|
66
|
+
* __--pve__ create a desktop icon to admin a [proxmox-ve](https://www.proxmox.com/en/proxmox-ve) installed locally, it's incredible but can work on the live iso too. You can follow this easy guide: [Install Proxmox VE on Debian 11 Bullseye](https://pve.proxmox.com/wiki/Install_Proxmox_VE_on_Debian_11_Bullseye);
|
|
67
|
+
* __--rsupport__ create an icon for [dwagent](https://www.dwservice.net) that must be installed locally.
|
|
68
|
+
|
|
69
|
+
# More informations
|
|
70
|
+
There is a [Penguin's eggs official book](https://penguins-eggs.net/book/) and same other documentation - mostly for developers - on [penguins-eggs repo](https://github.com/pieroproietti/penguins-eggs) under **documents** and **i386**.
|
|
71
|
+
|
|
72
|
+
* [penguin's eggs blog](https://penguins-eggs.net)
|
|
73
|
+
* [facebook penguin's eggs group](https://www.facebook.com/groups/128861437762355/)
|
|
74
|
+
* [twitter](https://twitter.com/pieroproietti)
|
|
75
|
+
* [sources](https://github.com/pieroproietti/penguins-krill)
|
|
76
|
+
|
|
77
|
+
You can contact me at pieroproietti@gmail.com or [meet me](https://meet.jit.si/PenguinsEggsMeeting)
|
|
78
|
+
|
|
79
|
+
## Copyright and licenses
|
|
80
|
+
Copyright (c) 2017, 2021 [Piero Proietti](https://penguins-eggs.net/about-me.html), dual licensed under the MIT or GPL Version 2 licenses.
|
|
File without changes
|
|
File without changes
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
/* === This file is part of Calamares - <https://github.com/calamares> ===
|
|
2
|
+
*
|
|
3
|
+
* Copyright 2015, Teo Mrnjavac <teo@kde.org>
|
|
4
|
+
*
|
|
5
|
+
* Calamares is free software: you can redistribute it and/or modify
|
|
6
|
+
* it under the terms of the GNU General Public License as published by
|
|
7
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
8
|
+
* (at your option) any later version.
|
|
9
|
+
*
|
|
10
|
+
* Calamares is distributed in the hope that it will be useful,
|
|
11
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
12
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
13
|
+
* GNU General Public License for more details.
|
|
14
|
+
*
|
|
15
|
+
* You should have received a copy of the GNU General Public License
|
|
16
|
+
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
|
17
|
+
*/
|
|
18
|
+
|
|
19
|
+
import QtQuick 2.0;
|
|
20
|
+
import calamares.slideshow 1.0;
|
|
21
|
+
|
|
22
|
+
Presentation
|
|
23
|
+
{
|
|
24
|
+
id: presentation
|
|
25
|
+
|
|
26
|
+
function nextSlide() {
|
|
27
|
+
presentation.goToNextSlide();
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
Timer {
|
|
31
|
+
id: advanceTimer
|
|
32
|
+
interval: 10000
|
|
33
|
+
running: true
|
|
34
|
+
repeat: true
|
|
35
|
+
onTriggered: nextSlide()
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
Slide {
|
|
39
|
+
anchors.fill: parent
|
|
40
|
+
|
|
41
|
+
Image {
|
|
42
|
+
id: background1
|
|
43
|
+
source: "slide1"
|
|
44
|
+
width: 900; height: 600
|
|
45
|
+
fillMode: Image.PreserveAspectFit
|
|
46
|
+
anchors.centerIn: parent
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
Slide {
|
|
51
|
+
anchors.fill: parent
|
|
52
|
+
|
|
53
|
+
Image {
|
|
54
|
+
id: background2
|
|
55
|
+
source: "slide2.png"
|
|
56
|
+
width: 900; height: 600
|
|
57
|
+
fillMode: Image.PreserveAspectFit
|
|
58
|
+
anchors.centerIn: parent
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
Slide {
|
|
63
|
+
anchors.fill: parent
|
|
64
|
+
|
|
65
|
+
Image {
|
|
66
|
+
id: background3
|
|
67
|
+
source: "slide3.png"
|
|
68
|
+
width: 900; height: 600
|
|
69
|
+
fillMode: Image.PreserveAspectFit
|
|
70
|
+
anchors.centerIn: parent
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
Component.onCompleted: advanceTimer.running = true
|
|
75
|
+
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -92,7 +92,7 @@ initialPartitioningChoice: none
|
|
|
92
92
|
#
|
|
93
93
|
# The default is "none" (no swap) if that is one of the enabled options, otherwise
|
|
94
94
|
# one of the items from the options.
|
|
95
|
-
initialSwapChoice:
|
|
95
|
+
initialSwapChoice: small
|
|
96
96
|
|
|
97
97
|
# Default partition table type, used when a "erase" disk is made.
|
|
98
98
|
#
|
|
@@ -1,19 +1,20 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
# GRUB2 gfxmenu theme
|
|
2
|
+
|
|
3
|
+
# Global Property
|
|
4
|
+
title-color: "white"
|
|
5
|
+
title-text: "BlissOS: Android for your PC"
|
|
3
6
|
# title-font: "Sans Regular 20"
|
|
4
7
|
desktop-color: "blue"
|
|
5
|
-
desktop-image: "
|
|
6
|
-
#message-color: "white"
|
|
7
|
-
#message-bg-color: "cyan"
|
|
8
|
-
#terminal-font: "Sans Regular 12"
|
|
8
|
+
desktop-image: "splash.png"
|
|
9
9
|
|
|
10
|
+
# show boot_menu
|
|
10
11
|
+ boot_menu {
|
|
11
12
|
top = 150
|
|
12
13
|
left = 15%
|
|
13
14
|
width = 75%
|
|
14
15
|
height = 130
|
|
15
16
|
#item_font = "Sans Regular 12"
|
|
16
|
-
item_color = "
|
|
17
|
+
item_color = "gray"
|
|
17
18
|
selected_item_color = "white"
|
|
18
19
|
item_height = 20
|
|
19
20
|
item_padding = 15
|
|
@@ -38,5 +39,5 @@ desktop-image: "/isolinux/splash.png"
|
|
|
38
39
|
+ vbox {
|
|
39
40
|
top = 100%
|
|
40
41
|
left = 2%
|
|
41
|
-
+ label {text = "Press 'E' key to edit" font = "Sans 10" color = "white" align = "left"}
|
|
42
|
-
}
|
|
42
|
+
+ label {text = "Press 'E' key to edit, 'C' for command." font = "Sans 10" color = "white" align = "left"}
|
|
43
|
+
}
|
|
Binary file
|
|
@@ -57,7 +57,7 @@ Presentation
|
|
|
57
57
|
anchors.horizontalCenter: reproductiveSystem.horizontalCenter
|
|
58
58
|
anchors.top: background.top
|
|
59
59
|
text: qsTr("<h1>Penguin's eggs</h1><br/>"+
|
|
60
|
-
"<h2>
|
|
60
|
+
"<h2>eggs: the reproductive system of penguins!</h2>"+
|
|
61
61
|
"<h3>https://penguins-eggs.net</h3>")
|
|
62
62
|
wrapMode: Text.WordWrap
|
|
63
63
|
width: 800
|
|
@@ -1,8 +1,21 @@
|
|
|
1
|
-
|
|
1
|
+
# livecd customization
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
LiveCD customization is composed of:
|
|
4
|
+
* grub.theme.cfg
|
|
5
|
+
* isolinux.theme.cfg
|
|
6
|
+
* splash.png
|
|
4
7
|
|
|
5
|
-
|
|
6
|
-
theme
|
|
7
|
-
|
|
8
|
-
|
|
8
|
+
## How it work
|
|
9
|
+
eggs take cure to copy your theme configurations on /boot/grub and /isolinux on the ISO image.
|
|
10
|
+
|
|
11
|
+
## grub
|
|
12
|
+
You can adapt the grub theme file according to your needs. During the production of eggs a grub.cfh will be geerated and copied under ```/boot/grub``` directory of the image.
|
|
13
|
+
* __grub.theme.cfg__ -> will became -> __/boot/grub/theme.cfg__ under the iso
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
## isolinux
|
|
17
|
+
You can adapt the isolinux theme. During the production of eggs an isolilinux.cfg will be generated and copied under ```/isolinux``` directory of the image.
|
|
18
|
+
* __isolinux.theme.cfg__ -> will became -> __/isolinux/theme.cfg__ under the iso
|
|
19
|
+
|
|
20
|
+
## splash
|
|
21
|
+
Both isolinux and grub themes use the same splash file.
|
|
@@ -1,20 +1,21 @@
|
|
|
1
|
-
|
|
2
|
-
title-text: "Penguin's eggs - Perri's Brewery edition -"
|
|
3
|
-
# title-font: "Sans Regular 20"
|
|
4
|
-
desktop-color: "grey"
|
|
5
|
-
desktop-image: "/isolinux/splash.png"
|
|
6
|
-
#message-color: "white"
|
|
7
|
-
#message-bg-color: "cyan"
|
|
8
|
-
#terminal-font: "Sans Regular 12"
|
|
1
|
+
# GRUB2 gfxmenu theme
|
|
9
2
|
|
|
3
|
+
# Global Property
|
|
4
|
+
title-color: "blue"
|
|
5
|
+
title-text: "Penguin's eggs - Perri's brewery edition"
|
|
6
|
+
title-font: "Sans Regular 20"
|
|
7
|
+
desktop-color: "black"
|
|
8
|
+
desktop-image: "splash.png"
|
|
9
|
+
|
|
10
|
+
# show boot_menu
|
|
10
11
|
+ boot_menu {
|
|
11
12
|
top = 150
|
|
12
13
|
left = 15%
|
|
13
14
|
width = 75%
|
|
14
15
|
height = 130
|
|
15
|
-
|
|
16
|
-
item_color = "
|
|
17
|
-
selected_item_color = "
|
|
16
|
+
item_font = "Sans Regular 12"
|
|
17
|
+
item_color = "black"
|
|
18
|
+
selected_item_color = "blue"
|
|
18
19
|
item_height = 20
|
|
19
20
|
item_padding = 15
|
|
20
21
|
item_spacing = 5
|
|
@@ -38,5 +39,5 @@ desktop-image: "/isolinux/splash.png"
|
|
|
38
39
|
+ vbox {
|
|
39
40
|
top = 100%
|
|
40
41
|
left = 2%
|
|
41
|
-
+ label {text = "Press 'E' key to edit" font = "Sans 10" color = "white" align = "left"}
|
|
42
|
+
+ label {text = "Press 'E' key to edit, 'C' for command." font = "Sans 10" color = "white" align = "left"}
|
|
42
43
|
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
#
|
|
2
|
+
# eggs: isolinux.theme
|
|
3
|
+
#
|
|
4
|
+
MENU TITLE Penguin's eggs - Perri's brewery edition
|
|
5
|
+
MENU BACKGROUND splash.png
|
|
6
|
+
|
|
7
|
+
# MENU COLOR element backgound foreground shadow
|
|
8
|
+
# background and foreground are hexadecimal digits for alpha (opacity), red, green and blue,
|
|
9
|
+
# respectively. #00000000 represents fully transparent, and #ffffffff represents opaque white.
|
|
10
|
+
# shadow none/std
|
|
11
|
+
MENU COLOR screen 37;40 #80ffffff #00000000 std
|
|
12
|
+
MENU COLOR border 30;44 #40000000 #00000000 std
|
|
13
|
+
MENU COLOR title 1;36;44 #c00090f0 #00000000 std
|
|
14
|
+
MENU COLOR unsel 37;44 #90ffffff #00000000 std
|
|
15
|
+
MENU COLOR sel 7;37;40 #e0000000 #20ff8000 all
|
|
16
|
+
MENU COLOR hotsel 1;7;37;40 #e0400000 #20ff8000 all
|
|
17
|
+
MENU COLOR disabled 1;30;44 #60cccccc #00000000 std
|
|
18
|
+
MENU COLOR scrollbar 30;44 #40000000 #00000000 std
|
|
19
|
+
MENU COLOR tabmsg 31;40 #90ffff00 #00000000 std
|
|
20
|
+
MENU COLOR cmdmark 1;36;40 #c000ffff #00000000 std
|
|
21
|
+
MENU COLOR cmdline 37;40 #c0ffffff #00000000 std
|
|
22
|
+
MENU COLOR pwdborder 30;47 #80ffffff #20ffffff std
|
|
23
|
+
MENU COLOR pwdheader 31;47 #80ff8080 #20ffffff std
|
|
24
|
+
MENU COLOR pwdentry 30;47 #80ffffff #20ffffff std
|
|
25
|
+
MENU COLOR timeout_msg 37;40 #80ffffff #00000000 std
|
|
26
|
+
MENU COLOR timeout 1;37;40 #c0ffffff #00000000 std
|
|
27
|
+
MENU COLOR help 37;40 #c0ffffff #00000000 std
|
|
28
|
+
MENU COLOR msg07 37;40 #90ffffff #00000000 std
|
|
29
|
+
|
|
30
|
+
# POSIZIONE
|
|
31
|
+
MENU WIDTH 80
|
|
32
|
+
MENU MARGIN 10
|
|
33
|
+
MENU PASSWORDMARGIN 3
|
|
34
|
+
MENU ROWS 12
|
|
35
|
+
MENU TABMSGROW 18
|
|
36
|
+
MENU CMDLINEROW 18
|
|
37
|
+
MENU ENDROW -1
|
|
38
|
+
MENU PASSWORDROW 11
|
|
39
|
+
MENU TIMEOUTROW 20
|
|
40
|
+
MENU HELPMSGROW 22
|
|
41
|
+
MENU HELPMSGENDROW -1
|
|
42
|
+
MENU HIDDENROW -2
|
|
43
|
+
MENU HSHIFT 0
|
|
44
|
+
MENU VSHIFT 0
|
|
45
|
+
|
|
46
|
+
MENU tabmsg Press ENTER to boot or TAB to edit a menu entry
|
|
Binary file
|
|
@@ -1,20 +1,21 @@
|
|
|
1
|
-
|
|
2
|
-
title-text: "Ufficio zero"
|
|
3
|
-
# title-font: "Sans Regular 20"
|
|
4
|
-
desktop-color: "grey"
|
|
5
|
-
desktop-image: "/isolinux/splash.png"
|
|
6
|
-
#message-color: "white"
|
|
7
|
-
#message-bg-color: "cyan"
|
|
8
|
-
#terminal-font: "Sans Regular 12"
|
|
1
|
+
# GRUB2 gfxmenu theme
|
|
9
2
|
|
|
3
|
+
# Global Property
|
|
4
|
+
title-color: "blue"
|
|
5
|
+
title-text: "Penguin's eggs - KDE neon theme"
|
|
6
|
+
title-font: "Sans Regular 20"
|
|
7
|
+
desktop-color: "black"
|
|
8
|
+
desktop-image: "splash.png"
|
|
9
|
+
|
|
10
|
+
# show boot_menu
|
|
10
11
|
+ boot_menu {
|
|
11
12
|
top = 150
|
|
12
13
|
left = 15%
|
|
13
14
|
width = 75%
|
|
14
15
|
height = 130
|
|
15
|
-
|
|
16
|
-
item_color = "
|
|
17
|
-
selected_item_color = "
|
|
16
|
+
item_font = "Sans Regular 12"
|
|
17
|
+
item_color = "black"
|
|
18
|
+
selected_item_color = "blue"
|
|
18
19
|
item_height = 20
|
|
19
20
|
item_padding = 15
|
|
20
21
|
item_spacing = 5
|
|
@@ -38,5 +39,5 @@ desktop-image: "/isolinux/splash.png"
|
|
|
38
39
|
+ vbox {
|
|
39
40
|
top = 100%
|
|
40
41
|
left = 2%
|
|
41
|
-
+ label {text = "Press 'E' key to edit" font = "Sans 10" color = "white" align = "left"}
|
|
42
|
+
+ label {text = "Press 'E' key to edit, 'C' for command." font = "Sans 10" color = "white" align = "left"}
|
|
42
43
|
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
#
|
|
2
|
+
# eggs: isolinux.theme
|
|
3
|
+
#
|
|
4
|
+
MENU TITLE Penguin's eggs - Neon KDE developer
|
|
5
|
+
MENU BACKGROUND splash.png
|
|
6
|
+
|
|
7
|
+
# MENU COLOR element backgound foreground shadow
|
|
8
|
+
# background and foreground are hexadecimal digits for alpha (opacity), red, green and blue,
|
|
9
|
+
# respectively. #00000000 represents fully transparent, and #ffffffff represents opaque white.
|
|
10
|
+
# shadow none/std
|
|
11
|
+
MENU COLOR screen 37;40 #80ffffff #00000000 std
|
|
12
|
+
MENU COLOR border 30;44 #40000000 #00000000 std
|
|
13
|
+
MENU COLOR title 1;36;44 #c00090f0 #00000000 std
|
|
14
|
+
MENU COLOR unsel 37;44 #90ffffff #00000000 std
|
|
15
|
+
MENU COLOR sel 7;37;40 #e0000000 #20ff8000 all
|
|
16
|
+
MENU COLOR hotsel 1;7;37;40 #e0400000 #20ff8000 all
|
|
17
|
+
MENU COLOR disabled 1;30;44 #60cccccc #00000000 std
|
|
18
|
+
MENU COLOR scrollbar 30;44 #40000000 #00000000 std
|
|
19
|
+
MENU COLOR tabmsg 31;40 #90ffff00 #00000000 std
|
|
20
|
+
MENU COLOR cmdmark 1;36;40 #c000ffff #00000000 std
|
|
21
|
+
MENU COLOR cmdline 37;40 #c0ffffff #00000000 std
|
|
22
|
+
MENU COLOR pwdborder 30;47 #80ffffff #20ffffff std
|
|
23
|
+
MENU COLOR pwdheader 31;47 #80ff8080 #20ffffff std
|
|
24
|
+
MENU COLOR pwdentry 30;47 #80ffffff #20ffffff std
|
|
25
|
+
MENU COLOR timeout_msg 37;40 #80ffffff #00000000 std
|
|
26
|
+
MENU COLOR timeout 1;37;40 #c0ffffff #00000000 std
|
|
27
|
+
MENU COLOR help 37;40 #c0ffffff #00000000 std
|
|
28
|
+
MENU COLOR msg07 37;40 #90ffffff #00000000 std
|
|
29
|
+
|
|
30
|
+
# POSIZIONE
|
|
31
|
+
MENU WIDTH 80
|
|
32
|
+
MENU MARGIN 10
|
|
33
|
+
MENU PASSWORDMARGIN 3
|
|
34
|
+
MENU ROWS 12
|
|
35
|
+
MENU TABMSGROW 18
|
|
36
|
+
MENU CMDLINEROW 18
|
|
37
|
+
MENU ENDROW -1
|
|
38
|
+
MENU PASSWORDROW 11
|
|
39
|
+
MENU TIMEOUTROW 20
|
|
40
|
+
MENU HELPMSGROW 22
|
|
41
|
+
MENU HELPMSGENDROW -1
|
|
42
|
+
MENU HIDDENROW -2
|
|
43
|
+
MENU HSHIFT 0
|
|
44
|
+
MENU VSHIFT 0
|
|
45
|
+
|
|
46
|
+
MENU tabmsg Press ENTER to boot or TAB to edit a menu entry
|
|
Binary file
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
#
|
|
2
|
+
# eggs: grub.template.cfg
|
|
3
|
+
#
|
|
4
|
+
|
|
5
|
+
if loadfont $prefix/font.pf2 ; then
|
|
6
|
+
set gfxmode=640x480
|
|
7
|
+
insmod efi_gop
|
|
8
|
+
insmod efi_uga
|
|
9
|
+
insmod video_bochs
|
|
10
|
+
insmod video_cirrus
|
|
11
|
+
insmod gfxterm
|
|
12
|
+
insmod jpeg
|
|
13
|
+
insmod png
|
|
14
|
+
terminal_output gfxterm
|
|
15
|
+
fi
|
|
16
|
+
|
|
17
|
+
set theme=/boot/grub/theme.cfg
|
|
18
|
+
|
|
19
|
+
menuentry "{{{fullname}}} (kernel {{{kernel}}})" {
|
|
20
|
+
set gfxpayload=keep
|
|
21
|
+
linux {{{vmlinuz}}} {{{kernel_parameters}}} quiet splash
|
|
22
|
+
initrd {{{initrdImg}}}
|
|
23
|
+
}
|
|
24
|
+
menuentry "{{{fullname}}} safe" {
|
|
25
|
+
set gfxpayload=keep
|
|
26
|
+
linux {{{vmlinuz}}} {{{kernel_parameters}}}
|
|
27
|
+
initrd {{{initrdImg}}}
|
|
28
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# eggs: isolinux.cfg
|
|
2
|
+
#
|
|
3
|
+
|
|
4
|
+
# search path for the c32 support libraries (libcom32, libutil etc.)
|
|
5
|
+
path
|
|
6
|
+
include isolinux.theme.cfg
|
|
7
|
+
default vesamenu.c32
|
|
8
|
+
prompt 0
|
|
9
|
+
timeout 200
|
|
10
|
+
#
|
|
11
|
+
#
|
|
12
|
+
|
|
13
|
+
label default
|
|
14
|
+
menu label {{{fullname}}} (kernel {{{kernel}}})
|
|
15
|
+
menu default
|
|
16
|
+
say "Booting {{{fullname}}} GNU/Linux Live (kernel {{{kernel}}})"
|
|
17
|
+
linux {{{vmlinuz}}}
|
|
18
|
+
append initrd={{{initrdImg}}} {{{kernel_parameters}}}
|
|
19
|
+
|
|
20
|
+
label safe
|
|
21
|
+
menu label {{{fullname}}} safe
|
|
22
|
+
say "Booting {{{fullname}}} GNU/Linux Live (kernel {{{kernel}}})"
|
|
23
|
+
linux {{{vmlinuz}}}
|
|
24
|
+
append initrd={{{initrdImg}}} {{{kernel_parameters}}}
|
|
25
|
+
|
|
26
|
+
label boot from local disk
|
|
27
|
+
com32 chain.c32
|
|
28
|
+
append hd1 1 swap
|
|
29
|
+
|
|
@@ -1,13 +1,28 @@
|
|
|
1
1
|
[Desktop Entry]
|
|
2
2
|
Type=Application
|
|
3
3
|
Version=1.0
|
|
4
|
-
Name=Install
|
|
4
|
+
Name=Install Linux
|
|
5
5
|
GenericName=Calamares Installer
|
|
6
6
|
Exec=/sbin/install-debian
|
|
7
|
-
Comment=Calamares — Installer
|
|
7
|
+
Comment=Calamares — Installer for Debian Live
|
|
8
8
|
Keywords=calamares;system;install;debian;installer
|
|
9
9
|
Icon=install-debian
|
|
10
10
|
Terminal=false
|
|
11
11
|
Categories=Qt;System;
|
|
12
12
|
StartupWMClass=calamares
|
|
13
13
|
StartupNotify=True
|
|
14
|
+
Name[it]=Installa sistema
|
|
15
|
+
GenericName[it]=Installa sistema
|
|
16
|
+
Comment[it]=Installazione sistema GUI
|
|
17
|
+
Name[en]=Install system
|
|
18
|
+
GenericName[en]=Install the system
|
|
19
|
+
Comment[en]=Install the system GUI
|
|
20
|
+
Name[es]=Instalación del sistema
|
|
21
|
+
GenericName[es]=Instalación del sistema
|
|
22
|
+
Comment[es]=Instalación del sistema GUI
|
|
23
|
+
Name[pt]=Instalação do sistema
|
|
24
|
+
GenericName[pt]=Instalação do sistema
|
|
25
|
+
Comment[pt]=Instalação do sistema GUI
|
|
26
|
+
Name[fr]=Installation du système
|
|
27
|
+
GenericName[fr]=Installation du système
|
|
28
|
+
Comment[fr]=Installation du système GUI
|
package/bin/dev
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
const oclif = require('@oclif/core')
|
|
4
|
+
|
|
5
|
+
const path = require('path')
|
|
6
|
+
const project = path.join(__dirname, '..', 'tsconfig.json')
|
|
7
|
+
|
|
8
|
+
// In dev mode -> use ts-node and dev plugins
|
|
9
|
+
process.env.NODE_ENV = 'development'
|
|
10
|
+
|
|
11
|
+
require('ts-node').register({project})
|
|
12
|
+
|
|
13
|
+
// In dev mode, always show stack traces
|
|
14
|
+
oclif.settings.debug = true;
|
|
15
|
+
|
|
16
|
+
// Start the CLI
|
|
17
|
+
oclif.run().then(oclif.flush).catch(oclif.Errors.handle)
|