Skip to content

Instantly share code, notes, and snippets.

@HStep20
HStep20 / tag_sonarr_radarr_media_with_overseer_users.py
Last active July 13, 2024 03:29
This script will read your Overseer data and create/apply user tags to all of your sonarr/radarr instances
"""
This script will read your Overseer data and create/apply user tags to all of your sonarr/radarr instances, then create a filter in each connected -arr application for the users you specify.
It is forward compatible with the future User Tagging feature of overseer, and formats the tag in the same 'id - lowercase username' pattern Overseer will
It only uses built in python libraries, so you should be able to download and run without much hassle.
NOTE: YOU ARE REQUIRED TO USE IP:PORT CONNECTIONS FOR YOUR SONARR/RADARR INSTANCES INSIDE OF OVERSEERR
This will NOT utilize docker-compose style hostnames at the moment, and I don't use them personally, so I don't see myself adding them
Steps to use:
@Burry
Burry / Organizr iOS Plex Redirect.js
Last active May 1, 2023 17:11
Intercepts all links to Plex in Organizr and redirects to the Plex app on an iOS device
// Intercepts all links to Plex in Organizr and redirects to the Plex app on an
// iOS device. Plex for Android apparently does not support such URL schemes, and I
// can't find any alternative Android solution, so this script is iOS-only.
// Add to Organizr Settings > Customize > Appearance > Custom JavaScript.
////////////////////////////////////////////////////////////////////////////////////
// Credit to https://forums.plex.tv/t/deep-links/205583 for finding Plex deep links
// Use Bowser to check if we're on iOS
var plexiOSCheck = bowser.osname === 'iOS';