# - bof - #



<<'comment'

# - Configured - #


cd ~/;
curl -o ~/.bashrc "https://www.u150.isdevelopment.us/Arch.Img/Arch_Configuration/Arch_bashrc_fstab_pacman-conf.Ins/Bashrc-Zshrc(Latest)/uServer.bashrc"
curl -o ~/.rc-Alias "https://www.u150.isdevelopment.us/Arch.Img/Arch_Configuration/Arch_bashrc_fstab_pacman-conf.Ins/Bashrc-Zshrc(Latest)/Ubuntu.rc-Alias"
source .bashrc;
sudo cp .bashrc .rc-Alias /root/;



rm -rf ~/.bashrc;
vim ~/.bashrc;

rm -rf ~/.zshrc;
vim ~/.zshrc;

ssh-keygen -R 192.168.1.1

# - On client - #
cd ~/.ssh;
ssh-keygen -t rsa;

cat ~/.ssh/id_rsa.pub;

# - On server - #
vim ~/.ssh/authorized_keys;



xdg-user-dirs-update;
sudo apt install dialog duf curl figlet git lolcat neovim pv webapp-manager -y;
sudo apt install dialog duf curl figlet git htop inxi lolcat net-tools neovim pv webapp-manager -y;

# -  - #
# - Timezone setting - #
sudo timedatectl set-timezone America/New_York;
timedatectl;



cd ~/; rm -rf ~/bFile.sh; vim ~/bFile.sh;
Copy & paste this content
chmod +x ~/bFile.sh; ~/./bFile.sh;

comment



# If not running interactively, don't do anything
[[ $- != *i* ]] && return
# Add nano as default editor

export PULSE_LATENCY_MSEC=60

# -  - #
# - Ubuntu.bashrc - #
PS1='\e[01;33m╭── # \e[01;34m\u\e[01;32m@\e[01;34m\h \e[01;33m\w :\e[01;33m\n╰─▷ $ '



sAlias_=~/.rc-Alias;
if [ -f "$sAlias_" ]; then
   source $sAlias_; fi; 



#clear;
if [[ "$USER" == "root" ]]; then cd ~/; fi;
fastfetch;



# -  - #
# - Local & public IPa - #
echo -e "\n Local IPa:" $(hostname -I | awk '{print $1}')
echo -e "Public IPa:" $(wget -qO- http://ipecho.net/plain)"\n";



# - eof - #
