I have a large LCD mounted on my wall at my work, and I would like to display some webpage with statistics on it, in a rotating manner - switch to a different webpage every few seconds.

I think that I can run a script to execute and kill the browser with a different webpage every few seconds, but it seems like a very inefficient process. Another idea was to switch the workspaces and keep every browser in a different one, but I don't know how to do that.

Do you know of any way of doing this under Ubuntu?

link|improve this question

feedback

3 Answers

up vote 5 down vote accepted

I think the easiest solution here is to use one of the Firefox add-ons to switch between tabs in a timed manner. Here are links to couple of them. We use this kind of solution at work and it works like a charm.

link|improve this answer
feedback

Are they webpages that you've created to be used solely for this purpose? Could you use a html redirect to load the next page in sequence after a set time delay?

<meta name="refresh" content="10;nextpage.html">
link|improve this answer
1  
+1 for a very creative answer! I'll check it out (it's my work place). – Adam Matan Aug 2 '09 at 7:48
I can't touch the source code of the web page - I'll use the extension. Thanks! – Adam Matan Aug 2 '09 at 8:06
feedback

you can use marquee also. firstly convert the web pages to images by PrtScn and then use them in marquee. i think that will be quick and efficient too.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.