Tips/Windows 설정

Autohotkey로 맥북에서 쓰는 단축키로 설정해 보자

dextto™ 2020. 5. 27. 23:04

맥북과 윈도우를 함께 사용하다 보니 매번 단축키 때문에 애를 먹는다.

 

이제 복사/붙여넣기를 할 때 command + c, command + v가 손에 익었고, 손가락에 무리가 가지 않는다는 걸 느꼈다.

윈도우에서 command키 위치에 alt키가 있으니 동일하게 매핑을 해 보자.

 

일단 Autohotkey라는 프로그램을 설치한다.

https://www.autohotkey.com/

 

AutoHotkey

AutoHotkey provides a simple, flexible syntax allowing you to focus more on the task at hand rather than every single little technicality. It supports not only the popular imperative-procedural paradigm, but also object-oriented and command-based programmi

www.autohotkey.com

 

.ahk 확장자를 가진 파일을 하나 만들고 내용을 아래와 같이 입력한다.

원할 경우 더 편집하면 된다.

 

더보기

!q::Send, !{F4}

!a::Send, ^a

!c::Send, ^c

!v::Send, ^v

!x::Send, ^x

!z::Send, ^z

!s::Send, ^s

!w::Send, ^w

!Left::Send, {Home}

!Right::Send, {End}

아래 경로에 복사한다.

C:\ProgramData\Microsoft\Windows\Start Menu\Programs\StartUp\

 

재부팅한다.

 

다른 단축키 매핑이 궁금하면 autohotkey forum 이나 구글신에게 물어보자.

 

끝!

반응형