Skip to content

Instantly share code, notes, and snippets.

@liango2
Forked from dieseltravis/shrug.ahk
Created July 31, 2016 15:31
Show Gist options
  • Save liango2/8cecce65ee73535be4f7bd610df06d77 to your computer and use it in GitHub Desktop.
Save liango2/8cecce65ee73535be4f7bd610df06d77 to your computer and use it in GitHub Desktop.
autohotkey script to replace 🤷 with ¯\_(ツ)_/¯ (and a few other common unicode art emoji)
; :shrug: ¯\_(ツ)_/¯
:B0:`:shrug::
if (A_EndChar == ":") {
SendInput, {BS 7}¯\_(ツ)_/¯
}
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