commit 81f8938d137bbe21a7403cb399d92b0d5863f53b parent bed6c27def7d6270ebda076c4c9741ae3224f5ab Author: Andrew Laack <andrew@laack.co> Date: Tue, 26 Aug 2025 08:53:37 -0500 Updated installer Diffstat:
| M | arch-install.sh | | | 39 | +++++++++++++++++++++++++++++++++++++++ |
1 file changed, 39 insertions(+), 0 deletions(-)
diff --git a/arch-install.sh b/arch-install.sh @@ -1,5 +1,44 @@ #!/bin/bash # Please complete archinstall with pipewire install first +# This was built for usage within a vm where the host is connected to tailscale network +# If this is not the case, install tailscale and connect to network first +ssh-keygen -t ed25519 -C "andrew@laack.co" +ssh-copy-id -i ~/.ssh/id_ed25519.pub andrew@brgr +mkdir gitRepos +git clone ssh://brgr/home/shared/git/public-repos/scripts.git +mv scripts bin +install xorg + +git clone ssh://brgr/home/shared/git/public-repos/dotfiles.git +mv .config +ln .config/xinitrc .xinitrc + +sudo pacman -Sy ttf-fira-code + +cd gitRepos +git clone ssh://brgr/home/shared/git/public-repos/dwm.git +cd dwm +sudo make install +cd .. + +git clone ssh://brgr/home/shared/git/public-repos/st.git +cd st +sudo make install + +sudo pacman -Sy neovim +sudo pacman -Sy install sudo pacman -Sy qutebrowser +sudo pacman -Sy zoxide +sudo pacman -Sy mpv + +git config --global user.email "andrew@laack.co" +git config --global user.name "Andrew Laack" + +rm .bashrc +ln .config/bashrc .bashrc + +startx + +