updated apps

replaced tabs with spaces
This commit is contained in:
Stefen Auris 2024-01-12 14:29:39 -05:00
parent 04724d5fe9
commit d514e6d38b
2 changed files with 44 additions and 38 deletions

View file

@ -35,18 +35,19 @@ sudo apt-get -my install \
trash-cli \ trash-cli \
bat \ bat \
nala \ nala \
duf duf \
tree
read -n1 -p $'\nDoes this system need a ssh server?\n' REPLY read -n1 -p $'\nDoes this system need a ssh server?\n' REPLY
if [[ $REPLY == [Yy] ]]; then if [[ $REPLY == [Yy] ]]; then
sudo apt-get install openssh-server fail2ban sudo apt-get install openssh-server fail2ban
fi fi
read -n1 -p $'\nDoes this system have a GUI?\n' REPLY read -n1 -p $'\nDoes this system have a GUI?\n' REPLY
if [[ $REPLY == [Yy] ]]; then if [[ $REPLY == [Yy] ]]; then
sudo apt-get install synaptic emacs vim-gtk3 sudo apt-get install synaptic emacs vim-gtk3
else else
sudo apt-get install emacs-nox sudo apt-get install emacs-nox
fi fi
#This section installs software outside apt #This section installs software outside apt
dpkg_url https://github.com/dandavison/delta/releases/download/0.16.5/git-delta_0.16.5_amd64.deb dpkg_url https://github.com/dandavison/delta/releases/download/0.16.5/git-delta_0.16.5_amd64.deb

View file

@ -13,39 +13,39 @@ function dpkg_url() {
# installing base dependencies # installing base dependencies
sudo apt-get -my install \ sudo apt-get -my install \
git \ git \
vim \ vim \
stow \ stow \
etckeeper \ etckeeper \
tmux \ tmux \
zsh \ zsh \
powerline\ powerline\
htop \ htop \
mc \ mc \
curl \ curl \
aptitude \ aptitude \
nnn \ nnn \
ack \ ack \
fzf \ fzf \
ripgrep \ ripgrep \
grc \ grc \
fd-find \ fd-find \
ncdu \ ncdu \
tree \ tree \
neofetch \ neofetch \
trash-cli \ trash-cli \
nala nala
read -n1 -p $'Does this system need a ssh server?\n' REPLY read -n1 -p $'Does this system need a ssh server?\n' REPLY
if [[ $REPLY == [Yy] ]]; then if [[ $REPLY == [Yy] ]]; then
sudo apt-get install openssh-server fail2ban sudo apt-get install openssh-server fail2ban
fi fi
read -n1 -p $'\nDoes this system have a GUI?\n' REPLY read -n1 -p $'\nDoes this system have a GUI?\n' REPLY
if [[ $REPLY == [Yy] ]]; then if [[ $REPLY == [Yy] ]]; then
sudo apt-get install synaptic emacs vim-gtk3 neovim-qt sudo apt-get install synaptic emacs vim-gtk3
else else
sudo apt-get install emacs-nox sudo apt-get install emacs-nox
fi fi
release=`lsb_release -cs` release=`lsb_release -cs`
if [[ $release == jammy ]]; then if [[ $release == jammy ]]; then
@ -55,9 +55,14 @@ if [[ $release == jammy ]]; then
btop btop
else else
dpkg_url https://github.com/muesli/duf/releases/download/v0.8.1/duf_0.8.1_linux_amd64.deb dpkg_url https://github.com/muesli/duf/releases/download/v0.8.1/duf_0.8.1_linux_amd64.deb
dpkg_url https://github.com/sharkdp/bat/releases/download/v0.22.1/bat_0.22.1_amd64.deb dpkg_url https://github.com/sharkdp/bat/releases/download/v0.24.0/bat_0.24.0_amd64.deb
fi fi
#This section installs software outside apt #This section installs software outside apt
dpkg_url https://github.com/ClementTsang/bottom/releases/download/0.7.1/bottom_0.7.1_amd64.deb dpkg_url https://github.com/ClementTsang/bottom/releases/download/0.9.6/bottom_0.9.6_amd64.deb
dpkg_url https://github.com/dandavison/delta/releases/download/0.15.1/git-delta_0.15.1_amd64.deb || dpkg_url https://github.com/dandavison/delta/releases/download/0.15.1/git-delta-musl_0.15.1_amd64.deb dpkg_url https://github.com/dandavison/delta/releases/download/0.16.5/git-delta_0.16.5_amd64.deb || dpkg_url https://github.com/dandavison/delta/releases/download/0.16.5/git-delta-musl_0.16.5_amd64.deb
#install neovim
mkdir -v ~/bin
curl -LO https://github.com/neovim/neovim/releases/latest/download/nvim.appimage -o ~/bin/nvim
chmod u+x ~/bin/nvim