Skip to content

Instantly share code, notes, and snippets.

@farfromunique
Forked from dieseltravis/shrug.ahk
Last active February 12, 2018 15:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save farfromunique/6c9013a5520d8e24dd690ea2e943e4f5 to your computer and use it in GitHub Desktop.
Save farfromunique/6c9013a5520d8e24dd690ea2e943e4f5 to your computer and use it in GitHub Desktop.
autohotkey script to replace 🤷 with ¯\_(ツ)_/¯ (and a few other common unicode art emoji)
; :shrug: ¯\_(ツ)_/¯ but using unicode character strings instead of literal characters, for use in programs like Skype for Business.
:B0:`:shrug::
if (A_EndChar == ":") {
SendInput, {BS 7}{U+00AF}\_({U+30C4})_/{U+00AF}
}
return
; :whatever: ◔_◔
:B0:`:whatever::
if (A_EndChar == ":") {
SendInput, {BS 10}◔_◔
}
return
; :whyy: щ(ºДºщ)
:B0:`:whyy::
if (A_EndChar == ":") {
SendInput, {BS 6}щ(ºДºщ)
}
return
; :happy: (゚ヮ゚)
:B0:`:happy::
if (A_EndChar == ":") {
SendInput, {BS 7}(゚ヮ゚)
}
return
; :flip: (╯°□°)╯︵ ┻━┻
:B0:`:flip::
if (A_EndChar == ":") {
SendInput, {BS 6}(╯°□°)╯︵ ┻━┻
}
return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment