commit 7e8f6f9cdeec6d1df5d8679529e2b9604fc8fb73
parent d7498a8707b2c75bb84d68a9959664c09207f498
Author: andrew.laack <andrew.laack@imbue.com>
Date: Wed, 3 Sep 2025 18:26:40 -0500
Added git script, updated installer
Diffstat:
2 files changed, 23 insertions(+), 2 deletions(-)
diff --git a/arch-install.sh b/arch-install.sh
@@ -9,7 +9,10 @@ mkdir gitRepos
git clone ssh://brgr/home/shared/git/public-repos/scripts.git
mv scripts bin
sudo pacman -Sy xorg
+sudo pacman -Sy ocaml # for installing unison
sudo pacman -Sy arandr
+sudo pacman -Sy torbrowser-launcher
+sudo pacman -Sy zenity # needed for me to make browser work
git clone ssh://brgr/home/shared/git/public-repos/dotfiles.git
mv dotfiles .config
@@ -22,6 +25,22 @@ sudo pacman -Sy rsync
sudo pacman -Sy flameshot
sudo pacman -Sy yt-dlp
+## UNISON
+# NOTE: This must be installed on server + client
+
+cd
+cd gitRepos
+git clone https://github.com/bcpierce00/unison
+cd unison
+PREFIX=/usr/local/bin
+make
+sudo make install
+cd
+source ~/.bashrc
+
+mkdir syncing
+unison syncing ssh://brgr//home/shared/fileSharing/syncing -auto -batch
+
## DWM
cd gitRepos
@@ -85,8 +104,7 @@ rm -rf yay
# this might only be necessary because I'm using arm...
yay -S pandoc-bin
-
-
+yay -S librewolf-bin
# cd ~/gitRepos
# git clone ssh://brgr/home/shared/git/private-repos/dvtm.git
diff --git a/checkout.sh b/checkout.sh
@@ -0,0 +1,3 @@
+#!/bin/bash
+
+git branch --format='%(refname:short)' | fzf | xargs git checkout