#! xPERLx
# FvwmCommand example - cascade windows
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
open( F, "FvwmCommand -ri2 send_windowlist |" ) || die "command" ;
while( <F> ) {
if( /^(0x[0-9a-f]+) frame *x (\d+), y (\d+), width (\d+), height (\d+)/ ) {
$config{$1}{'area'} = $4 * $5;
$config{$1}{'x'} = $2;
$config{$1}{'y'} = $3;
}elsif( /^(0x[0-9a-f]+) Sticky +(yes|no)$/ ) {
$config{$1}{'sticky'} = $2;
}elsif( /^(0x[0-9a-f]+) desktop +(\d+)/ ) {
$config{$1}{'desktop'} = $2;
}
}
close F;
$x = $y = 0;
$delay = 3000; #need bigger number for slower machine
foreach $i (keys %config) {
next if( $config{$i}{'sticky'} =~ /yes/ ) ;
system("FvwmCommand -w $delay 'windowid $i windowsdesk 0' " );
system("FvwmCommand -w 0 'windowid $i move ${x}p ${y}p' " );
system("FvwmCommand -w 0 'windowid $i raise' " );
$x += 50;
$y += 50;
}
print( 'hit return to move them back!' );
<>;
foreach $i (keys %config) {
next if( $config{$i}{'sticky'} =~ /yes/ ) ;
system("FvwmCommand -w 0 'windowid $i windowsdesk $config{$i}{desktop}'>/dev/null");
system("FvwmCommand -w $delay 'gotopage 0 0' 'windowid $i move $config{$i}{x}p $config{$i}{y}p' >/dev/null" );
}
syntax highlighted by Code2HTML, v. 0.9.1