Compare commits

..

No commits in common. "584d85ef90e06aa61decff67d34eb99237e1e8ea" and "9b2faedb19153cc41ec3c15ef2cdd34b57605610" have entirely different histories.

3 changed files with 0 additions and 26 deletions

View file

@ -1,26 +0,0 @@
#!/bin/sh
# Sync icloud photos to machine using a
# simple wrapper for tmux and icloudpd
session="icloudsync"
# Check if icloudpd is available
if ! type icloudpd >/dev/null; then
echo "please install icloud photo downloader."
echo "See: https://github.com/icloud-photos-downloader/icloud_photos_downloader"
exit 1
fi
tmux has-session -t $session 2>/dev/null
if [ $? != 0 ]; then
tmux new-session -d -s $session
tmux send-keys -t $session "icloudpd --directory=$HOME/Pictures --username \$ICLOUD_USERNAME" C-m
echo "icloudsync started"
else
if [[ $1 == "attach" ]]; then
tmux attach-session -t $session
else
echo "icloudsync already active: use icloudsync attach to view progress"
fi
fi

Binary file not shown.

Before

Width:  |  Height:  |  Size: 44 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 19 KiB