├── LICENSE ├── README.md ├── assets └── pi2.jpg ├── config ├── piphoto.conf.example ├── systemd │ └── piphoto.service └── udev │ └── 99-mediastorage_card_insert_run.rules ├── destinations ├── dropbox │ ├── README.md │ ├── piphoto-dropbox-sync │ └── piphoto.dropbox.conf.example ├── osx-lightroom-classic │ └── README.md └── ssh-copy-and-organize │ ├── README.md │ ├── piphoto-ssh-sync │ ├── piphoto.ssh.conf.example │ └── ssh.config.example ├── install.sh └── src ├── piphoto └── piphoto-reset-led /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lou-k/pi-photo-sync/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lou-k/pi-photo-sync/HEAD/README.md -------------------------------------------------------------------------------- /assets/pi2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lou-k/pi-photo-sync/HEAD/assets/pi2.jpg -------------------------------------------------------------------------------- /config/piphoto.conf.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lou-k/pi-photo-sync/HEAD/config/piphoto.conf.example -------------------------------------------------------------------------------- /config/systemd/piphoto.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lou-k/pi-photo-sync/HEAD/config/systemd/piphoto.service -------------------------------------------------------------------------------- /config/udev/99-mediastorage_card_insert_run.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lou-k/pi-photo-sync/HEAD/config/udev/99-mediastorage_card_insert_run.rules -------------------------------------------------------------------------------- /destinations/dropbox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lou-k/pi-photo-sync/HEAD/destinations/dropbox/README.md -------------------------------------------------------------------------------- /destinations/dropbox/piphoto-dropbox-sync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lou-k/pi-photo-sync/HEAD/destinations/dropbox/piphoto-dropbox-sync -------------------------------------------------------------------------------- /destinations/dropbox/piphoto.dropbox.conf.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lou-k/pi-photo-sync/HEAD/destinations/dropbox/piphoto.dropbox.conf.example -------------------------------------------------------------------------------- /destinations/osx-lightroom-classic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lou-k/pi-photo-sync/HEAD/destinations/osx-lightroom-classic/README.md -------------------------------------------------------------------------------- /destinations/ssh-copy-and-organize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lou-k/pi-photo-sync/HEAD/destinations/ssh-copy-and-organize/README.md -------------------------------------------------------------------------------- /destinations/ssh-copy-and-organize/piphoto-ssh-sync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lou-k/pi-photo-sync/HEAD/destinations/ssh-copy-and-organize/piphoto-ssh-sync -------------------------------------------------------------------------------- /destinations/ssh-copy-and-organize/piphoto.ssh.conf.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lou-k/pi-photo-sync/HEAD/destinations/ssh-copy-and-organize/piphoto.ssh.conf.example -------------------------------------------------------------------------------- /destinations/ssh-copy-and-organize/ssh.config.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lou-k/pi-photo-sync/HEAD/destinations/ssh-copy-and-organize/ssh.config.example -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lou-k/pi-photo-sync/HEAD/install.sh -------------------------------------------------------------------------------- /src/piphoto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lou-k/pi-photo-sync/HEAD/src/piphoto -------------------------------------------------------------------------------- /src/piphoto-reset-led: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lou-k/pi-photo-sync/HEAD/src/piphoto-reset-led --------------------------------------------------------------------------------