formatting
[feisty_meow.git] / scripts / customize / fred / scripts / games / gamesaver.sh
index f90514f6fa3edaf2dc4cb254d30ebe3a86431d69..4f183ce5d095530e78a2f1d9e292c4e188339548 100644 (file)
@@ -59,10 +59,13 @@ function copy_all_save_games()
   copyem "witcher 3" "$WINE_GOODS_DIR/The Witcher 3/gamesaves" "$SPOOLING_OUTPUT_DIR/witcher_3"
 }
 
+####
+
 # mainline of script tries out a few locations to back up.
 
 # first try our play on linux storage.  very individualized for fred.
-wine_goods_dir="$HOME/wine_goods"
+wine_goods_dir="$HOME/linx/wine_goods"
+# hmmm, this second attempt is a gloss over differences on windows, where some steam games might save to the my documents folder?
 if [ ! -d "$wine_goods_dir" ]; then
   wine_goods_dir="/cygdrive/c/users/fred/My Documents"
 fi
@@ -76,11 +79,12 @@ fi
 # this uses a link in the home directory called steam_goods which is connected to
 # "$HOME/.steam/steam/SteamApps/compatdata/MYNUM/pfx/drive_c/users/steamuser/My Documents"
 # where MYNUM is replaced with one's steam ID number.
-wine_goods_dir="$HOME/steam_goods"
+wine_goods_dir="$HOME/linx/steam_goods"
 if [ ! -d "$wine_goods_dir" ]; then
-  echo "not trying to back up any wine goods; could not find an appropriate folder."
+  echo "not trying to back up any steam goods; could not find an appropriate folder."
 else
   copy_all_save_games "$wine_goods_dir"
 fi
 
+####