Return to Snippet

Revision: 58207
at July 1, 2012 06:47 by Rectifier


Updated Code
setbatchlines -1
#singleinstance force
#notrayicon
;Put a ; before #notrayicon to see the tray icon, semi-colons are comment characters
;Tested on a Windows 7 x64 Home Premium machine, should work on most windows systems
;Script by Rectifier 06-30-2012

;The hotkey only works after launching the script (and leaving it on).
;Make sure you have ahk_l installed, then save the script as a .ahk file.
;Make sure the script is encoded in UTF-8 as well.
;If you see ?_? instead, whatever you're working with does not support the character set.

;All you have to do is press the numpad dot/delete for immediate disapproval!

NumpadDot::Send ಠ_ಠ
NumpadDel::Send ಠ_ಠ

;Here's an alternative hotkey if you don't have a numpad, simply uncomment and reload the script.
;^+d::Send ಠ_ಠ
;The above hotkey is the combination of control + shift + d
;To make your own different version, I suggest reading AHK_L's documentation.

Revision: 58206
at July 1, 2012 06:46 by Rectifier


Updated Code
setbatchlines -1
#singleinstance force
#notrayicon
;Put a ; before #notrayicon to see the tray icon, semi-colons are comment characters
;Tested on a Windows 7 x64 Home Premium machine, should work on most windows systems
;Script by Rectifier 06-30-2012

;The hotkey only works after launching the script (and leaving it on).
;Make sure you have ahk_l installed, then save the script as a .ahk file.
;Make sure the script is encoded in UTF-8 as well.
;If you see ?_? instead, whatever you're working with does not support the character set.

;All you have to do is press the numpad dot/delete for immediate disapproval!

NumpadDot::Send ಠ_ಠ
NumpadDel::Send ಠ_ಠ

;Here's an alternative hotkey if you don't have a numpad, simply uncomment and reload the script.
;^+d::Send ಠ_ಠ
;The above hotkey is the combination of control + shift + d
;To make your own different version, I suggest reading AHK_L's documentation.

Revision: 58205
at July 1, 2012 06:45 by Rectifier


Initial Code
setbatchlines -1
#singleinstance force
#notrayicon
;Put a ; before #notrayicon to see the tray icon, semi-colons are comment characters

;The hotkey only works after launching the script (and leaving it on).
;Make sure you have ahk_l installed, then save the script as a .ahk file.
;Make sure the script is encoded in UTF-8 as well.
;If you see ?_? instead, whatever you're working with does not support the character set.

;All you have to do is press the numpad dot/delete for immediate disapproval!

NumpadDot::Send ಠ_ಠ
NumpadDel::Send ಠ_ಠ

;Here's an alternative hotkey if you don't have a numpad, simply uncomment and reload the script.
;^+d::Send ಠ_ಠ
;The above hotkey is the combination of control + shift + d
;To make your own different version, I suggest reading AHK_L's documentation.

Initial URL


Initial Description
Fed up with awkward methods to type the disapproval face? I know I was. After hours of searching (yes hours) for ways to paste the disapproval face with a hotkey I found a simple solution.
Note: This script requires AutoHotkey_L to work (use google).

Initial Title
Paste the disapproval face ಠ_ಠ with a single keypress

Initial Tags


Initial Language
Other