aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMateja <mail@matejamaric.com>2021-03-08 15:43:24 +0100
committerMateja <mail@matejamaric.com>2021-03-08 15:43:24 +0100
commita4d3677a0f0789571bfc77315c17586ccc9dc601 (patch)
treeb7bde71a95cf0eb036ca1f1380ef0593d0a60dc2
parent0cfec5e25ce71cbcb630cebd6d7b330a177d1573 (diff)
downloadsetup-scripts-a4d3677a0f0789571bfc77315c17586ccc9dc601.tar.gz
setup-scripts-a4d3677a0f0789571bfc77315c17586ccc9dc601.zip
Reorder package installations.
-rwxr-xr-xsetup.sh59
1 files changed, 30 insertions, 29 deletions
diff --git a/setup.sh b/setup.sh
index 93b6b61..1a76af3 100755
--- a/setup.sh
+++ b/setup.sh
@@ -81,9 +81,10 @@ sudo cp /tmp/sources.list /etc/apt/sources.list
sudo apt update
sudo apt upgrade
-echo "Installing basic software..."
+
+echo "Installing basic cli software..."
sudo apt install -y gpg keychain git pass build-essential
-sudo apt install -y unzip wget curl
+sudo apt install -y unzip wget curl rsync dnsutils tmux
echo "Installing Xorg..."
@@ -91,6 +92,33 @@ sudo apt install -y xorg xorg-drivers xinit xterm pinentry-gtk-2
[[ $nvidia_install ]] && sudo apt install nvidia-driver
+echo "Installing additional software for desktop usage..."
+sudo apt install -y numlockx pcmanfm
+sudo apt install -y dunst libnotify-bin udiskie
+sudo apt install -y feh suckless-tools rofi scrot irssi
+sudo apt install -y thunderbird libreoffice
+sudo apt install -y zathura zathura-pdf-poppler
+sudo apt install -y newsboat ffmpeg mpd mpc ncmpcpp mpv
+sudo systemctl disable --now mpd
+
+sudo apt -t buster-backports install -y youtube-dl
+sudo apt install -y unrar-free
+
+
+echo "Installing work software..."
+sudo apt install -y nginx php-fpm mariadb-server
+sudo apt install -y php_mysql phpunit php-intl php-curl php-zip php-mbstring php-gd php-soap php-xml php-xmlrpc
+sudo systemctl restart php7.3-fpm.service
+
+wget -O /tmp/composer-setup.php https://getcomposer.org/installer
+sudo php /tmp/composer-setup.php --install-dir=/usr/local/bin --filename=composer
+#sudo composer self-update
+
+#sudo apt -t buster-backports install -y nodejs npm
+curl -sL https://deb.nodesource.com/setup_14.x | sudo -E bash -
+sudo apt-get install -y nodejs
+
+
if [[ $qtile_install ]]
then
echo "Installing Qtile..."
@@ -122,19 +150,6 @@ EOF
fi
-echo "Installing additional software..."
-sudo apt install -y numlockx pcmanfm
-sudo apt install -y dunst libnotify-bin udiskie rsync dnsutils
-sudo apt install -y feh suckless-tools rofi scrot irssi
-sudo apt install -y thunderbird libreoffice
-sudo apt install -y zathura zathura-pdf-poppler
-sudo apt install -y newsboat ffmpeg mpd mpc ncmpcpp mpv
-sudo systemctl disable --now mpd
-
-sudo apt -t buster-backports install -y youtube-dl
-sudo apt install -y unrar-free
-
-
if [[ $config_install ]]
then
echo "Installing configurations..."
@@ -155,20 +170,6 @@ then
fi
-echo "Installing work software..."
-sudo apt install -y nginx php-fpm mariadb-server
-sudo apt install -y php_mysql phpunit php-intl php-curl php-zip php-mbstring php-gd php-soap php-xml php-xmlrpc
-sudo systemctl restart php7.3-fpm.service
-sudo apt install -y tmux
-
-wget -O /tmp/composer-setup.php https://getcomposer.org/installer
-sudo php /tmp/composer-setup.php --install-dir=/usr/local/bin --filename=composer
-#sudo composer self-update
-
-#sudo apt -t buster-backports install -y nodejs npm
-curl -sL https://deb.nodesource.com/setup_14.x | sudo -E bash -
-sudo apt-get install -y nodejs
-
if [[ $latex_install ]]
then
echo "Installing LaTeX.."