Skip to content

Instantly share code, notes, and snippets.

@lrewega
Created November 30, 2018 00:17
Show Gist options
  • Save lrewega/26f9f396a79b452456738351d07dc74f to your computer and use it in GitHub Desktop.
Save lrewega/26f9f396a79b452456738351d07dc74f to your computer and use it in GitHub Desktop.
Disable Slack ligatures on OS X
#!/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