37 lines
1020 B
Bash
37 lines
1020 B
Bash
#!/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"
|
|
)
|