add, minimal install + config

This commit is contained in:
2022-02-14 08:30:50 +01:00
parent f9e260a9b6
commit d8fc467660
33 changed files with 2911 additions and 2855 deletions

View File

@@ -1,31 +1,31 @@
#!/bin/bash
# APT UPDATE & APT UPGRADE
echo "-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-"
echo " "
echo " APT UPDATE & APT UPGRADE + install ZSH Shell"
echo " Enter your user password, to continue."
echo " "
echo "-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-"
sudo apt update && sudo apt upgrade -y
# Install ZSH Shell
# Debian install zsh shell.:
sudo apt install -y zsh && zsh --version
# Make it your default shell:
sudo chsh -s $(which zsh)
# Test that it worked with.:
echo $SHELL
# Test with...
$SHELL --version
cd ~/bspwm-install-ma-dte
clear
#!/bin/bash
# APT UPDATE & APT UPGRADE
echo "-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-"
echo " "
echo " APT UPDATE & APT UPGRADE + install ZSH Shell"
echo " Enter your user password, to continue."
echo " "
echo "-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-'-"
sudo apt update && sudo apt upgrade -y
# Install ZSH Shell
# Debian install zsh shell.:
sudo apt install -y zsh && zsh --version
# Make it your default shell:
sudo chsh -s $(which zsh)
# Test that it worked with.:
echo $SHELL
# Test with...
$SHELL --version
cd ~/bspwm-install-ma-dte
clear
read -p "ZSH Shell Install - ALL DONE - Press a key to Exit"