Please feel free to correct my English.

The Lemming formerly known as /u/SatyrSack@lemmy.one

  • 1 Post
  • 55 Comments
Joined 2 months ago
cake
Cake day: September 28th, 2024

help-circle
  • I agree that using a code block is not the right way to handle quotes, but you can control the syntax highlighting in a markdown code block by adding a language identifier.


    ```
    We never once asked for personal donations specifically in the hopes that if this moment ever came, our userbase would appreciate that we were able to make it this long on passion alone, and trust that your donation will make the best possible impact.
    ```
    
    We never once asked for personal donations specifically in the hopes that if this moment ever came, our userbase would appreciate that we were able to make it this long on passion alone, and trust that your donation will make the best possible impact.
    

    ``` text
    We never once asked for personal donations specifically in the hopes that if this moment ever came, our userbase would appreciate that we were able to make it this long on passion alone, and trust that your donation will make the best possible impact.
    ```
    
    We never once asked for personal donations specifically in the hopes that if this moment ever came, our userbase would appreciate that we were able to make it this long on passion alone, and trust that your donation will make the best possible impact.
    

    ``` cpp
    bool getBit(int num, int i) {
        return ((num & (1<<i)) != 0);
    }
    ```
    
    bool getBit(int num, int i) {
        return ((num & (1<<i)) != 0);
    }
    

    ``` python
    def add(a, b):
        return a + b
    ```
    
    def add(a, b):
        return a + b
    







  • To install the theme, put the contents of theme.css in Custom CSS code and set a hue:

    @import url("https://glcdn.githack.com/smaniottonicola/jellyfin-custom-accent/-/raw/master/theme.css");
    
    :root {
       --custom-hue: <value>;
    }
    

    If I want to take that theme.css file and just save it to my server itself instead of having Jellyfin fetch it each time the CSS loads, what would I put in the @import rule? I placed the file in my Jellyfin Docker container’s config folder and used @import "/config/theme.css”;, but that does not seem to change the CSS at all.