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.
- package/README.md +442 -17
- package/conf/distros/buster/calamares/modules/bootloader.yml +3 -1
- package/conf/eggs.yaml +9 -2
- package/lib/classes/basket.js +4 -4
- package/lib/classes/bleach.js +2 -2
- package/lib/classes/compressors.js +1 -1
- package/lib/classes/daddy.js +6 -6
- package/lib/classes/distro.js +17 -3
- package/lib/classes/family/archlinux.js +4 -4
- package/lib/classes/family/debian.js +4 -4
- package/lib/classes/family/fedora.js +4 -4
- package/lib/classes/family/suse.js +4 -4
- package/lib/classes/i18n.d.ts +28 -4
- package/lib/classes/i18n.js +112 -84
- package/lib/classes/incubation/branding.js +13 -7
- package/lib/classes/incubation/distros/bionic.js +1 -1
- package/lib/classes/incubation/distros/buster.js +1 -1
- package/lib/classes/incubation/distros/focal.js +1 -1
- package/lib/classes/incubation/distros/jessie.js +1 -1
- package/lib/classes/incubation/distros/rolling.js +1 -1
- package/lib/classes/incubation/fisherman-helper/displaymanager.js +1 -1
- package/lib/classes/incubation/fisherman-helper/packages.js +1 -1
- package/lib/classes/incubation/fisherman.js +5 -5
- package/lib/classes/incubation/incubator.js +4 -4
- package/lib/classes/incubation/installer.js +2 -2
- package/lib/classes/initrd.js +2 -2
- package/lib/classes/keyboards.d.ts +45 -0
- package/lib/classes/keyboards.js +196 -0
- package/lib/classes/krill_install.d.ts +4 -0
- package/lib/classes/krill_install.js +28 -10
- package/lib/classes/krill_prepare.d.ts +4 -0
- package/lib/classes/krill_prepare.js +56 -77
- package/lib/classes/locales.d.ts +14 -0
- package/lib/classes/locales.js +54 -0
- package/lib/classes/n8.js +1 -1
- package/lib/classes/ovary.js +17 -17
- package/lib/classes/pacman.js +19 -19
- package/lib/classes/pve-live.js +3 -3
- package/lib/classes/settings.d.ts +6 -0
- package/lib/classes/settings.js +11 -13
- package/lib/classes/systemctl.js +1 -1
- package/lib/classes/tailor.d.ts +20 -0
- package/lib/classes/tailor.js +460 -0
- package/lib/classes/tools.js +4 -4
- package/lib/classes/users.js +1 -1
- package/lib/classes/utils.js +9 -9
- package/lib/classes/xdg.js +5 -5
- package/lib/classes/yolk.js +5 -5
- package/lib/commands/adapt.js +1 -1
- package/lib/commands/analyze.js +2 -2
- package/lib/commands/bro.js +2 -2
- package/lib/commands/calamares.js +4 -4
- package/lib/commands/config.js +4 -4
- package/lib/commands/dad.js +2 -2
- package/lib/commands/export/deb.js +2 -2
- package/lib/commands/export/docs.js +2 -2
- package/lib/commands/export/iso.js +2 -2
- package/lib/commands/info.js +1 -1
- package/lib/commands/install.js +5 -5
- package/lib/commands/kill.js +2 -2
- package/lib/commands/mom.js +2 -2
- package/lib/commands/produce.js +8 -8
- package/lib/commands/remove.js +2 -2
- package/lib/commands/syncfrom.js +1 -1
- package/lib/commands/syncto.js +2 -2
- package/lib/commands/tools/clean.js +2 -2
- package/lib/commands/tools/locales.js +9 -4
- package/lib/commands/tools/skel.js +2 -2
- package/lib/commands/tools/stat.js +3 -3
- package/lib/commands/tools/yolk.js +4 -4
- package/lib/commands/update.js +5 -5
- package/lib/commands/wardrobe/ironing.d.ts +14 -0
- package/lib/commands/wardrobe/ironing.js +123 -0
- package/lib/commands/wardrobe/list.d.ts +13 -0
- package/lib/commands/wardrobe/list.js +46 -0
- package/lib/commands/wardrobe/show.d.ts +15 -0
- package/lib/commands/wardrobe/show.js +55 -0
- package/lib/commands/wardrobe/wear.d.ts +11 -0
- package/lib/commands/wardrobe/wear.js +42 -0
- package/lib/components/elements/information.js +6 -6
- package/lib/components/elements/steps.js +1 -1
- package/lib/components/elements/title.js +2 -2
- package/lib/components/finished.js +5 -5
- package/lib/components/install.js +5 -5
- package/lib/components/keyboard.js +5 -8
- package/lib/components/location.js +5 -5
- package/lib/components/network.js +5 -5
- package/lib/components/partitions.js +5 -5
- package/lib/components/summary.js +5 -5
- package/lib/components/users.js +5 -5
- package/lib/components/welcome.js +6 -6
- package/lib/interfaces/i-costume.d.ts +43 -0
- package/lib/interfaces/i-costume.js +2 -0
- package/lib/interfaces/i-krill.d.ts +1 -0
- package/lib/interfaces/i-packages.d.ts +13 -0
- package/lib/interfaces/i-packages.js +2 -0
- package/lib/interfaces/i-xkb-model.d.ts +17 -0
- package/lib/interfaces/i-xkb-model.js +2 -0
- package/lib/interfaces/index.d.ts +1 -0
- package/lib/lib/cli-autologin.js +3 -3
- package/lib/lib/select_address_type.js +1 -1
- package/lib/lib/select_filesystem_type.js +2 -2
- package/lib/lib/select_installation_device.js +1 -1
- package/lib/lib/select_interface.js +1 -1
- package/lib/lib/select_keyboard_layout.d.ts +1 -28
- package/lib/lib/select_keyboard_layout.js +18 -33
- package/lib/lib/select_keyboard_model.d.ts +4 -0
- package/lib/lib/select_keyboard_model.js +36 -0
- package/lib/lib/select_keyboard_option.d.ts +4 -0
- package/lib/lib/select_keyboard_option.js +36 -0
- package/lib/lib/select_keyboard_variant.d.ts +1 -5
- package/lib/lib/select_keyboard_variant.js +32 -5
- package/lib/lib/select_languages.d.ts +1 -1
- package/lib/lib/select_languages.js +8 -7
- package/lib/lib/select_regions.d.ts +1 -1
- package/lib/lib/select_regions.js +2 -2
- package/lib/lib/select_user_swap_choice.js +2 -2
- package/oclif.manifest.json +1 -1
- package/package.json +3 -2
- package/scripts/_eggs +43 -2
- package/scripts/eggs.bash +6 -2
- package/scripts/resy.sh +8 -0
- package/wardrobe.d/external.yml +7 -0
- package/wardrobe.d/hen/control.template +10 -0
- package/wardrobe.d/hen/index.yml +212 -0
- package/wardrobe.d/kde/index.yml +41 -0
- package/wardrobe.d/lamp/index.yml +35 -0
- package/wardrobe.d/xfce4/index.yml +53 -0
- package/conf/distros/buster/locales/locale.gen.template +0 -10
- package/conf/distros/buster/locales/locale.template +0 -11
- package/conf/distros/focal/locale.gen.template +0 -8
|
@@ -0,0 +1,212 @@
|
|
|
1
|
+
# hen
|
|
2
|
+
---
|
|
3
|
+
name: hen
|
|
4
|
+
description: desktop xfce3, all I need to develop eggs and firmware
|
|
5
|
+
author: artisan
|
|
6
|
+
release: 0.0.3
|
|
7
|
+
distroId: Debian
|
|
8
|
+
codenameId: bullseye
|
|
9
|
+
releaseId: stable
|
|
10
|
+
applyTo: naked
|
|
11
|
+
sequence:
|
|
12
|
+
repositories:
|
|
13
|
+
sourcesList:
|
|
14
|
+
main: true
|
|
15
|
+
contrib: true
|
|
16
|
+
nonFree: true
|
|
17
|
+
sourcesListD:
|
|
18
|
+
- >-
|
|
19
|
+
echo "deb [trusted=yes] http://quirinux.ga/repo/ quirinux main" | tee
|
|
20
|
+
/etc/apt/sources.list.d/quirinux.list > /dev/null
|
|
21
|
+
- >-
|
|
22
|
+
echo "deb [trusted=yes]
|
|
23
|
+
http://download.opensuse.org/repositories/home:/llamaret/Debian_10/ /" |
|
|
24
|
+
tee /etc/apt/sources.list.d/opensuse-llamaret-debian-10.list > /dev/null
|
|
25
|
+
- >-
|
|
26
|
+
echo "deb [trusted=yes] http://packages.linuxmint.com elsie main
|
|
27
|
+
upstream import backport" | tee
|
|
28
|
+
/etc/apt/sources.list.d/linuxmint-elsie.list > /dev/null
|
|
29
|
+
- >-
|
|
30
|
+
echo "deb [trusted=yes]
|
|
31
|
+
http://ppa.launchpad.net/ubuntu-mozilla-security/ppa/ubuntu precise
|
|
32
|
+
main" | tee /etc/apt/sources.list.d/firefox.list > /dev/null
|
|
33
|
+
- >-
|
|
34
|
+
echo "deb [trusted=yes] http://download.virtualbox.org/virtualbox/debian
|
|
35
|
+
bullseye contrib" | tee /etc/apt/sources.list.d/virtualbox.list >
|
|
36
|
+
/dev/null
|
|
37
|
+
- >-
|
|
38
|
+
curl -fsSL "https://pieroproietti.github.io/penguins-eggs-ppa/KEY.gpg" |
|
|
39
|
+
gpg --dearmor -o /usr/share/keyrings/penguins-eggs-ppa.gpg
|
|
40
|
+
- >-
|
|
41
|
+
echo "deb [signed-by=/usr/share/keyrings/penguins-eggs-ppa.gpg]
|
|
42
|
+
https://pieroproietti.github.io/penguins-eggs-ppa ./ " | tee
|
|
43
|
+
/etc/apt/sources.list.d/penguins-eggs-ppa.list > /dev/null
|
|
44
|
+
- >-
|
|
45
|
+
curl -fsSL "https://keys.anydesk.com/repos/DEB-GPG-KEY" | gpg --dearmor
|
|
46
|
+
-o /usr/share/keyrings/anydesk-stable.gpg
|
|
47
|
+
- >-
|
|
48
|
+
echo "deb [signed-by=/usr/share/keyrings/anydesk-stable.gpg]
|
|
49
|
+
http://deb.anydesk.com/ all main" | tee
|
|
50
|
+
/etc/apt/sources.list.d/anydesk-stable.list > /dev/null
|
|
51
|
+
- >-
|
|
52
|
+
curl -fsSL "https://packages.microsoft.com/keys/microsoft.asc" | gpg
|
|
53
|
+
--dearmor -o /usr/share/keyrings/packages.microsoft.gpg
|
|
54
|
+
- >-
|
|
55
|
+
echo "deb [signed-by=/usr/share/keyrings/packages.microsoft.gpg
|
|
56
|
+
arch=amd64] http://packages.microsoft.com/repos/code stable main" | tee
|
|
57
|
+
/etc/apt/sources.list.d/vscode.list > /dev/null
|
|
58
|
+
- >-
|
|
59
|
+
curl -fsSL https://deb.nodesource.com/gpgkey/nodesource.gpg.key | gpg
|
|
60
|
+
--dearmor | sudo tee /usr/share/keyrings/nodesource.gpg > /dev/null
|
|
61
|
+
- >-
|
|
62
|
+
echo "deb [signed-by=/usr/share/keyrings/nodesource.gpg]
|
|
63
|
+
https://deb.nodesource.com/node_16.x bookworm main" | tee
|
|
64
|
+
/etc/apt/sources.list.d/nodesource.list > /dev/null
|
|
65
|
+
update: true
|
|
66
|
+
full-upgrade: true
|
|
67
|
+
dependencies:
|
|
68
|
+
- null
|
|
69
|
+
packages:
|
|
70
|
+
- adwaita-qt
|
|
71
|
+
- code
|
|
72
|
+
- firefox-esr
|
|
73
|
+
- flatpakconfig
|
|
74
|
+
- gir1.2-flatpak-1.0
|
|
75
|
+
- libxfce4ui-utils
|
|
76
|
+
- lightdm
|
|
77
|
+
- network-manager-gnome
|
|
78
|
+
- network-manager-openvpn
|
|
79
|
+
- network-manager-openvpn-gnome
|
|
80
|
+
- nodejs
|
|
81
|
+
- qt5ct
|
|
82
|
+
- spice-vdagent
|
|
83
|
+
- tango-icon-theme
|
|
84
|
+
- thunar
|
|
85
|
+
- xfce4-appfinder
|
|
86
|
+
- xfce4-panel
|
|
87
|
+
- xfce4-pulseaudio-plugin
|
|
88
|
+
- xfce4-session
|
|
89
|
+
- xfce4-settings
|
|
90
|
+
- xfce4-terminal
|
|
91
|
+
- xfce4-whiskermenu-plugin
|
|
92
|
+
- xfconf
|
|
93
|
+
- xfdesktop4
|
|
94
|
+
- xfwm4
|
|
95
|
+
firmwares:
|
|
96
|
+
drivers_wifi:
|
|
97
|
+
- dahdi-firmware-nonfree
|
|
98
|
+
- dns323-firmware-tools
|
|
99
|
+
- firmware-adi
|
|
100
|
+
- firmware-amd-graphics
|
|
101
|
+
- firmware-atheros
|
|
102
|
+
- firmware-b43-installer
|
|
103
|
+
- firmware-b43legacy-installer
|
|
104
|
+
- firmware-bnx2
|
|
105
|
+
- firmware-bnx2x
|
|
106
|
+
- firmware-brcm80211
|
|
107
|
+
- firmware-cavium
|
|
108
|
+
- firmware-intel-sound
|
|
109
|
+
- firmware-intelwimax
|
|
110
|
+
- firmware-ipw2x00
|
|
111
|
+
- firmware-ivtv
|
|
112
|
+
- firmware-iwlwifi
|
|
113
|
+
- firmware-libertas
|
|
114
|
+
- firmware-linux
|
|
115
|
+
- firmware-linux-free
|
|
116
|
+
- firmware-linux-nonfree
|
|
117
|
+
- firmware-myricom
|
|
118
|
+
- firmware-netronome
|
|
119
|
+
- firmware-netxen
|
|
120
|
+
- firmware-qcom-media
|
|
121
|
+
- firmware-qlogic
|
|
122
|
+
- firmware-ralink
|
|
123
|
+
- firmware-realtek
|
|
124
|
+
- firmware-samsung
|
|
125
|
+
- firmware-siano
|
|
126
|
+
- firmware-ti-connectivity
|
|
127
|
+
- firmware-zd1211
|
|
128
|
+
- grub-firmware-qemu
|
|
129
|
+
- hdmi2usb-fx2-firmware
|
|
130
|
+
- sigrok-firmware-fx2lafw
|
|
131
|
+
codecs:
|
|
132
|
+
- mint-meta-codecs
|
|
133
|
+
- rar
|
|
134
|
+
- unace-nonfree
|
|
135
|
+
- unrar
|
|
136
|
+
drivers_various:
|
|
137
|
+
- null
|
|
138
|
+
drivers_video_nvidia:
|
|
139
|
+
- bumblebee
|
|
140
|
+
drivers_video_amd:
|
|
141
|
+
- libdrm-amdgpu1
|
|
142
|
+
- libvulkan1
|
|
143
|
+
- mesa-opencl-icd
|
|
144
|
+
- mesa-vulkan-drivers
|
|
145
|
+
- vulkan-tools
|
|
146
|
+
- vulkan-validationlayers
|
|
147
|
+
- xserver-xorg-video-amdgpu
|
|
148
|
+
drivers_graphics_tablet:
|
|
149
|
+
- geniusconfig
|
|
150
|
+
drivers_printer:
|
|
151
|
+
- autoconf
|
|
152
|
+
- avahi-utils
|
|
153
|
+
- colord
|
|
154
|
+
- cups
|
|
155
|
+
- cups-bsd
|
|
156
|
+
- cups-client
|
|
157
|
+
- cups-filters
|
|
158
|
+
- cups-pdf
|
|
159
|
+
- cups-pdf
|
|
160
|
+
- cups-ppdc
|
|
161
|
+
- dc
|
|
162
|
+
- flex
|
|
163
|
+
- foomatic-db-compressed-ppds
|
|
164
|
+
- g++
|
|
165
|
+
- ghostscript-cups
|
|
166
|
+
- ghostscript-x
|
|
167
|
+
- git
|
|
168
|
+
- gocr-tk
|
|
169
|
+
- groff
|
|
170
|
+
- gutenprint-locales
|
|
171
|
+
- ink
|
|
172
|
+
- libtool
|
|
173
|
+
- openprinting-ppds
|
|
174
|
+
- printer-driver-all
|
|
175
|
+
- printer-driver-brlaser
|
|
176
|
+
- printer-driver-c2050
|
|
177
|
+
- printer-driver-c2esp
|
|
178
|
+
- printer-driver-cjet
|
|
179
|
+
- printer-driver-cups-pdf
|
|
180
|
+
- printer-driver-dymo
|
|
181
|
+
- printer-driver-escpr
|
|
182
|
+
- printer-driver-fujixerox
|
|
183
|
+
- printer-driver-gutenprint
|
|
184
|
+
- printer-driver-m2300w
|
|
185
|
+
- printer-driver-min12xxw
|
|
186
|
+
- printer-driver-pnm2ppa
|
|
187
|
+
- printer-driver-ptouch
|
|
188
|
+
- printer-driver-pxljr
|
|
189
|
+
- printer-driver-sag-gdi
|
|
190
|
+
- printer-driver-splix
|
|
191
|
+
- sane
|
|
192
|
+
- sane-utils
|
|
193
|
+
- system-config-printer
|
|
194
|
+
- system-config-printer-udev
|
|
195
|
+
- system-config-printer-udev
|
|
196
|
+
- tix
|
|
197
|
+
- unpaper
|
|
198
|
+
- xsltproc
|
|
199
|
+
drivers_network:
|
|
200
|
+
- hardinfo
|
|
201
|
+
- mobile-broadband-provider-info
|
|
202
|
+
- pppconfig
|
|
203
|
+
- usb-modeswitch
|
|
204
|
+
- usb-modeswitch-data
|
|
205
|
+
- wvdial
|
|
206
|
+
debs: false
|
|
207
|
+
dirs: false
|
|
208
|
+
hostname: true
|
|
209
|
+
customizations:
|
|
210
|
+
scripts:
|
|
211
|
+
- null
|
|
212
|
+
reboot: true
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
# recipe: kde
|
|
2
|
+
# author: artisan
|
|
3
|
+
---
|
|
4
|
+
name: kde
|
|
5
|
+
description: minimal KDE installation
|
|
6
|
+
author: artisan
|
|
7
|
+
release: 0.0.3
|
|
8
|
+
distroId: Debian
|
|
9
|
+
codenameId: booksworm
|
|
10
|
+
releaseId: sid
|
|
11
|
+
applyTo: naked
|
|
12
|
+
sequence:
|
|
13
|
+
repositories:
|
|
14
|
+
sourcesList:
|
|
15
|
+
main: true
|
|
16
|
+
contrib: true
|
|
17
|
+
nonFree: false
|
|
18
|
+
sourcesListD:
|
|
19
|
+
- curl -fsSL "https://pieroproietti.github.io/penguins-eggs-ppa/KEY.gpg" | gpg --dearmor -o /usr/share/keyrings/penguins-eggs-ppa.gpg
|
|
20
|
+
- echo "deb [signed-by=/usr/share/keyrings/penguins-eggs-ppa.gpg] https://pieroproietti.github.io/penguins-eggs-ppa ./ " | tee /etc/apt/sources.list.d/penguins-eggs-ppa.list > /dev/null
|
|
21
|
+
update: true
|
|
22
|
+
full-upgrade: true
|
|
23
|
+
packages:
|
|
24
|
+
- kde-plasma-desktop
|
|
25
|
+
- plasma-nm
|
|
26
|
+
- ark
|
|
27
|
+
- kate
|
|
28
|
+
- kcalc
|
|
29
|
+
- kde-spectacle
|
|
30
|
+
- firefox-esr
|
|
31
|
+
- okular
|
|
32
|
+
debs: false
|
|
33
|
+
dirs: false
|
|
34
|
+
hostname: true
|
|
35
|
+
|
|
36
|
+
customizations:
|
|
37
|
+
scripts:
|
|
38
|
+
- null
|
|
39
|
+
|
|
40
|
+
reboot: true
|
|
41
|
+
...
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# costume: lamp
|
|
2
|
+
# tailor: artisan
|
|
3
|
+
---
|
|
4
|
+
name: lamp
|
|
5
|
+
description: 'LAMP: linux, apache2, mysql, php example, completely untested!'
|
|
6
|
+
author: artisan
|
|
7
|
+
release: 0.0.2
|
|
8
|
+
distroId: Debian
|
|
9
|
+
codenameId: booksworm
|
|
10
|
+
releaseId: unstable
|
|
11
|
+
applyTo: naked
|
|
12
|
+
sequence:
|
|
13
|
+
repositories:
|
|
14
|
+
sourcesList:
|
|
15
|
+
main: true
|
|
16
|
+
contrib: true
|
|
17
|
+
nonFree: true
|
|
18
|
+
sourcesListD:
|
|
19
|
+
- curl -fsSL "https://pieroproietti.github.io/penguins-eggs-ppa/KEY.gpg" | gpg --dearmor -o /usr/share/keyrings/penguins-eggs-ppa.gpg
|
|
20
|
+
- echo "deb [signed-by=/usr/share/keyrings/penguins-eggs-ppa.gpg] https://pieroproietti.github.io/penguins-eggs-ppa ./ " | tee /etc/apt/sources.list.d/penguins-eggs-ppa.list > /dev/null
|
|
21
|
+
update: true
|
|
22
|
+
full-upgrade: true
|
|
23
|
+
packages:
|
|
24
|
+
- apache2
|
|
25
|
+
- mysql-server
|
|
26
|
+
- php
|
|
27
|
+
- phpmyadmin
|
|
28
|
+
debs: false
|
|
29
|
+
dirs: false
|
|
30
|
+
hostname: true
|
|
31
|
+
customizations:
|
|
32
|
+
scripts:
|
|
33
|
+
- null
|
|
34
|
+
reboot: true
|
|
35
|
+
...
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
# recipe: xfce4
|
|
2
|
+
# author: artisan
|
|
3
|
+
---
|
|
4
|
+
name: xfce4
|
|
5
|
+
description: minimal XFCE4 installation
|
|
6
|
+
author: artisan
|
|
7
|
+
release: "0.0.2"
|
|
8
|
+
distroId: Debian
|
|
9
|
+
codenameId: booksworm
|
|
10
|
+
releaseId: unstable
|
|
11
|
+
applyTo: naked
|
|
12
|
+
sequence:
|
|
13
|
+
repositories:
|
|
14
|
+
sourcesList:
|
|
15
|
+
main: true
|
|
16
|
+
contrib: true
|
|
17
|
+
nonFree: false
|
|
18
|
+
sourcesListD:
|
|
19
|
+
# penguins-eggs-ppa
|
|
20
|
+
- curl -fsSL "https://pieroproietti.github.io/penguins-eggs-ppa/KEY.gpg" | gpg --dearmor -o /usr/share/keyrings/penguins-eggs-ppa.gpg
|
|
21
|
+
- echo "deb [signed-by=/usr/share/keyrings/penguins-eggs-ppa.gpg] https://pieroproietti.github.io/penguins-eggs-ppa ./ " | tee /etc/apt/sources.list.d/penguins-eggs-ppa.list > /dev/null
|
|
22
|
+
# anydesk-stable
|
|
23
|
+
- curl -fsSL "https://keys.anydesk.com/repos/DEB-GPG-KEY" | gpg --dearmor -o /usr/share/keyrings/anydesk-stable.gpg
|
|
24
|
+
- echo "deb [signed-by=/usr/share/keyrings/anydesk-stable.gpg] http://deb.anydesk.com/ all main" | tee /etc/apt/sources.list.d/anydesk-stable.list > /dev/null
|
|
25
|
+
update: true
|
|
26
|
+
full-upgrade: true
|
|
27
|
+
packages:
|
|
28
|
+
- libxfce4ui-utils
|
|
29
|
+
- thunar
|
|
30
|
+
- xfce4-appfinder
|
|
31
|
+
- xfce4-panel
|
|
32
|
+
- xfce4-pulseaudio-plugin
|
|
33
|
+
- xfce4-whiskermenu-plugin
|
|
34
|
+
- xfce4-session
|
|
35
|
+
- xfce4-settings
|
|
36
|
+
- xfce4-terminal
|
|
37
|
+
- xfconf
|
|
38
|
+
- xfdesktop4
|
|
39
|
+
- xfwm4
|
|
40
|
+
- adwaita-qt
|
|
41
|
+
- qt5ct
|
|
42
|
+
- network-manager-openvpn
|
|
43
|
+
- network-manager-gnome
|
|
44
|
+
- network-manager-openvpn-gnome
|
|
45
|
+
- firefox-esr
|
|
46
|
+
debs: false
|
|
47
|
+
dirs: false
|
|
48
|
+
hostname: true
|
|
49
|
+
customizations:
|
|
50
|
+
scripts:
|
|
51
|
+
- null
|
|
52
|
+
reboot: true
|
|
53
|
+
...
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
# DEBIAN
|
|
2
|
-
# This file lists locales that you wish to have built. You can find a list
|
|
3
|
-
# of valid supported locales at /usr/share/i18n/SUPPORTED, and you can add
|
|
4
|
-
# user defined locales to /usr/local/share/i18n/SUPPORTED. If you change
|
|
5
|
-
# this file, you need to rerun locale-gen.
|
|
6
|
-
# i comandi di mustache vanno comunque con due baffi
|
|
7
|
-
|
|
8
|
-
{{#locales}}
|
|
9
|
-
{{{locale}}}
|
|
10
|
-
{{/locales}}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
# File generated by penguins-eggs
|
|
2
|
-
LANG={{{locale}}}
|
|
3
|
-
LC_ADDRESS={{{locale}}}
|
|
4
|
-
LC_IDENTIFICATION={{{locale}}}
|
|
5
|
-
LC_MEASUREMENT={{{locale}}}
|
|
6
|
-
LC_MONETARY={{{locale}}}
|
|
7
|
-
LC_NAME={{{locale}}}
|
|
8
|
-
LC_NUMERIC={{{locale}}}
|
|
9
|
-
LC_PAPER={{{locale}}}
|
|
10
|
-
LC_TELEPHONE={{{locale}}}
|
|
11
|
-
LC_TIME={{{locale}}}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
# UBUNTU
|
|
2
|
-
# This file lists locales that you wish to have built. You can find a list
|
|
3
|
-
# of valid supported locales at /usr/share/i18n/SUPPORTED, and you can add
|
|
4
|
-
# user defined locales to /usr/local/share/i18n/SUPPORTED. If you change
|
|
5
|
-
# this file, you need to rerun locale-gen.
|
|
6
|
-
|
|
7
|
-
it_IT.UTF-8 UTF-8
|
|
8
|
-
en_US.UTF-8 UTF-8
|