Skip to content

Instantly share code, notes, and snippets.

@marc0janssen
marc0janssen / transmission-gc.sh
Last active January 19, 2025 22:32 — forked from onedr0p/transmission-gc.sh
Transmission Garbage Collector
#!/bin/bash
#
# INFO
#
# This works if sonarr and radarr are set up to have a Category of sonarr and radarr respectively
# If you are using other Categories to save your automated downloads, update the script where you see:
# "movies"|"series"|"music"|"general")
# This script will not touch anything outside those Categories
@m1yag1
m1yag1 / brew_install.sh
Last active January 3, 2025 06:04
Bash script for installing homebrew
#!/usr/bin/env bash
# This is part of a larger script for setting a mac for python development.
set -e
# Shared functions
pretty_print() {
printf "\n%b\n" "$1"
}