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
  • Select an option

  • Save farfromunique/6c9013a5520d8e24dd690ea2e943e4f5 to your computer and use it in GitHub Desktop.

Select an option

Save farfromunique/6c9013a5520d8e24dd690ea2e943e4f5 to your computer and use it in GitHub Desktop.

Revisions

  1. farfromunique revised this gist Nov 29, 2016. 1 changed file with 2 additions and 2 deletions.
    4 changes: 2 additions & 2 deletions shrug.ahk
    Original file line number Diff line number Diff line change
    @@ -1,7 +1,7 @@
    ; :shrug: ¯\_(ツ)_/¯
    ; :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}¯\_()_/¯
    SendInput, {BS 7}{U+00AF}\_({U+30C4})_/{U+00AF}
    }
    return

  2. @dieseltravis dieseltravis revised this gist Mar 12, 2015. 1 changed file with 32 additions and 0 deletions.
    32 changes: 32 additions & 0 deletions shrug.ahk
    Original file line number Diff line number Diff line change
    @@ -3,4 +3,36 @@
    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
  3. @dieseltravis dieseltravis revised this gist Mar 6, 2015. No changes.
  4. @dieseltravis dieseltravis created this gist Mar 6, 2015.
    6 changes: 6 additions & 0 deletions shrug.ahk
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,6 @@
    ; :shrug: ¯\_(ツ)_/¯
    :B0:`:shrug::
    if (A_EndChar == ":") {
    SendInput, {BS 7}¯\_(ツ)_/¯
    }
    return