This is my custom css for Jellyfin. these are not my modifications, I copied them from reddit
Features:
- more appropriately sized episode images
- rounded corners and square play button
- minimalistic play buttons
- blue checkmark and like button
| #!/usr/bin/python | |
| # SPDX-FileCopyrightText: 2026 tippfehlr <tippfehlr@tippfehlr.dev> | |
| # SPDX-License-Identifier: MIT | |
| # | |
| # Export KanjiGrid as json, and use this script to generate a _known_kanji.js from it. | |
| # Place _known_kanji.js in Anki’s collection.media folder and include it with | |
| # <script src="_known_kanji.js"/> | |
| # in the card template html. | |
| import json |
| # bash function to generate ports for projects | |
| # use the first four non-zero digits from the sha256sum of the project’s name | |
| # infer the name from the current directory if no argument is given | |
| thinkofport() { | |
| if [ "$#" -gt 0 ]; then | |
| echo -n "$1" | sha256sum | grep -o '[1-9]' | head -n 4 | tr -d '\n' | |
| else | |
| basename "$(pwd)" | sha256sum | grep -o '[1-9]' | head -n 4 | tr -d '\n' | |
| fi | |
| } |
| #!/bin/bash | |
| curl -X PUT --data "$(cat -)" https://bin.gy/ | |
| echo # bin.gy does not return a newline after the link | |
| # use: cat <file> | bin | |
| # or: some-command | bin |