30 lines
995 B
Bash
30 lines
995 B
Bash
#!/bin/bash
|
|
|
|
# Install - Software & Packages.
|
|
echo "-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-"
|
|
echo " "
|
|
echo " Download, Building & Install Software"
|
|
echo " "
|
|
echo " Enter your user password, to continue if necessary"
|
|
echo " "
|
|
echo " continues the installation in 3 seconds"
|
|
echo " "
|
|
echo "-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-"
|
|
sleep 3
|
|
|
|
# Alacritty - Building and installing ON / OFF
|
|
#echo "-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-"
|
|
#echo " "
|
|
#echo " Alacritty - Building and installing"
|
|
#echo " "
|
|
#echo "-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-"
|
|
# Alacritty - Building and installing ON / OFF
|
|
|
|
#. ~/bspwm-install-ma-dte/install-scripts/install-alacritty-debian.sh
|
|
|
|
|
|
# Google Chrome - Download + Install ON / OFF
|
|
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
|
|
sudo apt install -y ~/bspwm-install-ma-dte/google-chrome-stable_current_amd64.deb
|
|
|