fedora support
This commit is contained in:
parent
70f46355ae
commit
1fa6dbcf6e
2 changed files with 32 additions and 0 deletions
26
.scripts/doors/install_min_fedora
Executable file
26
.scripts/doors/install_min_fedora
Executable file
|
@ -0,0 +1,26 @@
|
|||
#!/bin/bash
|
||||
|
||||
cd
|
||||
|
||||
sudo dnf install -y \
|
||||
sl \
|
||||
btop \
|
||||
neovim \
|
||||
byobu \
|
||||
zsh \
|
||||
lf \
|
||||
nnn \
|
||||
kitty-terminfo \
|
||||
mosh \
|
||||
|
||||
# Packer
|
||||
if ! test -d ~/.local/share/nvim/site/pack/packer/start/packer.nvim; then
|
||||
git clone --depth 1 https://github.com/wbthomason/packer.nvim\
|
||||
~/.local/share/nvim/site/pack/packer/start/packer.nvim
|
||||
fi &&
|
||||
|
||||
# OhMyZsh
|
||||
if ! test -d .config/zsh/ohmyzsh; then
|
||||
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
|
||||
fi &&
|
||||
sudo chsh -s /bin/zsh $USER
|
|
@ -34,6 +34,12 @@ elif [[ $OS == *buntu* ]]; then
|
|||
sudo apt-get -y install git rsync &&
|
||||
git clone https://github.com/adoyle0/Doors.git .doors &&
|
||||
.doors/.scripts/doors/install_min_ubuntu
|
||||
|
||||
elif [[ $OS == *Fedora* ]]; then
|
||||
cd &&
|
||||
sudo dnf install -y git rsync &&
|
||||
git clone https://github.com/adoyle0/Doors.git .doors &&
|
||||
.doors/.scripts/doors/install_min_fedora
|
||||
fi
|
||||
|
||||
# send it
|
||||
|
|
Loading…
Add table
Reference in a new issue