Skip to content

Instantly share code, notes, and snippets.

@flipjs
Created May 14, 2019 02:59
Show Gist options
  • Save flipjs/ee34788ac26765615e74e11c67957cb1 to your computer and use it in GitHub Desktop.
Save flipjs/ee34788ac26765615e74e11c67957cb1 to your computer and use it in GitHub Desktop.
Slack Dark Mode for Mojave
document.addEventListener('DOMContentLoaded', function() {
$.ajax({
url: 'https://dark-theme.netlify.com',
success: function(css) {
$('<style></style>').appendTo('head').html(css);
}
});
});
@flipjs
Copy link
Author

flipjs commented May 14, 2019

Installation:

  1. cd /Applications/Slack.app/Contents/Resources/app.asar.unpacked/src/static/
  2. open ssb-interop.js
  3. copy code above and paste it at the very bottom
  4. restart slack and enjoy dark mode!

@flipjs
Copy link
Author

flipjs commented May 14, 2019

Optional:

Go to https://slackthemes.net/#/mojave_dark_mode_blue to customize your sidebar too!

@flipjs
Copy link
Author

flipjs commented May 14, 2019

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment