Skip to content

Instantly share code, notes, and snippets.

View nateeo's full-sized avatar
🐳

Nathan Hur nateeo

🐳
View GitHub Profile
#!/bin/bash
# close slack and run this script!
# you can modify the sizes below, but nhur is not responsible if it blows up your emojis
cd /Applications/Slack.app/Contents/Resources/app.asar.unpacked/src/static
# Make sure we don't append the script multiple times
if grep -Fxq "// B I G E M O J I S" ssb-interop.js
then
@nateeo
nateeo / big_emojis.sh
Last active February 6, 2019 02:08
Inject custom big emoji css
#!/bin/bash
# close slack and run this script!
# you can modify the sizes below, but nhur is not responsible if it blows up your emojis
cd /Applications/Slack.app/Contents/Resources/app.asar.unpacked/src/static
# Make sure we don't append the script multiple times
if grep -Fxq "// B I G E M O J I S" ssb-interop.js
then
@nateeo
nateeo / jumbo-emojis.css
Last active January 18, 2019 05:47
Big emojis
/* set emoji size to wumbo */
.emoji-sizer {
font-size: 32px !important;
padding: 4px !important;
}
.emoji-sizer.emoji-only {
font-size: 64px !important;
}