Skip to main content
beeps Blog Sitemap

A userstyle to hide the numbers on Bluesky

Free yourself from the tyranny of subconsciously tying your self-worth to a bunch of digits.

Yeah, I’m going off about Bluesky, again.

Having spent some time on Cohost, the sadly departed social networking site that purposefully didn’t display engagement statistics for anything and finding that much healthier for my state of mind, I had ended up making a user style for Bluesky that did the same thing.

If you’re not sure how to use a user style, check out my blog post on user stylesheets from 2023.

/** 
 * User style to hide various numbers on Bluesky's interface.
 * Because social networks are meant to be social, not about popularity.
 * Made by beeps: https://beeps.website/
 */

/* Hide likes and share counts on feeds. */
[data-testid="likeCount"],
[data-testid="repostCount"] {
  display: none !important;
}

/* Hide likes and share counts on individual posts. */
[data-testid="likeCount-expanded"],
[data-testid="repostCount-expanded"] {
  display: none !important;
}

/* Hide the reply count on feeds. */
[data-testid="replyBtn"] div {
  display: none !important;
}

/* Hide the follower and following links on profiles. */
[data-testid="profileHeaderFollowersButton"],
[data-testid="profileHeaderFollowsButton"] {
  display: none !important;
}

/* ALTERNATIVELY: To hide just the numbers and not the entire links, comment
 * out the above block and uncomment this one. */
/* [data-testid="profileHeaderFollowersButton"] span:first-child,
[data-testid="profileHeaderFollowsButton"] span:first-child {
  display: none !important;
} */

This code is provided as-is and is unlikely to receive future updates.

Personally, I’ve stopped using Bluesky entirely. If you still want to see my online rambles over there, follow the bridged fediverse account instead.

Thought this was neat? Why not ?


12 favourites

8 shares


Comments

Thoughts? Questions? You can favourite, share or comment on this post by replying to it on the fediverse.

  1. beeps@social.beeps.gay

    And in case anyone is curious why I've never made a Mastodon equivalent, it's because I mainly use fedi via Phanpy.social on the web, which already doesn't show you stats up-front in the first place.

    (I also use Ivory, but that's an app so writing a CSS user style isn't going to do much there...)

  2. ticky@queer.party

    @beeps ivory also has a built-in setting to hide fav/boost counts! it’s nice

  3. beeps@social.beeps.gay

    @ticky oh dang, it does. I've never noticed it before, somehow.