Going full nord!
Inspired by (and mostly "borrowed" from) the amazing slack night-mode: https://github.com/laCour/slack-night-mode this paints the whole slack window with the nord colours:
Just run (only once!):
./install.sh
To revert:
./install.sh --revert
- First apply the official theme to the sidebar: https://github.com/arcticicestudio/nord-slack
- Close slack
- Open this file in editor:
/Applications/Slack.app/Contents/Resources/app.asar.unpacked/src/static/ssb-interop.js
- Append this code:
document.addEventListener('DOMContentLoaded', function() { $.ajax({ url: 'https://raw.githubusercontent.com/tborychowski/slack-nord-theme/master/slack-nord.css', success: function(css) { $("<style></style>").appendTo('head').html(css); } }); });
- Open slack and enjoy the nord darkness!
Note: The unfortunate thing is that this must be re-done every time after the slack app gets updated.
export SLACK_DEVELOPER_MENU=true
open -a /Applications/Slack.app
Open dev tools from View menu & inspect stuff.
PRs with screens (before & after) are welcomed!