This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Use `Onedark` theme for best results */ | |
/* Hide Application URLs */ | |
[class^="AppCard_AppCardDetails__"] { | |
height: 50%; | |
} | |
[class^="AppCard_AppCardDetails__"] span { | |
display: none !important; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Sonarr symlink post-process script | |
# Based on https://github.com/Sonarr/Sonarr/issues/967#issuecomment-228599878 | |
# With some tint modifications | |
# make syre Logs folder and file exists | |
LOGFILE="/opt/NzbDrone/Logs/sonarrsymlink.log" | |
PERMPATH="$sonarr_episodefile_path" | |
SOURCEPATH="$sonarr_episodefile_sourcepath" |