-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup-from-usb.sh
33 lines (24 loc) · 883 Bytes
/
setup-from-usb.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
sudo mkdir -p /usb
sudo mount /dev/sdb /usb
for thing in .zshrc .zsh .i3 .profile .Xresources; do
cp -R /usb/$thing /home/glenn
chown -R glenn:ysers /home/glenn/$thing
done
sudo cp -R /usb/.zshrc /home/glenn/.zshrc
sudo chown glenn:users .zshrc
git clone [email protected]:GlennS/octopus.git
git clone [email protected]:GlennS/pass.git .password-store
git clone --bare [email protected]:GlennS/config config.git
git clone [email protected]:glenns/notes.git
git clone [email protected]:glenns/recklessclicking.git
git clone [email protected]:glenns/cammy.git
nix-env -iA nixos.git-lfs
mkdir cammy/repos
git clone [email protected]:CammyLabs/madrox.git
git clone [email protected]:HomeScript/winhub-manager.git
git clone [email protected]:spwhitt/nix-zsh-completions.git
git clone [email protected]:glenns/.ssh.git .ssh2
mv .ssh2 .ssh
chmod -R 600 .ssh
sudo umount /usb
sudo rmdir /usb