🗑️ remove(bin): pinterestDownloader
This commit is contained in:
parent
bccc4fa738
commit
7b5b3eeab8
3 changed files with 0 additions and 44 deletions
|
@ -1,10 +0,0 @@
|
|||
[Unit]
|
||||
Description=Download Pinterest Boards
|
||||
After=network.target
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
ExecStart=/home/matt/.local/bin/downloadPinterest
|
||||
|
||||
[Install]
|
||||
WantedBy=default.target
|
|
@ -1,10 +0,0 @@
|
|||
[Unit]
|
||||
Description=Run Pinterest Downloader Sync Weekly
|
||||
|
||||
[Timer]
|
||||
OnCalendar=*-*-* 17:00:00
|
||||
Persistent=true
|
||||
Unit=downloadPinterest.service
|
||||
|
||||
[Install]
|
||||
WantedBy=timers.target
|
|
@ -1,24 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
image_folder="$HOME/Images/"
|
||||
video_folder="$HOME/Videos/"
|
||||
|
||||
notify() {
|
||||
notify-send "Pinterest Sync" "$1" -i ~/.local/share/icons/Catppuccin-SE/64x64/mimetypes/application-x-partial-download.svg --app-name=Pinterest
|
||||
}
|
||||
|
||||
if ! command -v gallery-dl &>/dev/null; then
|
||||
notify "Error: gallery-dl is not installed"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
notify "Started syncing..."
|
||||
|
||||
while [ "$1" != "" ]; do
|
||||
gallery-dl -d "$image_folder" --download-archive "$image_folder/pinterest/downloads.sqlite3" "$1" --filter "extension not in ('mp4', 'gif')"
|
||||
gallery-dl -d "$video_folder" --download-archive "$video_folder/pinterest/downloads.sqlite3" "$1" --filter "extension in ('mp4', 'gif')"
|
||||
notify "Synced $1"
|
||||
shift
|
||||
done
|
||||
|
||||
notify "Pinterest Sync Complete"
|
Loading…
Add table
Reference in a new issue