add music folder

This commit is contained in:
2025-08-27 22:19:49 -05:00
parent 523820a4d0
commit 241f5646ee

View File

@@ -63,13 +63,14 @@ while true; do
if [ "$storageChoice" = "y" ]; then if [ "$storageChoice" = "y" ]; then
read -p "Specify the path to the external storage device (full path must be used): " storagePath read -p "Specify the path to the external storage device (full path must be used): " storagePath
sudo rm -rf ~/Documents ~/Pictures ~/Downloads ~/Videos sudo rm -rf ~/Documents ~/Pictures ~/Downloads ~/Videos ~/Music
ln -s "$storagePath/Pictures/" ~/ ln -s "$storagePath/Pictures/" ~/
ln -s "$storagePath/Repos/" ~/ ln -s "$storagePath/Repos/" ~/
ln -s "$storagePath/Documents/" ~/ ln -s "$storagePath/Documents/" ~/
ln -s "$storagePath/Downloads/" ~/ ln -s "$storagePath/Downloads/" ~/
ln -s "$storagePath/Videos/" ~/ ln -s "$storagePath/Videos/" ~/
ln -s "$storagePath/Music/" ~/
break break
elif [ "$storageChoice" = "n" ]; then elif [ "$storageChoice" = "n" ]; then