New version

This commit is contained in:
2026-08-01 10:20:12 +02:00
parent f4a7362c4d
commit e8a3f3cec9
5 changed files with 93 additions and 130 deletions
+36
View File
@@ -0,0 +1,36 @@
#!/bin/bash
# Configuration file for run.sh
# =============================================================================
# Phone Configuration
# =============================================================================
PHONE_FTP_USER=ftp
PHONE_FTP_PASS=ftp
PHONE_FTP_IP=192.168.1.30
PHONE_FTP_PORT=2121
PHONE_DESTINATION="Phone/"
# List of folders to sync: pairs of (remote_dir, local_dir)
PHONE_LINKS=(
"/DCIM" "DCIM"
"/Pictures" "Pictures"
"/Download" "Download"
"/WhatsApp/Media/WhatsApp Video" "WhatsApp_Video"
"/WhatsApp/Media/WhatsApp Images" "WhatsApp_Images"
"/Documents" "Documents"
)
# =============================================================================
# Card Configuration
# =============================================================================
CARD_FTP_USER=card
CARD_FTP_PASS=card
CARD_FTP_IP=192.168.1.30
CARD_FTP_PORT=2121
CARD_DESTINATION="Card/"
# List of folders to sync: pairs of (remote_dir, local_dir)
CARD_LINKS=(
"DCIM" "DCIM"
"Download" "Download"
)