Skip to content

Instantly share code, notes, and snippets.

@jondcoleman
Forked from farfromunique/shrug.ahk
Last active June 17, 2017 23:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jondcoleman/7bfd74db11d4cff73cd8b692f909c80c to your computer and use it in GitHub Desktop.
Save jondcoleman/7bfd74db11d4cff73cd8b692f909c80c to your computer and use it in GitHub Desktop.
autohotkey script to replace 🤷 with ¯\_(ツ)_/¯ (and a few other common unicode art emoji)
;using unicode character strings instead of literal characters, for use in programs like Skype for Business.
; :shrug: ¯\_(ツ)_/¯
:B0:`:shrug::
if (A_EndChar == ":") {
SendInput, {BS 7}{U+00AF}\_({U+30C4})_/{U+00AF}
}
return
; :whatever: ◔_◔
:B0:`:whatever::
if (A_EndChar == ":") {
SendInput, {BS 10}{U+25D4}_{U+25D4}
}
return
; :flip: (╯°□°)╯︵ ┻━┻
:B0:`:flip::
if (A_EndChar == ":") {
SendInput, {BS 6}({U+256F}{U+00B0}{U+25A1}{U+00B0}{U+FF09}{U+256F}{U+FE35}{U+253B}{U+2501}{U+253B}
}
return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment