Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@carwin
Created August 30, 2018 18:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save carwin/eb40e5e91ce92860be08eace096247d6 to your computer and use it in GitHub Desktop.
Save carwin/eb40e5e91ce92860be08eace096247d6 to your computer and use it in GitHub Desktop.
Theme Slack Desktop
// Append to the bottom of /usr/lib/slack/resources/app.asar.unpacked/src/static/ssb-interop.js
document.addEventListener('DOMContentLoaded', function() {
$.ajax({
// Your CSS here.
url: 'https://raw.githubusercontent.com/laCour/slack-night-mode/master/css/raw/black.css',
success: function(css) {
$("<style></style>").appendTo('head').html(css);
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment