-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdate.sh
executable file
·53 lines (43 loc) · 2.84 KB
/
update.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/usr/bin/env bash
SCRIPT_DIR=$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &>/dev/null && pwd)
echo "**** Updating ... ****"
echo "* configs.."
rsync -ahzc "${HOME}/.myshell/zsh/.p10k.zsh" "${HOME}/" || exit 100
rsync -ahzc "${HOME}/.myshell/zsh/.zshrc" "${HOME}/" || exit 100
rsync -ahzc "${HOME}/.myshell/dotfiles/.nanorc" "${HOME}/" || exit 100
sudo rsync -ahzc "${HOME}/.myshell/zsh/.p10k.zsh" "/root/" || exit 100
sudo rsync -ahzc "${HOME}/.myshell/zsh/.zshrc" "/root/" || exit 100
sudo rsync -ahzc "${HOME}/.myshell/dotfiles/.nanorc" "/root/" || exit 100
mkdir -p "${HOME}/.config/neofetch/" || exit 100
sudo mkdir -p "/root/.config/neofetch/" || exit 100
rsync -ahzc "${HOME}/.myshell/dotfiles/neofetch.conf" "${HOME}/.config/neofetch/config.conf" || exit 100
sudo rsync -ahzc "${HOME}/.myshell/dotfiles/neofetch.conf" "/root/.config/neofetch/config.conf" || exit 100
echo "* autosuggestions.."
git -C ${ZSH_CUSTOM:-${HOME}/.oh-my-zsh/custom}/plugins/zsh-autosuggestions pull || exit 100
[[ -d "/root/.oh-my-zsh/custom/plugins/zsh-autosuggestions" ]] && sudo git -C ${ZSH_CUSTOM:-/root/.oh-my-zsh/custom}/plugins/zsh-autosuggestions pull
echo "* highlighting.."
git -C ${ZSH_CUSTOM:-${HOME}/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting pull || exit 100
[[ -d "/root/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting" ]] && sudo git -C ${ZSH_CUSTOM:-/root/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting pull
# update icons for ls
architecture=$(dpkg --print-architecture)
case $architecture in
armhf) echo "ARM detecterd, ignoring some configs" ;;
*) sudo bash "${HOME}/.myshell/github/dpkg-github.sh" -a "$(dpkg --print-architecture)" -i Peltoche/lsd ;;
esac
echo "* starship.."
sh -c "$(curl -fsSL https://starship.rs/install.sh)" || exit 100
cp "${SCRIPT_DIR}/starship/starship.toml" "${HOME}/.config/starship.toml" || exit 100
sudo cp "${SCRIPT_DIR}/starship/starship.toml" "/root/.config/starship.toml" || exit 100
echo "* fonts.."
mkdir -p ~/.local/share/fonts && cd ~/.local/share/fonts || exit 100
curl -fLo "JetBrains Mono Regular Nerd Font Mono.ttf" https://github.com/ryanoasis/nerd-fonts/blob/master/patched-fonts/JetBrainsMono/Ligatures/Regular/JetBrainsMonoNerdFont-Regular.ttf || exit 100
curl -fLo "JetBrains Mono Regular Nerd Font Mono Regular.ttf" https://github.com/ryanoasis/nerd-fonts/blob/master/patched-fonts/JetBrainsMono/Ligatures/Regular/JetBrainsMonoNerdFontMono-Regular.ttf || exit 100
curl -fLo "JetBrains Mono Regular Nerd Font Mono Propo Regular.ttf" https://github.com/ryanoasis/nerd-fonts/blob/master/patched-fonts/JetBrainsMono/Ligatures/Regular/JetBrainsMonoNerdFontPropo-Regular.ttf || exit 100
fc-cache -f -v || exit 100
[[ -f "${HOME}/.myshell/mods/update.sh" ]] && source "${HOME}/.myshell/mods/update.sh"
echo "
**************************
if you manually run update.sh, RUN THIS COMMANDS!
omz update && omz reload
**************************
"