[–] 12 points 9 months ago

That depends on the install date. If you installed Mint 22 when it was released you're not on the HWE kernel. If you install a later version of Mint based on Ubuntu 24.04.2 or later you'll get the HWE kernel which auto-updates to newer versions during the lifetime of the distro.

  • source
  • [–] 28 points 1 year ago*

    uBO do remove trackers with the EasyPrivacy and uBlock filters – Privacy filters. More filters and options can also be enabled if you know what you're doing. For beginners it's best to stick to the default settings as more additions can lead to more breakage.

  • source
  • parent
  • context
  • [–] 108 points 1 year ago* (last edited 1 year ago) (3 children)

    If you use uBO then Ghostery is redundant. It can also cause some of uBO's filters to not work correctly.

    Also uBO can do what you did with stylebot. (If you use the full uBO extension, and not the limited Lite version for Chromium browsers):

    youtube.com##ytd-ad-slot-renderer
    youtube.com##ytd-rich-item-renderer:has(ytd-ad-slot-renderer)
    
  • source
  • [–] 17 points 2 years ago* (last edited 2 years ago) (5 children)

    Probably most films by Darren Aronofsky. Pi and The Fountain are some of the worst movies I've seen. Feels like someone's artsy shroom trip. I dislike most "artsy" movies without a coherent story.

    Also a lot of horror classics bores me to death. For example The Omen, Poltergeist, The Exorcist.

  • source
  • [–] 40 points 2 years ago* (1 child)

    From the uBO subreddit: https://old.reddit.com/r/uBlockOrigin/comments/1etvawp/youtube_ads_detection_breakages_2024_08_16_ubo/m31kbkw/

    There was just an update to Quick fixes. Please test if it works for you.

    1. Click Here to update the list.
    2. If you disabled the list previously, enable it back.
    3. Close all previously opened YT tabs and try in a new one.

    Just a reminder: Please always treat disabling lists as a last resort/temporary solution type of thing. Without that list, you won't be receiving important filter updates and will likely encounter ads after a while. So don't keep it disabled forever - verify that it's still necessary (daily?).

  • source
  •  

    This is a style I primarily made for myself, but why not share it. It's inspired by some of the old subreddit styles and the old youtube design.

    • Should work with litely and darkly plus compact variants.
    • Uses rounded thumbnails to external links.
    • Uses square thumbnails to internal images.
    • Colored proprietary social media thumbs with their brand colors. (So you don't accidentally click on a youtube link for example).

    There still are some things I have to fix in the dark theme, like buttons and card headers for example.

     

    I'm currently using const prefersDarkTheme = window.matchMedia('(prefers-color-scheme: dark)').matches; but it doesn't take into consideration users that use a light system with a dark website.

    EDIT: Solved with the following:

    const element = document.getElementById("app");
    const themeVariant = element.getAttribute("data-bs-theme");
    if (themeVariant === "light") {
        var primaryBackground = "#f0f0f0";
    } else {
        var primaryBackground = "#121317";
    }
    
    view more: next ›