added package management
This commit is contained in:
parent
b8dbe5e1a1
commit
3e62e15c35
1 changed files with 6 additions and 0 deletions
|
@ -1,5 +1,11 @@
|
|||
#!/bin/bash
|
||||
|
||||
if [ -f /etc/rocky-release ]; then
|
||||
sudo dnf install zsh git curl
|
||||
elif [ -f /etc/arch-release ]; then
|
||||
sudo pacman -S zsh git curl
|
||||
fi
|
||||
|
||||
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
|
||||
|
||||
sed -i 's/ZSH_THEME=.*/ZSH_THEME="bureau"/' ~/.zshrc
|
||||
|
|
Loading…
Reference in a new issue