Migrate from gnome to plasma
This commit is contained in:
parent
6690f4cceb
commit
d5387d6be4
5 changed files with 22 additions and 9 deletions
|
@ -32,15 +32,15 @@ yay --noconfirm -Syu \
|
||||||
# GRUB Shenanigans
|
# GRUB Shenanigans
|
||||||
. "../Software/minegrub-theme/install.sh";
|
. "../Software/minegrub-theme/install.sh";
|
||||||
|
|
||||||
# Gnome Extensions
|
# # Gnome Extensions
|
||||||
yay --noconfirm -Syu \
|
# yay --noconfirm -Syu \
|
||||||
gnome-shell-extension-order-icons-git \
|
# gnome-shell-extension-order-icons-git \
|
||||||
gnome-shell-extension-desktop-icons-ng \
|
# gnome-shell-extension-desktop-icons-ng \
|
||||||
gnome-shell-extension-dash-to-dock \
|
# gnome-shell-extension-dash-to-dock \
|
||||||
gnome-shell-extension-pop-shell-git \
|
# gnome-shell-extension-pop-shell-git \
|
||||||
gnome-shell-extension-pano-git;
|
# gnome-shell-extension-pano-git;
|
||||||
|
|
||||||
. "../Config/GnomeExtensions/install.sh";
|
# . "../Config/GnomeExtensions/install.sh";
|
||||||
|
|
||||||
# rclone
|
# rclone
|
||||||
. "../Software/rclone/install.sh";
|
. "../Software/rclone/install.sh";
|
||||||
|
|
2
scripts/Arch/Config/sddm/install.sh
Executable file
2
scripts/Arch/Config/sddm/install.sh
Executable file
|
@ -0,0 +1,2 @@
|
||||||
|
#!/bin/bash
|
||||||
|
sudo systemctl enable sddm;
|
|
@ -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;
|
echo "$ARCH_HOSTNAME" | arch-chroot "$ARCH_MOUNT_ROOT" tee /etc/hostname;
|
||||||
arch-chroot "$ARCH_MOUNT_ROOT" mkinitcpio -P;
|
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/GRUB/install.sh";
|
||||||
arch-chroot "$ARCH_MOUNT_ROOT" bash "$tempDir/../Software/sudo/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}" \
|
USER_NAME="${USER_NAME}" \
|
||||||
|
|
4
scripts/Arch/Software/KDE/install.sh
Executable file
4
scripts/Arch/Software/KDE/install.sh
Executable file
|
@ -0,0 +1,4 @@
|
||||||
|
#!/bin/bash
|
||||||
|
sudo pacman -Syu --noconfirm \
|
||||||
|
plasma-meta \
|
||||||
|
plasma-wayland-session;
|
5
scripts/Arch/Software/sddm/install.sh
Executable file
5
scripts/Arch/Software/sddm/install.sh
Executable 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;
|
Loading…
Reference in a new issue