Skip to content

Instantly share code, notes, and snippets.

@werrpy
werrpy / backup.sh
Last active July 28, 2019 15:42
backup plex every 6 am
#!/bin/bash
plex_archive="/home/$(date '+%F') Plex Media Server.tar"
/bin/tar -cvf "$plex_archive" "/home/plexmediaserver/Library/Application Support/Plex Media Server" > /dev/null 2>&1
/usr/bin/rclone --config /root/gdrive/config/rclone_vault.conf move "$plex_archive" drive:Backups/Plex > /dev/null 2>&1
tautulli_archive="/home/$(date '+%F') Tautulli.tar"
/bin/tar -cvf "$tautulli_archive" "/opt/Tautulli/backups" > /dev/null 2>&1
/usr/bin/rclone --config /root/gdrive/config/rclone_vault.conf move "$tautulli_archive" drive:Backups/Tautulli > /dev/null 2>&1
@werrpy
werrpy / .bashrc
Last active October 8, 2023 11:02
rtorrent / deluge symlink and auto rename for plex and rclone upload
alias filter_filebot='cat ~/filebot/data/logs/filebot_auto_rclone.log | grep -i "move" | uniq > ~/filebot/data/logs/filebot_auto_rclone_filtered.log && cat ~/filebot/data/logs/filebot_auto_rclone_filtered.log'
@werrpy
werrpy / imgbox.html
Created April 7, 2019 18:44
imgbox bbcode fixer wip
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
body {
font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
color: #696969;
}
h1, h2, h3, h4, h5, h6 {
color: inherit;
font-family: inherit;
}
.navbar {
font-family: inherit;
@werrpy
werrpy / rgdm-mount.service
Created March 24, 2019 01:13
gdrive plex mount systemd
[Unit]
Description=rclone google drive media mount
After=network-online.target
[Service]
Type=simple
ExecStart=/usr/bin/rclone --config /root/gdrive/config/rclone.conf mount media-remote-secret: /mnt/gdrive-media --allow-non-empty --allow-other --read-only --dir-cache-time 48h --vfs-read-chunk-size 32M --vfs-read-chunk-size-limit 2G --tpslimit 5 --tpslimit-burst 5
ExecStop=/bin/fusermount -quz /mnt/gdrive-media
Restart=on-abort
RestartSec=5
@werrpy
werrpy / crontab -e
Created March 19, 2019 22:54
gdrive plex mount cron
*/5 * * * * /home/USERNAME/bin/gdrive-mount-media.sh
python -c "from __future__ import print_function; import requests; print(\"it's up\") if requests.get(\"https://example.com\").status_code == 200 else print(\"it's down\")"
@werrpy
werrpy / xmas-dark.css
Created November 26, 2018 19:09
xmas
/* 2014 material design colors from https://material.io/design/color/the-color-system.html#tools-for-picking-colors */
/*
Green
50 #E8F5E9
100 #C8E6C9
200 #A5D6A7
300 #81C784
400 #66BB6A
500 #4CAF50
#main-content {
background-color: #000;
}
##
# You should look at the following URL's in order to grasp a solid understanding
# of Nginx configuration files in order to fully unleash the power of Nginx.
# https://www.nginx.com/resources/wiki/start/
# https://www.nginx.com/resources/wiki/start/topics/tutorials/config_pitfalls/
# https://wiki.debian.org/Nginx/DirectoryStructure
#
# In most cases, administrators will remove this file from sites-enabled/ and
# leave it as reference inside of sites-available where it will continue to be
# updated by the nginx packaging team.