Migrate from gnome to plasma

This commit is contained in:
Manuel Thalmann 2023-05-03 17:47:41 +02:00
parent 583ab6f7d2
commit 46ba557ce8
5 changed files with 22 additions and 9 deletions

View file

@ -32,15 +32,15 @@ yay --noconfirm -Syu \
# GRUB Shenanigans
. "../Software/minegrub-theme/install.sh";
# Gnome Extensions
yay --noconfirm -Syu \
gnome-shell-extension-order-icons-git \
gnome-shell-extension-desktop-icons-ng \
gnome-shell-extension-dash-to-dock \
gnome-shell-extension-pop-shell-git \
gnome-shell-extension-pano-git;
# # Gnome Extensions
# yay --noconfirm -Syu \
# gnome-shell-extension-order-icons-git \
# gnome-shell-extension-desktop-icons-ng \
# gnome-shell-extension-dash-to-dock \
# gnome-shell-extension-pop-shell-git \
# gnome-shell-extension-pano-git;
. "../Config/GnomeExtensions/install.sh";
# . "../Config/GnomeExtensions/install.sh";
# rclone
. "../Software/rclone/install.sh";

View file

@ -0,0 +1,2 @@
#!/bin/bash
sudo systemctl enable sddm;

View file

@ -49,9 +49,11 @@ echo "KEYMAP=$ARCH_KEYMAP" | arch-chroot "$ARCH_MOUNT_ROOT" tee /etc/vconsole.co
echo "$ARCH_HOSTNAME" | arch-chroot "$ARCH_MOUNT_ROOT" tee /etc/hostname;
arch-chroot "$ARCH_MOUNT_ROOT" mkinitcpio -P;
arch-chroot "$ARCH_MOUNT_ROOT" bash "$tempDir/../Software/yay/install.sh";
arch-chroot "$ARCH_MOUNT_ROOT" bash "$tempDir/../Software/GRUB/install.sh";
arch-chroot "$ARCH_MOUNT_ROOT" bash "$tempDir/../Software/sudo/install.sh";
arch-chroot "$ARCH_MOUNT_ROOT" bash "$tempDir/../Software/GNOME/install.sh";
arch-chroot "$ARCH_MOUNT_ROOT" bash "$tempDir/../Software/sddm/install.sh";
arch-chroot "$ARCH_MOUNT_ROOT" bash "$tempDir/../Software/KDE/install.sh";
USER_NAME="${USER_NAME}" \

View file

@ -0,0 +1,4 @@
#!/bin/bash
sudo pacman -Syu --noconfirm \
plasma-meta \
plasma-wayland-session;

View file

@ -0,0 +1,5 @@
#!/bin/bash
pushd "${BASH_SOURCE%/*}" > /dev/null;
yay -Syu --noconfirm sddm-git;
source "../../Config/sddm/install.sh";
popd > /dev/null;