2021-08-18 09:50:28 +00:00
# __ ____ ____ _____
# ____ / /_ __ __/ / /___ ____ ___ ___ / __ \/ ___/
# / __ \/ __ \/ / / / / / __ \/ __ `__ \/ _ \ / / / /\__ \
# / /_/ / / / / /_/ / / / /_/ / / / / / / __/ / /_/ /___/ /
# / .___/_/ /_/\__, /_/_/\____/_/ /_/ /_/\___/ \____//____/
# /_/ /____/
2021-08-18 13:01:51 +00:00
# What ? This kickstart file is a base for a minimal desktop-oriented machine.
2021-08-18 09:50:28 +00:00
# 'b' for basic building block, 'd' for desktop, 'm' for minimal, 'd' for development only.
2021-08-18 13:01:51 +00:00
xconfig --startxonboot --defaultdesktop = GNOME # Start GNOME on boot. Althought it says X, it works as well with Wayland
2021-08-18 09:50:28 +00:00
2021-08-18 13:42:46 +00:00
%packages # Beginning of the post-installation section
2021-08-18 09:50:28 +00:00
dejavu-sans-mono-fonts # the gnome-shell package doesn't include much fonts by default, resulting in weird spacings in the gnome-terminal.
elementary-wallpapers-gnome.noarch # Gorgeous wallpapers
wpa_supplicant # WPA Supplicant for Linux. Not integrated by default in gnome-shell, but necessary to configure wireless networks through the Network Manager.
2021-08-18 14:41:46 +00:00
gnome-initial-setup # Add GNOME initial setup too. Does work.
2021-08-18 09:50:28 +00:00
gnome-shell
gnome-terminal
-gnome-tour # We don't want GNOME-tour to open at launch so we delete it
nano # Minimal GNOME shell or desktop environment plus the nano text editor
2021-08-18 13:01:51 +00:00
%end
%post
2021-08-18 14:41:46 +00:00
# set new default background (doesn't work. Would have to call a script on first boot or something)
# gsettings set org.gnome.desktop.background picture-uri file:///usr/share/backgrounds/elementary/'Morskie Oko.jpg'
2021-08-18 13:01:51 +00:00
2021-08-18 09:50:28 +00:00
%end