fedora dependency script
This commit is contained in:
parent
51a25e9acc
commit
a543d00d47
2 changed files with 22 additions and 0 deletions
19
fdeps.sh
Executable file
19
fdeps.sh
Executable file
|
@ -0,0 +1,19 @@
|
||||||
|
#!/bin/bash
|
||||||
|
#These are the programs I expect to find on any install
|
||||||
|
|
||||||
|
echo "installing base dependencies"
|
||||||
|
sudo dnf install \
|
||||||
|
git \
|
||||||
|
stow \
|
||||||
|
etckeeper \
|
||||||
|
tmux \
|
||||||
|
zsh \
|
||||||
|
vim \
|
||||||
|
powerline\
|
||||||
|
htop \
|
||||||
|
mc \
|
||||||
|
curl \
|
||||||
|
fzf \
|
||||||
|
bat \
|
||||||
|
duf
|
||||||
|
|
3
init.sh
3
init.sh
|
@ -11,6 +11,9 @@ case $answer in
|
||||||
a)
|
a)
|
||||||
bash adeps.sh
|
bash adeps.sh
|
||||||
;;
|
;;
|
||||||
|
f)
|
||||||
|
bash fdeps.sh
|
||||||
|
;;
|
||||||
*)
|
*)
|
||||||
echo "Skipping installation of dependencies!"
|
echo "Skipping installation of dependencies!"
|
||||||
;;
|
;;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue