18 lines
577 B
Bash
Executable file
18 lines
577 B
Bash
Executable file
#!/bin/bash
|
|
pushd "${BASH_SOURCE%/*}" > /dev/null;
|
|
|
|
. "../Software/yay/install.sh";
|
|
|
|
# GRUB Shenanigans
|
|
. "../Software/minegrub-theme/install.sh";
|
|
|
|
# Gnome Extensions
|
|
yay --noconfirm -Syu gnome-shell-extension-order-icons-git;
|
|
yay --noconfirm -Syu gnome-shell-extension-desktop-icons-ng;
|
|
yay --noconfirm -Syu gnome-shell-extension-dash-to-dock;
|
|
yay --noconfirm -Syu gnome-shell-extension-pop-shell-git;
|
|
yay --noconfirm -Syu gnome-shell-extension-order-icons-git;
|
|
yay --noconfirm -Syu gnome-shell-extension-pano-git;
|
|
. "../Config/GnomeExtensions/install.sh";
|
|
|
|
popd > /dev/null;
|