phyllomeos/leaves/bdmd.cfg

31 lines
1.9 KiB
INI
Raw Normal View History

# __ ____ ____ _____
# ____ / /_ __ __/ / /___ ____ ___ ___ / __ \/ ___/
# / __ \/ __ \/ / / / / / __ \/ __ `__ \/ _ \ / / / /\__ \
# / /_/ / / / / /_/ / / / /_/ / / / / / / __/ / /_/ /___/ /
# / .___/_/ /_/\__, /_/_/\____/_/ /_/ /_/\___/ \____//____/
# /_/ /____/
2021-09-03 07:23:10 +00:00
# What ? This kickstart file provides a basic block to build a minimal, gnome-shell based (desktop-oriented), operating system.
# 'b' for basic building block, 'd' for desktop, 'm' for minimal, 'd' for development only.
2021-09-03 07:23:10 +00:00
xconfig --startxonboot --defaultdesktop=GNOME # Start GNOME on boot. Although says --startx, it works as well with Wayland.
2021-09-03 07:23:10 +00:00
%packages --exclude-weakdeps # Beginning of the packages section. Excludes weak package dependencies
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-09-03 07:23:10 +00:00
gnome-shell # the GNOME-3 desktop environment, without any presintalled applications
gnome-terminal # add the default terminal for gnome-shelle
virt-manager # install virt-manager to interact with remote hypervisor, without KVM/QEMU
-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
%end
%post --nochroot --log=/mnt/sysimage/root/bdmd.log # Beginning of %post section. Those commands are executed outside the chroot environment
# set new default background (doesn't work. Would have to call a script on first boot or something)
2021-08-20 08:27:22 +00:00
# gsettings set org.gnome.desktop.background picture-uri file://mnt/sysimage/usr/share/backgrounds/elementary/default
2021-08-19 13:06:04 +00:00
%end # End of the %post section