20 lines
504 B
Bash
Executable file
20 lines
504 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 \
|
|
gnome-shell-extension-desktop-icons-ng \
|
|
gnome-shell-extension-dash-to-dock \
|
|
gnome-shell-extension-pop-shell-git \
|
|
gnome-shell-extension-order-icons-git \
|
|
gnome-shell-extension-pano-git;
|
|
|
|
. "../Config/GnomeExtensions/install.sh";
|
|
|
|
popd > /dev/null;
|