For example:
Hot-Key win+left  calls your script with "win.txt"("left")
Hot-Key win+right  calls your script with "win.txt"("right")
Hot-Key win+top  calls your script with "win.txt"("top")
Hot-Key win+bottom  calls your script with "win.txt"("bottom")

In your script you can do something like:
if (arg(1) == "left") do
    .......
elseif (arg(1) == "right") do
    .......
elseif (arg(1) == "top") do
    .......
elseif (arg(1) == "bottom") do
    .......
else
    .......
endif.

[Non-text portions of this message have been removed]

Reply via email to