Create separate script for installing openssh
This commit is contained in:
parent
948961e0c6
commit
a9b9c425ce
2 changed files with 11 additions and 2 deletions
|
@ -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)";
|
||||
|
||||
|
|
11
scripts/Arch/Software/openssh/install.sh
Executable file
11
scripts/Arch/Software/openssh/install.sh
Executable 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;
|
Loading…
Reference in a new issue