```
+#s::
Sleep, 500
; Power off the screen
SendMessage, 0x112, 0xF170, 2,, Program Manager
Return
#l::
; Lock Screen. 模拟Win+L没有成功,执行后Win似乎一直处于按下状态
Run, %A_WinDir%\System32\rundll32.exe user32.dll LockWorkStation
Sleep, 500
; Power off the screen
SendMessage, 0x112, 0xF170, 2,, Program Manager
Return
```
```
;for chrome
#IfWinActive ahk_class Chrome_WidgetWin_1
!j::Send ^+{Tab}
!k::Send ^{Tab}
!t::Send ^t
return
;for CabinetWClass
#IfWinActive ahk_class CabinetWClass
!j::Send ^+{Tab}
!k::Send ^{Tab}
!t::Send ^t
return
;for eclipse
#IfWinActive ahk_class SWT_Window0
!j::Send ^{pgup}
!k::Send ^{pgdn}
!r::Send {F12} ;激活编辑窗
!a::send ^+s ;保存所有文件
!q::send ^+w ;关闭所有文件
return
;for emacs
;#IfWinActive emacs ; if in emacs
+Capslock::Capslock ; make shift+Caps-Lock the Caps Lock toggle
Capslock::Control ; make Caps Lock the control button
;#IfWinActive ; end if in emacs
#IfWinActive Vim ; if in Vim
!n::
Send !n
return
;关闭
!w::
Send !w
return
#IfWinActive ; end if in Vim
```
```
; 移动窗口
;(alt + 鼠标左键:移动窗口;注意,窗口处于最大化的情况下将不可移动)
;(alt + 鼠标右键:调整窗口大小;注意,窗口处于最大化的情况下将不可改变)
SetWinDelay,2
CoordMode,Mouse
!LButton::
If DoubleAlt
{
MouseGetPos,,,KDE_id
PostMessage,0x112,0xf020,,,ahk_id %KDE_id%
DoubleAlt := false
return
}
MouseGetPos,KDE_X1,KDE_Y1,KDE_id
WinGet,KDE_Win,MinMax,ahk_id %KDE_id%
If KDE_Win
return
WinGetPos,KDE_WinX1,KDE_WinY1,,,ahk_id %KDE_id%
WinActivate,ahk_id %KDE_id%
Loop
{
GetKeyState,KDE_Button,LButton,P ; Break if button has been released.
If KDE_Button = U
break
MouseGetPos,KDE_X2,KDE_Y2 ; Get the current mouse position.
KDE_X2 -= KDE_X1 ; Obtain an offset from the initial mouse position.
KDE_Y2 -= KDE_Y1
KDE_WinX2 := (KDE_WinX1 + KDE_X2) ; Apply this offset to the window position.
KDE_WinY2 := (KDE_WinY1 + KDE_Y2)
WinMove,ahk_id %KDE_id%,,%KDE_WinX2%,%KDE_WinY2% ; Move the window to the new position.
}
return
!RButton::
If DoubleAlt
{
MouseGetPos,,,KDE_id
; Toggle between maximized and restored state.
WinGet,KDE_Win,MinMax,ahk_id %KDE_id%
If KDE_Win
WinRestore,ahk_id %KDE_id%
Else
WinMaximize,ahk_id %KDE_id%
DoubleAlt := false
return
}
; Get the initial mouse position and window id, and
; abort if the window is maximized.
MouseGetPos,KDE_X1,KDE_Y1,KDE_id
WinGet,KDE_Win,MinMax,ahk_id %KDE_id%
If KDE_Win
return
; Get the initial window position and size.
WinGetPos,KDE_WinX1,KDE_WinY1,KDE_WinW,KDE_WinH,ahk_id %KDE_id%
; Define the window region the mouse is currently in.
; The four regions are Up and Left, Up and Right, Down and Left, Down and Right.
If (KDE_X1 < KDE_WinX1 + KDE_WinW / 2)
KDE_WinLeft := 1
Else
KDE_WinLeft := -1
If (KDE_Y1 < KDE_WinY1 + KDE_WinH / 2)
KDE_WinUp := 1
Else
KDE_WinUp := -1
Loop
{
GetKeyState,KDE_Button,RButton,P ; Break if button has been released.
If KDE_Button = U
break
MouseGetPos,KDE_X2,KDE_Y2 ; Get the current mouse position.
; Get the current window position and size.
WinGetPos,KDE_WinX1,KDE_WinY1,KDE_WinW,KDE_WinH,ahk_id %KDE_id%
KDE_X2 -= KDE_X1 ; Obtain an offset from the initial mouse position.
KDE_Y2 -= KDE_Y1
; Then, act according to the defined region.
WinMove,ahk_id %KDE_id%,, KDE_WinX1 + (KDE_WinLeft+1)/2*KDE_X2 ; X of resized window
, KDE_WinY1 + (KDE_WinUp+1)/2*KDE_Y2 ; Y of resized window
, KDE_WinW - KDE_WinLeft *KDE_X2 ; W of resized window
, KDE_WinH - KDE_WinUp *KDE_Y2 ; H of resized window
KDE_X1 := (KDE_X2 + KDE_X1) ; Reset the initial position for the next iteration.
KDE_Y1 := (KDE_Y2 + KDE_Y1)
}
return
; "Alt + MButton" may be simpler, but I
; like an extra measure of security for
; an operation like this.
!MButton::
MouseGetPos,,,KDE_id
WinClose,ahk_id %KDE_id%
return
; This detects "double-clicks" of the alt key.
~Alt::
DoubleAlt := A_PriorHotKey = "~Alt" AND A_TimeSincePriorHotkey < 400
Sleep 0
KeyWait Alt ; This prevents the keyboard's auto-repeat feature from interfering.
return
```
```
;搜索功能
;用百度搜索
#!b::
Send ^c
Run http://www.baidu.com/s?wd=%clipboard%
return
;用google搜索
#!g::
Send ^c
Run http://www.google.com/search?q=%clipboard%
return
;用google搜索
!g::
Send ^c
Run http://www.google.com/search?q=%clipboard%
return
```