diff options
-rwxr-xr-x | setup.sh | 25 |
1 files changed, 21 insertions, 4 deletions
@@ -1,12 +1,16 @@ -#!/bin/bash +#!/usr/bin/env bash qtile_install=false; -config_install=false; termite_install=false; + +st_install=false; + +config_install=false; neovim_install=false; latex_install=false; non_free=false; nvidia_install=false; + aerc_install=false; read -p "Do you want to install Qtile? " -n 1 -r @@ -21,6 +25,10 @@ read -p "Do you want to install termite? " -n 1 -r echo [[ $REPLY =~ ^[Yy]$ ]] && $termite_install=true; +read -p "Do you want to install my st fork? " -n 1 -r +echo +[[ $REPLY =~ ^[Yy]$ ]] && $st_install=true; + read -p "Do you want to install Neovim? " -n 1 -r echo [[ $REPLY =~ ^[Yy]$ ]] && $neovim_install=true; @@ -87,8 +95,8 @@ sudo apt install -y gpg keychain git pass build-essential sudo apt install -y unzip wget curl rsync dnsutils tmux -echo "Installing Xorg..." -sudo apt install -y xorg xorg-drivers xinit xterm pinentry-gtk-2 +echo "Installing Xorg and AwesomeWM..." +sudo apt install -y xorg xorg-drivers xinit xterm pinentry-gtk-2 awesome [[ $nvidia_install ]] && sudo apt install nvidia-driver @@ -182,6 +190,15 @@ then cp -r /tmp/dotfiles/.local/bin $HOME/.local/ fi +if [[ $st_install ]] +then + echo "Installing my st fork..." + git clone https://git.matejamaric.com/st /tmp/st + cd /tmp/st + make + sudo make install +fi + if [[ $latex_install ]] then |