diff options
author | Daniel Weipert <code@drogueronin.de> | 2022-01-20 13:07:35 +0100 |
---|---|---|
committer | Daniel Weipert <code@drogueronin.de> | 2022-01-20 13:07:35 +0100 |
commit | a93cd258761c9a5a34f2c1dcda23fc95250bd6ce (patch) | |
tree | 81ddf1a3c78a709be88f9ae70759f3d4e2592d64 | |
parent | 981125b58ada9fc308cb2e561b5182d1bb0f83e5 (diff) |
Move dotfile install before program install
-rw-r--r-- | install-arch.sh | 42 |
1 files changed, 23 insertions, 19 deletions
diff --git a/install-arch.sh b/install-arch.sh index aa555c0..a9d409c 100644 --- a/install-arch.sh +++ b/install-arch.sh @@ -90,18 +90,6 @@ exit # Post Install # # -# CLI -sudo pacman -Sy \ - zsh nvim nnn ripgrep fd - -# Desktop -sudo pacman -Sy \ - sway alacritty waybar \ - xorg-xwayland rofi \ - alsa-utils cups cups-pdf \ - imv grim \ - qutebrowser - mkdir -p $HOME/Applications mkdir -p $HOME/Documents mkdir -p $HOME/Downloads @@ -128,18 +116,34 @@ git clone https://aur.archlinux.org/aurutils.git $HOME/Applications/aurutils cd $HOME/Applications/aurutils makepkg -irs -# AUR installs +# dotfiles aur sync yadm-git +sudo pacman -Sy yadm-git +yadm clone https://gitlab.com/drogueronin/dotfiles + +# CLI +sudo pacman -Sy \ + zsh nvim \ + ripgrep fd \ + nnn + +yadm bootstrap + +# Desktop +sudo pacman -Sy \ + sway alacritty waybar \ + xorg-xwayland wofi \ + alsa-utils cups cups-pdf \ + imv grim \ + qutebrowser + +# AUR installs aur sync nerd-fonts-hack aur sync autojump sudo pacman -Sy \ - yadm-git \ - nerd-fonts-hack \ - autojump - -# dotfiles -yadm clone --bootstrap https://gitlab.com/drogueronin/dotfiles + nerd-fonts-hack \ + autojump # nix sudo pacman -Sy \ |