Created
November 30, 2018 00:17
-
-
Save lrewega/26f9f396a79b452456738351d07dc74f to your computer and use it in GitHub Desktop.
Disable Slack ligatures on OS X
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
cat >>/Applications/Slack.app/Contents/Resources/app.asar.unpacked/src/static/ssb-interop.js <<"EOF" | |
document.addEventListener('DOMContentLoaded', function() { | |
$(`<style>* { font-variant-ligatures: none;}</style>`).appendTo("head"); | |
}); | |
EOF |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment