Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ;///Modifiers\\\;
- ;# = Windows Key;
- ;! = Alt;
- ;^ = Control;
- ;+ = Shift;
- ;& = Used to combine keys (ctrl+alt = ^&!);
- ;By Miicheru !QoXFeEmKWE
- ;=================================================
- ;Toggle taskbar
- #z::
- if toggle := !toggle
- {
- WinHide ahk_class Shell_TrayWnd
- WinHide Start ahk_class Button
- }
- else
- {
- WinShow ahk_class Shell_TrayWnd
- WinShow Start ahk_class Button
- }
- Return
- ;=================================================
- ;Remove title and border
- #a::
- WinSet, Style, -0x800000, A
- WinSet, Style, ^0xC00000, A
- Return
- ;=================================================
- ;Left screen ( 1366 x 768 )
- ;Move to left screen and maximize the window
- #Numpad0::
- WinMove,A,, 0, 0,,
- WinMaximize, A ,,
- Return
- ;Left bottom
- #Numpad1:: WinMove,A,, 4, 385, 300, 379
- ;Right big
- #Numpad2:: WinMove,A,, 307, 4, 1055, 760
- ;Right bottom
- #Numpad3:: WinMove,A,, 1062, 385, 300, 379
- ;Left small
- #Numpad4:: WinMove,A,, 4, 4, 300, 760
- ;Maximize with padding
- #Numpad5:: WinMove,A,, 4, 4, 1358, 760
- ;Right small
- #Numpad6:: WinMove,A,, 1062, 4, 300, 760
- ;Left top
- #Numpad7:: WinMove,A,, 4, 4, 300, 378
- ;;Left big
- #Numpad8:: WinMove,A,, 4, 4, 1055, 760
- ;Right top
- #Numpad9:: WinMove,A,, 1062, 4, 300, 378
- ;=================================================
- ;Right screen ( 1920 x 1080 )
- ;Move to right screen and maximize the window
- #!Numpad0::
- WinMove,A,, 1367, 0,,
- WinMaximize,A,,
- Return
- ;Left bottom
- #!Numpad1:: WinMove,A,, 1370, 542, 346, 533
- ;Left big
- #!Numpad2:: WinMove,A,, 1370, 4, 1563, 1071
- ;Right bottom
- #!Numpad3:: WinMove,A,, 2936, 542, 346, 534
- ;Left small
- #!Numpad4:: WinMove,A,, 1370, 4, 346, 1071
- ;Maximize with padding
- #!Numpad5:: WinMove,A,, 1370, 4, 1911, 1071
- ;Right small
- #!Numpad6:: WinMove,A,, 2936, 4, 346, 1071
- ;Left top
- #!Numpad7:: WinMove,A,, 1370, 4, 346, 534
- ;right big
- #!Numpad8:: WinMove,A,, 1720, 4, 1563, 1071
- ;Right top
- #!Numpad9:: WinMove,A,, 2936, 4, 346, 534
- ;=================================================
- ;media
- #Right:: Media_Next
- #Left:: Media_Prev
- #Up:: Media_Stop
- #Down:: Media_Play_Pause
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement