Skip to content

Instantly share code, notes, and snippets.

@zGrav
Last active January 30, 2019 17:40
Show Gist options
  • Save zGrav/685e17902f93c0be750fab9bce8a4752 to your computer and use it in GitHub Desktop.
Save zGrav/685e17902f93c0be750fab9bce8a4752 to your computer and use it in GitHub Desktop.
#! /bin/bash
# Don't want to interpret variables whilst reading from the HEREDOC - thus the single quotes... potto
cat << 'EOF' >> /Applications/Slack.app/Contents/Resources/app.asar.unpacked/src/static/ssb-interop.js
document.addEventListener('DOMContentLoaded', function() {
$.ajax({
url: 'https://cdn.rawgit.com/laCour/slack-night-mode/master/css/raw/black.css',
success: function(css) {
$("<style></style>").appendTo('head').html(css);
}
});
});
EOF
echo If Slack.app is already running, refresh with CMD-R
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment