From 6d3e5b049560cb1b9c1118a335b22b5aacdc5a6c Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Mon, 11 Nov 2024 08:35:57 -0600 Subject: moving things around --- assets/post-install.sh | 52 -------------------------------------------------- 1 file changed, 52 deletions(-) delete mode 100755 assets/post-install.sh (limited to 'assets/post-install.sh') diff --git a/assets/post-install.sh b/assets/post-install.sh deleted file mode 100755 index 57825a5..0000000 --- a/assets/post-install.sh +++ /dev/null @@ -1,52 +0,0 @@ -#!/bin/sh - -logfile="$HOME/post-install.log" -touch $logfile - -echo "fixing perms on gpg directory" -{ - chown -R $(whoami) ~/.gnupg/ - find ~/.gnupg -type f -exec chmod 600 {} \; - find ~/.gnupg -type d -exec chmod 700 {} \; -} >> $logfile 2>&1 - -echo "fixing remote repositories" -{ - cd ~/.dotfiles && \ - git remote remove origin && \ - git remote add origin git@cjennings.net:dotfiles.git - - cd ~/.emacs.d && \ - git remote remove origin && \ - git remote add origin git@cjennings.net:dotemacs.git -} - -echo "cloning git repos" -{ - git clone cjennings@cjennings.net:git/org.git ~/sync/org - git clone --depth 1 cjennings@cjennings.net:git/wallpaper.git ~/pictures/wallpaper - git clone cjennings@cjennings.net:git/documents.git ~/projects/documents - git clone cjennings@cjennings.net:git/kit.git ~/projects/kit - git clone cjennings@cjennings.net:git/clipper.git ~/projects/clipper - git clone cjennings@cjennings.net:git/finances.git ~/projects/finances - - git clone git@cjennings.net:dwm.git ~/code/dwm - git clone git@cjennings.net:dmenu.git ~/code/dmenu - git clone git@cjennings.net:st.git ~/code/st - git clone cjennings@cjennings.net:git/slock.git ~/code/slock - git clone git@cjennings.net:pinentry-dmenu.git ~/code/pinentry-dmenu - - git clone cjennings@cjennings.net:git/bsdsetup.git ~/code/bsdsetup - git clone git@cjennings.net:archsetup.git ~/code/archsetup - - git clone cjennings@cjennings.net:git/exercism.git ~/code/exercism - git clone cjennings@cjennings.net:git/elisp.git ~/code/elisp - git clone cjennings@cjennings.net:git/clisp.git ~/code/clisp - git clone cjennings@cjennings.net:git/100dayspython.git ~/code/100dayspython - - git clone cjennings@cjennings.net:git/nasbuild.git ~/projects/nasbuild - git clone cjennings@cjennings.net:git/nextjob.git ~/projects/nextjob - git clone cjennings@cjennings.net:git/elibrary.git ~/projects/elibrary -} >> $logfile 2>&1 - -printf "\n\nDone.\n\n" -- cgit v1.2.3