Skip to content

Instantly share code, notes, and snippets.

View marklabrecque's full-sized avatar

Mark Labrecque marklabrecque

View GitHub Profile
@marklabrecque
marklabrecque / dark.md
Created July 26, 2018 21:08 — forked from a7madgamal/dark.md
Dark mode for Slack on MacOS
  1. Close slack
  2. Open this file /Applications/Slack.app/Contents/Resources/app.asar.unpacked/src/static/ssb-interop.js
  3. Append this to it
document.addEventListener('DOMContentLoaded', function() {
 $.ajax({
   url: 'https://cdn.rawgit.com/laCour/slack-night-mode/master/css/raw/black.css',
   success: function(css) {
 $("").appendTo('head').html(css);