From 762b93f86c53b4d7f2a395ccc0b3d5b11c6dd866 Mon Sep 17 00:00:00 2001 From: lukas Date: Wed, 30 Jun 2021 23:31:23 +0200 Subject: [PATCH] add new extended desktop version --- f34/bensd.cfg | 4 ++-- f34/veldd.cfg | 5 ----- f34/veldp.cfg | 38 ++++++++++++++++++++++++++++++++++++++ f34/velsd.cfg | 4 ++-- 4 files changed, 42 insertions(+), 9 deletions(-) create mode 100644 f34/veldp.cfg diff --git a/f34/bensd.cfg b/f34/bensd.cfg index 7f3a9f3..9ac72b3 100644 --- a/f34/bensd.cfg +++ b/f34/bensd.cfg @@ -81,9 +81,9 @@ zerombr clearpart --all --initlabel --drives=nvme0n1 # Disk partitioning information. -# Will create an efi partitition of 128 MiB, a boot partition of 350 MiB on disk vda using the ext4 filesystem. The remaining space will be used for root. +# Will create an efi partitition of 128 MiB, a boot partition of 384 MiB on disk vda using the ext4 filesystem. The remaining space will be used for root. part /boot/efi --fstype="efi" --ondisk=nvme0n1 --size=128 --fsoptions="umask=0077,shortname=winnt" --label=efi -part /boot --fstype="ext4" --ondisk=nvme0n1 --size=350 --label=boot +part /boot --fstype="ext4" --ondisk=nvme0n1 --size=384 --label=boot part / --fstype="ext4" --ondisk=nvme0n1 --grow --label=system ## SOFTWARE ## diff --git a/f34/veldd.cfg b/f34/veldd.cfg index 2ebf836..ecb85b5 100644 --- a/f34/veldd.cfg +++ b/f34/veldd.cfg @@ -21,11 +21,6 @@ %post dnf install -y gnome-shell gnome-terminal nano # Minimal GNOME shell or desktop environment plus the text nano editor -# dnf install -y nautilus gnome-terminal-nautilus # Default File explorer for GNOME and its integration with gnome-shell -# dnf install -y gedit # The official gnome text editor -# dnf install -y firefox # Internet browser -# dnf install -y nextcloud-client nextcloud-client-nautilus # The Nextcloud client and its integration with gnome-shell -# dnf install -y libreoffice-writer # The rich and open text editor dnf install -y spice-vdagent # Try to install spice-vdagent after the installation is done dnf install -y dejavu-sans-mono-fonts # the gnome-shell package doesn't include much fonts by default, resulting in weird spacings in gnome-terminal. dnf install -y elementary-wallpapers-gnome.noarch # Gorgeous wallpapers diff --git a/f34/veldp.cfg b/f34/veldp.cfg new file mode 100644 index 0000000..533f829 --- /dev/null +++ b/f34/veldp.cfg @@ -0,0 +1,38 @@ +# __ ____ ____ _____ +# ____ / /_ __ __/ / /___ ____ ___ ___ / __ \/ ___/ +# / __ \/ __ \/ / / / / / __ \/ __ `__ \/ _ \ / / / /\__ \ +# / /_/ / / / / /_/ / / / /_/ / / / / / / __/ / /_/ /___/ / +# / .___/_/ /_/\__, /_/_/\____/_/ /_/ /_/\___/ \____//____/ +# /_/ /____/ + +# WHAT ? This Kickstart file bootstraps a minimal desktop-oriented virtual machine. +# 'v' for virtual machine, 'e' for efi, 'l' for 'lvm', 'd' for desktop, 'p' for production. + +# USAGE : Press the `tab` or 'e' key during POST and apend that after the 'quiet' string : +# inst.ks=https://git.phyllo.me/home/kickstart/raw/branch/master/f34/veldp.cfg +# A shorter URL can also be used : +# inst.ks=https://url.phyllo.me/veldp + +# ATTENTION : this kickstart file will automatically DESTROY the main virtual disk 'vda' and all of its contents. +# Bye bye! + +%include https://git.phyllo.me/home/kickstart/raw/branch/master/f34/velsd.cfg # Include velsd.cfg as base +%include https://git.phyllo.me/home/kickstart/raw/branch/master/f34/veldd.cfg # Include velsd.cfg as base + +%post + +dnf install -y nautilus gnome-terminal-nautilus # Default File explorer for GNOME and its integration with gnome-shell +dnf install -y gedit # The official gnome text editor +dnf install -y firefox # Internet browser +dnf install -y nextcloud-client nextcloud-client-nautilus # The Nextcloud client and its integration with gnome-shell +dnf install -y libreoffice-writer # The rich and open text editor +dnf install -y vlc # Install VLC media player +dnf install -y # Install thunderbird-wayland.x86_64 + +flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo # Add Flathub repository +flatpak install -y flathub org.zotero.Zotero # Install Zotero +flatpak install -y flathub com.bitwarden.desktop # Install Bitwarden +flatpak install -y flathub com.visualstudio.code # Install VScode +flatpak install -y flathub net.cozic.joplin_desktop # Install Joplin + +%end # End of the %post section \ No newline at end of file diff --git a/f34/velsd.cfg b/f34/velsd.cfg index 3b066a1..08bfcf3 100644 --- a/f34/velsd.cfg +++ b/f34/velsd.cfg @@ -81,9 +81,9 @@ zerombr clearpart --all --initlabel --drives=vda # Disk partitioning information. -# Will create an efi partitition of 128 MiB, a boot partition of 350 MiB on disk vda using the ext4 filesystem. The remaining space will be used for root. +# Will create an efi partitition of 128 MiB, a boot partition of 384 MiB on disk vda using the ext4 filesystem. The remaining space will be used for root. part /boot/efi --fstype="efi" --ondisk=vda --size=128 --fsoptions="umask=0077,shortname=winnt" --label=efi -part /boot --fstype="ext4" --ondisk=vda --size=350 --label=boot +part /boot --fstype="ext4" --ondisk=vda --size=384 --label=boot part pv.122 --fstype="lvmpv" --ondisk=vda --grow volgroup system --pesize=4096 pv.122 logvol / --fstype="ext4" --percent 100 --label="root" --name=root --vgname=system