home.social

#mastodonhack — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #mastodonhack, aggregated by home.social.

fetched live
  1. Squeeee! I just found the best thing :blobaww:

    The chrome extension Mastodon Air can change the colours of mastodon in the browser to your heart's content! It is awesome (I'm currently rocking a #beige background with #yellowgreen as accent - so much better than the moody dark "tech" colours).

    chromewebstore.google.com/deta

    #lifehack #mastodonhack #customcolors #mastodonair

  2. I've put together a Firefox addon that converts profile links so that they point to your own home server. For example, if your home server is mastodon.social, it would convert my profile link from "tech.lgbt/@samadeleine" to "mastodon.social/@samadeleine@t".

    This is my first serious Firefox addon and I'm a perfectionist so I haven't submitted it to be signed yet. I also don't know what to *call* the thing; it's "Localify" right now but that just sounds really dumb, and doesn't refer to Mastodon at all. So I dunno.

    Anyway, suggestions for names or other things welcome.

    github.com/sahi1l/localifymast
    #firefox #mastodonhack #addon #javascript

  3. I've put together a Firefox addon that converts profile links so that they point to your own home server. For example, if your home server is mastodon.social, it would convert my profile link from "tech.lgbt/@samadeleine" to "mastodon.social/@samadeleine@t".

    This is my first serious Firefox addon and I'm a perfectionist so I haven't submitted it to be signed yet. I also don't know what to *call* the thing; it's "Localify" right now but that just sounds really dumb, and doesn't refer to Mastodon at all. So I dunno.

    Anyway, suggestions for names or other things welcome.

    github.com/sahi1l/localifymast
    #firefox #mastodonhack #addon #javascript

  4. I added these styles to my Mastodon page (via the Stylus extension) and they're pretty neat at first glance.

    The first one highlights posts that aren't boosts in your timeline, with a blue border and a slightly blue background.

    [data-status-by]:not([data-boosted-by]) {
    background-color:#292c46;
    border: 3px blue inset;
    }

    The second one makes my posts and boosts partly transparent, so I can ignore them more easily. Replace "@samadeleine" with your username of course.

    [data-status-by="@samadeleine"],[data-boosted-by="@samadeleine"]{
    opacity:20%;
    }

    It also makes it easier on the notifications page to distinguish actual responses to your posts from favorites and boosts.

    #css #mastodonhack #stylus

  5. I added these styles to my Mastodon page (via the Stylus extension) and they're pretty neat at first glance.

    The first one highlights posts that aren't boosts in your timeline, with a blue border and a slightly blue background.

    [data-status-by]:not([data-boosted-by]) {
    background-color:#292c46;
    border: 3px blue inset;
    }

    The second one makes my posts and boosts partly transparent, so I can ignore them more easily. Replace "@samadeleine" with your username of course.

    [data-status-by="@samadeleine"],[data-boosted-by="@samadeleine"]{
    opacity:20%;
    }

    It also makes it easier on the notifications page to distinguish actual responses to your posts from favorites and boosts.

    #css #mastodonhack #stylus