Created
November 28, 2012 01:57
-
-
Save snipsnipsnip/4158564 to your computer and use it in GitHub Desktop.
laptop.ahk
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; ahk settings for laptop with jp keyboard | |
;muhenkan | |
sc07b::Home | |
;henkan | |
sc079::End | |
;the key at the left of the lshift key | |
sc073::_ | |
;+sc073:: | |
;RAlt::wheeldown | |
;menu | |
;AppsKey::PgUp | |
;RAlt::PgDn | |
AppsKey::#r | |
;AppsKey::^+Right ; switch virtual screen | |
ScrollLock::#r | |
RCtrl & Up::Send {PgUp} | |
RCtrl & Down::Send {PgDn} | |
RCtrl & Left::Send {Home} | |
RCtrl & Right::Send {End} | |
#PgUp::Send {Volume_Up 1} | |
#PgDn::Send {Volume_Down 1} | |
#!PgUp::Send {Media_Play_Pause} | |
#!PgDn::Send {Media_Next} | |
#WheelUp::Send {Volume_Up 1} | |
#WheelDown::Send {Volume_Down 1} | |
#+WheelDown::Send {Media_Next} | |
#+WheelUp::Send {Media_Prev} | |
#MButton::Send {Media_Play_Pause} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment