can anybody tell me if there is a utility or know how to manipulate
desktops so that I can script moving between desktops on a timed like
basis?
kinda like this with the real "show desktop" method...
while (1) {
`show desktop 1`;
sleep(300);
`show desktop2`;
sleep(300);
`show desktop3`;
sleep (300);
}
...