From 023f399f838867fc9edb2c0ee09fd6ad566d40b7 Mon Sep 17 00:00:00 2001 From: Kendall Whitman Date: Sat, 19 Apr 2025 17:56:53 -0500 Subject: [PATCH] add video folder sym link --- install.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/install.sh b/install.sh index e1c78bb..f3ae2c7 100644 --- a/install.sh +++ b/install.sh @@ -65,12 +65,13 @@ while true; do if [ "$storageChoice" = "y" ]; then read -p "Specify the path to the external storage device (full path must be used): " storagePath - sudo rm -rf ~/Documents ~/Pictures ~/Downloads + sudo rm -rf ~/Documents ~/Pictures ~/Downloads ~/Videos ln -s "$storagePath/Pictures/" ~/ ln -s "$storagePath/Repos/" ~/ ln -s "$storagePath/Documents/" ~/ ln -s "$storagePath/Downloads/" ~/ + ln -s "$storagePath/Videos/" ~/ break elif [ "$storageChoice" = "n" ]; then