proving git release script isn't busted
[feisty_meow.git] / scripts / archival / snarf_user.pl
index ce21b03a0ea98869cc4f24466542a1d0689a6461..2e6d6f1942de0719292d6dcd5f52bd4f11aa50c3 100644 (file)
 #  version of the License.  Please send any updates to "fred@gruntose.com".   #
 ###############################################################################
 
-require "importenv.pl";
 require "shared_snarfer.pl";
 
+use Env qw(HOME USER);
+
 &initialize_snarfer;
 
 # get the number we use and increment it for the next use.
@@ -28,24 +29,27 @@ local($number) = &retrieve_number("aa_backup");
 
 # variables for directory location to backup and the file to dump it in.
 local($root) = "$HOME";
-local($base) = snarf_prefix("$USER");
-local($snarf_file) = &snarf_name($base, $number);
+local($snarf_file_base) = snarf_prefix("$USER");
+local($snarf_file) = &snarf_name($snarf_file_base, $number);
 
 # store the archive number in the file for retrieval on the other side.
-&backup_number("aa_backup", $base, $number);
+&backup_number("aa_backup", $snarf_file_base, $number);
 
 ############################################################################
 
 # backup all the config info for kde.
-&backup_hierarchy($base, $number, "$root", ".kde");
+&backup_hierarchy($snarf_file_base, $number, "$root", ".kde");
+# and get the config for gnome.
+&backup_hierarchy($snarf_file_base, $number, "$root", ".local");
+&backup_hierarchy($snarf_file_base, $number, "$root", ".gnome*");
 
 # get any dot files ending in "rc", or with "bash" or "profile" in them, or
 # that start with "x".
-&backup_files($base, $number, $root, ".",
+&backup_files($snarf_file_base, $number, $root, ".",
     ("*rc", ".*bash*", ".*profile*", ".x*", ));
 
 # get the ssh configuration files.
-&backup_hierarchy($base, $number, "$root", ".ssh");
+&backup_hierarchy($snarf_file_base, $number, "$root", ".ssh");
 
 # now rename the file so only the unpacker can access it.
 &rename_archive($snarf_file);