summaryrefslogtreecommitdiff
path: root/archive/bin/usbskelhere
diff options
context:
space:
mode:
Diffstat (limited to 'archive/bin/usbskelhere')
-rwxr-xr-xarchive/bin/usbskelhere25
1 files changed, 25 insertions, 0 deletions
diff --git a/archive/bin/usbskelhere b/archive/bin/usbskelhere
new file mode 100755
index 00000000..d242e482
--- /dev/null
+++ b/archive/bin/usbskelhere
@@ -0,0 +1,25 @@
+#!/bin/bash
+
+. $HOME/.shenv
+. $HOME/src/dotfiles/lib-src/tputfs.sh
+
+skelhere ()
+{
+ usbpubkeys
+ mkdir -p doc bin lib
+ cp -RLf ~/lib/annex/big/skel/usb/* .
+ cp ~/src/dotfiles/bin/{apple-setup.sh,dasl-setup.bat} bin
+ cp -L ~/lib/pro.terminal lib
+ cp -L "$HOME/lib/annex/doc/sounds/Rainy Mood pomodoro.mp3" lib
+ zip -j lib/spwhitton.zip lib/*.reg bin/*
+ # status now you might want to clone ~/lib/dionysus\; see comproc.org
+}
+
+while true; do
+ read -p "This might overwrite stuff in $(pwd). Is that okay? " yn
+ case $yn in
+ [Yy]* ) skelhere; break;;
+ [Nn]* ) exit;;
+ * ) echo "Please answer yes or no.";;
+ esac
+done