Vibex

Vibex: AHK Duo Tiling

Nov 29th, 2012
372
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     ;This tiler is no longer being updated.
  2.     ; I've moved on to trio (v4) of my tiler. It can be located here http://pastebin.com/9f2xj3tX
  3.  
  4.  
  5.     ; Winmove, A,,    W,X,Y,Z
  6.     ; W = Distance from the left most side of your main monitor.
  7.         ; X = Distance from the top of your main monitor.  
  8.     ; Y = The total width of the window.
  9.     ; Z = The total height of the window.
  10.    
  11.     ; First 1920 x 1080 Monitor (Main)
  12.     NumpadHome::
  13.             WinMove,A,,     -1916,  19, 1434, 1057
  14.     return
  15.      ^NumpadHome::
  16.             WinMove,A,,     -1916, 19, 1912, 1057
  17.     return
  18.     NumpadUp::
  19.             WinMove,A,,     -958, 709, 475, 367
  20.     return
  21.     NumpadLeft::
  22.             WinMove,A,,     -479,  19, 475, 1057
  23.     return
  24.     ^NumpadLeft::
  25.             WinMove,A,,     -958,  19, 475, 686
  26.     return
  27.    
  28.    
  29.     ; Second 1920 x 1080 Monitor (Alternate)
  30.     NumpadPgUp::
  31.             WinMove,A,,   4,  19, 1434, 1057
  32.     return
  33.     ^NumpadPgUp::
  34.             WinMove,A,,   4,  19, 1912, 1057
  35.     return
  36.     NumpadRight::
  37.             WinMove,A,,   1441, 19, 475, 1057
  38.     return
  39.     NumpadEnd::
  40.             WinMove,A,,   4, 19, 475, 1057
  41.     return
  42.     NumpadDown::
  43.             WinMove,A,,   483, 19, 475, 1057
  44.     return
  45.     NumpadPgDn::
  46.             WinMove,A,,   962, 19, 475, 1057
  47.     return
  48.    
  49.     ; Hide window
  50.     NumpadClear::
  51.             WinMove,A,, 1948,  28, 1224, 968
  52.     return
Advertisement
Add Comment
Please, Sign In to add comment