in reply to Re: Perl/Tk + CSSH
in thread Perl/Tk + CSSH

You truly are a Monk among Monks.. :p Packing the geometry in the command was brilliant! I like the sound of the xid option, gonna play with both and will let you know what road I traveled! Thanks again for the knowledge BOMB!

Replies are listed 'Best First'.
Re^3: Perl/Tk + CSSH
by Monkless (Acolyte) on Mar 06, 2012 at 09:14 UTC

    I resolved this by using a little perl foo..

    Instead of controlling the windows via Perl/TK - I opted to look into the window manager itself and what I found was..

    'wmctrl' is a window manager for Unix, once installed I was able to run wmctrl -l for a window listing - I then was able to manipulate where the windows were placed via wmctrl.

    (eg. `wmctrl -i -r '$e' -e 0,$x,$y,-1,-1`;)

    $e = window ID - $x,$y = X and Y window positioning found with xwininfo

    does use a system call, but much easier than trying to control a call outside of the app.