Create separate script for installing openssh

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

View file

@ -21,14 +21,12 @@ yay --noconfirm -Syu \
zoxide \
fzf \
sl \
openssh \
terminal-parrot \
rar \
;
. "../Software/vim/install.sh";
. "../Software/git/install.sh";
. "../Config/openssh/install.sh";
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;