On Fri, 7 Feb 1997, Subodh Sharma wrote:
> To all:
>
> - Here is something nifty I am trying to accomplish:
>
> - In fvwm, I want to go through all logical screens of
> the desktop, one at a time, sleeping 10 seconds in betwwen
> switching logical screens. I also want to have this continuously
> running.
> - In summary, The window manager should constantly keep on switching
> through all the logical screens, with a 10 second delay.
>
> - Can someone please guide me in making this work!!
>
> All help would be greatly appreciated!!
>
> ssharm02_at_barney.poly.edu
If you have FvwmCommand working, a simple shell script like this will do
what you are looking for. You need to set FVWMLIB as your fvwm lib
directory and might need to use Desk command if you are using desks
instead of pages.
Hope it helps.
-------------------------
#!/bin/sh
. $FVWMLIB/FvwmCommand.f
while [ "1" ] ; do
GotoPage 0 0
sleep 10
GotoPage 0 1
sleep 10
GotoPage 1 0
sleep 10
GotoPage 1 1
sleep 10
done
-----------------------------------------------------
Toshi Isogai
KENTEK Information Systems
isogai_at_kentek.com
--
Visit the official FVWM web page at <URL:http://www.hpc.uh.edu/fvwm/>.
To unsubscribe from the list, send "unsubscribe fvwm" in the body of a
message to majordomo_at_hpc.uh.edu.
To report problems, send mail to fvwm-owner_at_hpc.uh.edu.
Received on Fri Feb 07 1997 - 16:52:23 GMT