Create separate script for installing openssh

This commit is contained in:
Manuel Thalmann 2024-03-09 01:05:38 +01:00
parent 948961e0c6
commit a9b9c425ce
2 changed files with 11 additions and 2 deletions

View file

@ -21,14 +21,12 @@ yay --noconfirm -Syu \
zoxide \ zoxide \
fzf \ fzf \
sl \ sl \
openssh \
terminal-parrot \ terminal-parrot \
rar \ rar \
; ;
. "../Software/vim/install.sh"; . "../Software/vim/install.sh";
. "../Software/git/install.sh"; . "../Software/git/install.sh";
. "../Config/openssh/install.sh";
sudo chsh $USER --shell "$(which fish)"; sudo chsh $USER --shell "$(which fish)";

View file

@ -0,0 +1,11 @@
#!/bin/bash
pushd "${BASH_SOURCE%/*}" > /dev/null;
yay --noconfirm -Syu \
openssh \
;
# Git Config
source "../../Config/openssh/install.sh";
popd > /dev/null;