relocated the feisty meow init examples, since they were languishing in too deep
authorChris Koeritz <fred@gruntose.com>
Thu, 18 Apr 2013 01:00:15 +0000 (21:00 -0400)
committerChris Koeritz <fred@gruntose.com>
Thu, 18 Apr 2013 01:00:15 +0000 (21:00 -0400)
of a directory.

examples/feisty_meow_startup/README.txt [deleted file]
examples/feisty_meow_startup/bashrc_grover [deleted file]
examples/feisty_meow_startup/bashrc_root [deleted file]
examples/feisty_meow_startup/bashrc_user [deleted file]
examples/feisty_meow_startup/bashrc_user_windoz [deleted file]
feisty_inits/dot.bashrc-normal-user [new file with mode: 0644]
feisty_inits/dot.bashrc-root [new file with mode: 0644]
feisty_inits/dot.bashrc-windows-user [new file with mode: 0644]

diff --git a/examples/feisty_meow_startup/README.txt b/examples/feisty_meow_startup/README.txt
deleted file mode 100644 (file)
index 4ebb8a9..0000000
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-these are some example scripts for getting the feisty meow aliases loaded.
-
-their purposes vary by the type of user they serve.
diff --git a/examples/feisty_meow_startup/bashrc_grover b/examples/feisty_meow_startup/bashrc_grover
deleted file mode 100644 (file)
index 15ab15c..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-
-# grover is a sharp zaurus.  this is pretty out of date.
-
-export LC_ALL=C
-alias mc='mc -a'
-
-export PATH=$PATH:/home/QtPalmtop/j2me:/home/QtPalmtop/j2me/bin
-
-alias fredme='export HOME=/home/zaurus/fred ; export TMP=$HOME/.tmp ; source $HOME/feisty_meow/scripts/core/launch_feisty_meow.sh ; cd '
-
-
diff --git a/examples/feisty_meow_startup/bashrc_root b/examples/feisty_meow_startup/bashrc_root
deleted file mode 100644 (file)
index c56a6a1..0000000
+++ /dev/null
@@ -1,5 +0,0 @@
-
-# added to root's ~/.bashrc, the fredme macro enables all the feisty_meow tools.
-
-alias fredme='source $HOME/feisty_meow/scripts/core/launch_feisty_meow.sh'
-
diff --git a/examples/feisty_meow_startup/bashrc_user b/examples/feisty_meow_startup/bashrc_user
deleted file mode 100644 (file)
index f42144e..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-
-# this script is for normal users (not the root user).
-
-#fix this.
-export NAME='Frunkooleon Q. Grendervasp'
-
-if [ "${TERM}" != "dumb" -a -z "$PBS_ENVIRONMENT" ]; then
-  # sets up the feisty_meow scripts, using the default locations for all scripts.
-  source $HOME/feisty_meow/scripts/core/launch_feisty_meow.sh
-fi
-
diff --git a/examples/feisty_meow_startup/bashrc_user_windoz b/examples/feisty_meow_startup/bashrc_user_windoz
deleted file mode 100644 (file)
index bb73d00..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-
-# example additions to make windoze not suck as much.
-export PATH=/bin:$PATH:/d/utilities/emacs-23.2/bin:/d/utilities/vim/vim71:/d/system/perl/site/bin:/d/system/perl/bin:/d/tools/doxygen/bin:/d/tools/graphviz/Graphviz/bin
-
-if [ "${TERM}" != "dumb" -a -z "$PBS_ENVIRONMENT" ]; then
-  source $HOME/feisty_meow/scripts/core/launch_feisty_meow.sh
-fi
-
diff --git a/feisty_inits/dot.bashrc-normal-user b/feisty_inits/dot.bashrc-normal-user
new file mode 100644 (file)
index 0000000..be19906
--- /dev/null
@@ -0,0 +1,13 @@
+
+# this script is for normal users running bash (not the root user).
+# it can be added to your ~/.bashrc file to automatically load the feisty
+# meow script environment.
+
+### this should be set to your name...
+export NAME='Frunkooleon Q. Grendervasp'
+
+if [ "${TERM}" != "dumb" -a -z "$PBS_ENVIRONMENT" ]; then
+  # sets up the feisty_meow scripts.
+  source $HOME/feisty_meow/scripts/core/launch_feisty_meow.sh
+fi
+
diff --git a/feisty_inits/dot.bashrc-root b/feisty_inits/dot.bashrc-root
new file mode 100644 (file)
index 0000000..859b79a
--- /dev/null
@@ -0,0 +1,6 @@
+
+# this file can be added to root's ~/.bashrc...
+# it provides the "fredme" macro that enables all the feisty_meow tools.
+
+alias fredme='source $HOME/feisty_meow/scripts/core/launch_feisty_meow.sh'
+
diff --git a/feisty_inits/dot.bashrc-windows-user b/feisty_inits/dot.bashrc-windows-user
new file mode 100644 (file)
index 0000000..6a652f7
--- /dev/null
@@ -0,0 +1,13 @@
+
+# some example path additions to make windoze less awful.
+# they depend on msys style paths, but can work under cygwin if you do:
+#   ln -s /cygdrive/c /c; ln -s /cygdrive/d /d; and so on.
+# this is just an example because your installation paths are almost certainly
+# different.
+export PATH=/bin:$PATH:/d/utilities/emacs-23.2/bin:/d/utilities/vim/vim71:/d/system/perl/site/bin:/d/system/perl/bin:/d/tools/doxygen/bin:/d/tools/graphviz/Graphviz/bin
+
+if [ "${TERM}" != "dumb" -a -z "$PBS_ENVIRONMENT" ]; then
+  # windows startup of the feisty meow script environment.
+  source $HOME/feisty_meow/scripts/core/launch_feisty_meow.sh
+fi
+