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 \
bat \
nala \
duf
duf \
tree
read -n1 -p $'\nDoes this system need a ssh server?\n' REPLY
if [[ $REPLY == [Yy] ]]; then
sudo apt-get install openssh-server fail2ban
fi
if [[ $REPLY == [Yy] ]]; then
sudo apt-get install openssh-server fail2ban
fi
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
else
sudo apt-get install emacs-nox
fi
else
sudo apt-get install emacs-nox
fi
#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

View file

@ -13,39 +13,39 @@ function dpkg_url() {
# installing base dependencies
sudo apt-get -my install \
git \
git \
vim \
stow \
etckeeper \
tmux \
zsh \
powerline\
htop \
mc \
curl \
aptitude \
nnn \
ack \
fzf \
ripgrep \
grc \
fd-find \
ncdu \
tree \
neofetch \
stow \
etckeeper \
tmux \
zsh \
powerline\
htop \
mc \
curl \
aptitude \
nnn \
ack \
fzf \
ripgrep \
grc \
fd-find \
ncdu \
tree \
neofetch \
trash-cli \
nala
read -n1 -p $'Does this system need a ssh server?\n' REPLY
if [[ $REPLY == [Yy] ]]; then
sudo apt-get install openssh-server fail2ban
fi
if [[ $REPLY == [Yy] ]]; then
sudo apt-get install openssh-server fail2ban
fi
read -n1 -p $'\nDoes this system have a GUI?\n' REPLY
if [[ $REPLY == [Yy] ]]; then
sudo apt-get install synaptic emacs vim-gtk3 neovim-qt
else
sudo apt-get install emacs-nox
fi
if [[ $REPLY == [Yy] ]]; then
sudo apt-get install synaptic emacs vim-gtk3
else
sudo apt-get install emacs-nox
fi
release=`lsb_release -cs`
if [[ $release == jammy ]]; then
@ -55,9 +55,14 @@ if [[ $release == jammy ]]; then
btop
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/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
#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/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/ClementTsang/bottom/releases/download/0.9.6/bottom_0.9.6_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