A less addictive slack experience

1 min read

To some extent, it is the design of tools like slack that makes them addictive. To avoid the point of diminishing returns with slack usage, we can nudge ourselves to become less addicted by making some tweaks.

Point of Diminishing Returns Graph

If you use slack in the browser you can augment your experience with extensions. With tools like Stylish you can inject your own CSS into the page.

CSS Tweaks

Reactions make slack more addictive than I would like. Often reactions don't add much to the experience either, do I really need to know that 10 people reacted with 😂? (or maybe I'm just no fun?)

To turn off the viewing of reactions this CSS does the trick. It won't stop you from reacting to posts from others.

.c-reaction--light,
.c-reaction_add {
  display: none;
}

On occasions you do need to check reactions, for example when using them to vote on something. You can toggle off your styling.

Stylish Extension Toggle Button

I think most of the time @ mentions draw more attention to messages than needed. We can dial down their noisiness with this styling tweak that removes the yellow background and bold font weight.

.c-mrkdwn__broadcast--mention,
.c-member_slug--mention,
.c-member_slug--link {
  background-color: transparent;
  font-weight: normal;
}

Preferences Tweaks

More generally turning off notifications can prevent you from checking slack so often and turning off information about who is typing a message can help avoid the anticipation of waiting for someone to craft their perfect message.

Slack Preferences

Other Extensions

When using slack in the browser you can also make use of Grammarly. If you're ok with sending all of your keystrokes to a third-party that is.

Grammarly Usage in Slack

Slack is releasing a redesign soon, the CSS classes mentioned in this article may need some tweaking once that arrives.

Additional Resources

The productivity pit: how Slack is ruining work

Digital Minimalism Book

Was this article helpful?