Skip to content

Instantly share code, notes, and snippets.

View subzero79's full-sized avatar

subzero79 subzero79

  • Sunshine Coast, QLD
View GitHub Profile
templates:
GMail:
email:
from: '{{ secrets.email.from }}'
to: '{{ secrets.email.to }}'
smtp_host: smtp.gmail.com
smtp_port: 587
smtp_username: '{{ secrets.email.smtp_username }}'
smtp_password: '{{ secrets.email.smtp_password }}'
smtp_tls: yes
@subzero79
subzero79 / speedcd.yml
Last active September 17, 2016 22:47 — forked from lxt2/speedcd.yml
An indexer definition for speed.cd for cardigann
---
site: speedcd
name: Speed.CD
language: en-us
links:
- https://???
caps:
categories:
52: TV/HD #TV/B-Ray
#!/bin/bash
filePath="${1}"
##SONARR API CONSULT
SONARR_HOST="10.10.10.12"
SONARR_PORT="8989"
SONARR_API="5215023779d84ad391719fc703bba5ba"
CURL_API="X-Api-Key: $SONARR_API"
URL_SONARR="http://$SONARR_HOST:$SONARR_PORT/api/"
#!/bin/bash
##KODI API RETRIEVE
XBMCUSER="xbmc"
XBMCPWD="xbmc"
KODI_HOST="10.10.10.11:8080"
Recent_added=$(curl -s -H 'content-type: application/json;' http://${XBMCUSER}:${XBMCPWD}@${KODI_HOST}/jsonrpc \
--data-binary '{ "jsonrpc": "2.0", "method": "VideoLibrary.GetRecentlyAddedEpisodes",
@subzero79
subzero79 / Clean source
Last active October 12, 2022 01:14
Sonarr post processing script to clean video files if the source is rar (packed) content
#!/bin/bash
#sonarr_episodefile_sourcefolder="/torrent/finish/tv-sonarr/Penny.Dreadful.S01E01.720p.HDTV.x264-2HD"
#sonarr_episodefile_sourcepath="/torrent/finish/tv-sonarr/Penny.Dreadful.S01E01.720p.HDTV.x264-2HD/penny.dreadful.s01e01.720p.hdtv.x264-2hd.mkv"
sonarr_label="tv-sonarr"
base_dir=$(basename $sonarr_episodefile_sourcefolder)
if [ "${base_dir}" == "${sonarr_label}" ];then
echo "Single file torrent"
# set base os
FROM alpine:edge
# Set correct environment variables
ENV TERM=xterm
# set ports
EXPOSE 3128/tcp
VOLUME /config