<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://pandorawiki.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Emnasut</id>
	<title>Pandora Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://pandorawiki.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Emnasut"/>
	<link rel="alternate" type="text/html" href="https://pandorawiki.org/Special:Contributions/Emnasut"/>
	<updated>2026-05-04T06:26:36Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.32.0-alpha</generator>
	<entry>
		<id>https://pandorawiki.org/index.php?title=Wallpaper_cronjob&amp;diff=8986</id>
		<title>Wallpaper cronjob</title>
		<link rel="alternate" type="text/html" href="https://pandorawiki.org/index.php?title=Wallpaper_cronjob&amp;diff=8986"/>
		<updated>2011-07-12T13:58:54Z</updated>

		<summary type="html">&lt;p&gt;Emnasut: /* Setting up the cronjob */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Changing the wallpaper every x minutes by using a cronjob==&lt;br /&gt;
&lt;br /&gt;
===Installing cron===&lt;br /&gt;
&lt;br /&gt;
To change the wallpaper in XFCE automatically you need cron. Test if it is already installed by opening a terminal and typing:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;crontab -l&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you get &amp;quot;command not found&amp;quot; you need to install it. Remember to activate wifi.&lt;br /&gt;
&lt;br /&gt;
First update your package list:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;sudo opkg update&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
and then:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;sudo opkg install cron&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Adding pictures===&lt;br /&gt;
# Right-click on your desktop.&lt;br /&gt;
# Select Desktop settings.&lt;br /&gt;
# In the tab &amp;quot;Background&amp;quot; select &amp;quot;Image list&amp;quot;&lt;br /&gt;
# Click on &amp;quot;Create new list / load existing one&amp;quot; (left to &amp;quot;Style&amp;quot; the sheet of paper with the plus-sign)&lt;br /&gt;
# Enter a path and filename for your list&lt;br /&gt;
# Add the image files by clicking on the green &amp;quot;+&amp;quot;&lt;br /&gt;
# Close the window, it saves automatically. If you want, check the file you created, it should contain a list of pictures.&lt;br /&gt;
&lt;br /&gt;
===Setting up the cronjob===&lt;br /&gt;
Right now every time the xfdesktop reloads a picture will randomly be selected from the list. As it only gets reloaded by a reboot (or by manually calling a reload) we need to trigger a reload automatically.&lt;br /&gt;
&lt;br /&gt;
First open a new file in your preferred editor, e.g. vi. Then enter the following linee (I'll later explain why):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;# Reload wallpaper every 5 minutes.&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;*/5 * * * * /usr/bin/xfdesktop --reload --display 0:0&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Save it as anything you want, e.g. cron.txt.&lt;br /&gt;
&lt;br /&gt;
In a terminal add the file to the cronjob list:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;crontab cron.txt&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now if you call &amp;quot;crontab -l&amp;quot; it should show your entry.&lt;br /&gt;
&lt;br /&gt;
Check if cron is running:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;ps aux | grep -i cron&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This lists all running processes which contain &amp;quot;cron&amp;quot;, case insensitive (-i). This will propably show exactly two processes, something like this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;root 6278 0.0 0.2 1736 648 ?     Ss 13:39 0:00 cron&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;usr7 1337 0.0 0.2 1700 508 pts/1 S+ 15:21 0:00 grep -i cron&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
That is, the first line shows that cron is running, the second line is your listing of all processes containing &amp;quot;cron&amp;quot;, thus listing itself.&lt;br /&gt;
&lt;br /&gt;
If there is no &amp;quot;cron&amp;quot; listed then start it:&lt;br /&gt;
&amp;lt;nowiki&amp;gt;sudo cron&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now if everything worked you should see your wallpaper changing every 5 minutes.&lt;br /&gt;
&lt;br /&gt;
===How it works (simplified)===&lt;br /&gt;
&amp;quot;crontab cron.txt&amp;quot; adds every line in cron.txt to the list of running jobs. Every minute &amp;quot;cron&amp;quot; checks every entry if it should get executed. The five * are wildcards for the time when a job should be executed. This graphic (borrowed from [http://en.wikipedia.org/wiki/Crontab Wikipedia]) shows what they mean:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 *    *    *    *    *  command to be executed&lt;br /&gt;
 ┬    ┬    ┬    ┬    ┬&lt;br /&gt;
 │    │    │    │    │&lt;br /&gt;
 │    │    │    │    │&lt;br /&gt;
 │    │    │    │    └───── day of week (0 - 7) (Sunday=0 or 7)&lt;br /&gt;
 │    │    │    └────────── month (1 - 12)&lt;br /&gt;
 │    │    └─────────────── day of month (1 - 31)&lt;br /&gt;
 │    └──────────────────── hour (0 - 23)&lt;br /&gt;
 └───────────────────────── min (0 - 59)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Also the &amp;quot;/5&amp;quot; means &amp;quot;every 5 units&amp;quot;:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;*/5 * * * * echo Every 5 minutes&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;0 */2 * * * echo Every 2 hours at 0 minutes&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;0 0 */3 * * echo Every 3 days at 00:00&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
and so on.&lt;br /&gt;
&lt;br /&gt;
So if you want your wallpaper so change every 15 minutes you would use */15.&lt;br /&gt;
&lt;br /&gt;
===External Links===&lt;br /&gt;
[http://en.wikipedia.org/wiki/Crontab Crontab on Wikipedia]&lt;br /&gt;
&lt;br /&gt;
[http://www.howtoforge.com/xfce_desktop_background_wallpaper_changer Tutorial I used on www.howtoforge.com]&lt;br /&gt;
&lt;br /&gt;
[http://boards.openpandora.org/index.php?/topic/4389-how-do-i-install-cron-change-the-wallpaper-automatically/page__gopid__77582#entry77582 Forum thread on boards.openpandora.org]&lt;/div&gt;</summary>
		<author><name>Emnasut</name></author>
		
	</entry>
	<entry>
		<id>https://pandorawiki.org/index.php?title=Wallpaper_cronjob&amp;diff=8985</id>
		<title>Wallpaper cronjob</title>
		<link rel="alternate" type="text/html" href="https://pandorawiki.org/index.php?title=Wallpaper_cronjob&amp;diff=8985"/>
		<updated>2011-07-12T13:47:07Z</updated>

		<summary type="html">&lt;p&gt;Emnasut: /* Installing cron */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Changing the wallpaper every x minutes by using a cronjob==&lt;br /&gt;
&lt;br /&gt;
===Installing cron===&lt;br /&gt;
&lt;br /&gt;
To change the wallpaper in XFCE automatically you need cron. Test if it is already installed by opening a terminal and typing:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;crontab -l&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you get &amp;quot;command not found&amp;quot; you need to install it. Remember to activate wifi.&lt;br /&gt;
&lt;br /&gt;
First update your package list:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;sudo opkg update&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
and then:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;sudo opkg install cron&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Adding pictures===&lt;br /&gt;
# Right-click on your desktop.&lt;br /&gt;
# Select Desktop settings.&lt;br /&gt;
# In the tab &amp;quot;Background&amp;quot; select &amp;quot;Image list&amp;quot;&lt;br /&gt;
# Click on &amp;quot;Create new list / load existing one&amp;quot; (left to &amp;quot;Style&amp;quot; the sheet of paper with the plus-sign)&lt;br /&gt;
# Enter a path and filename for your list&lt;br /&gt;
# Add the image files by clicking on the green &amp;quot;+&amp;quot;&lt;br /&gt;
# Close the window, it saves automatically. If you want, check the file you created, it should contain a list of pictures.&lt;br /&gt;
&lt;br /&gt;
===Setting up the cronjob===&lt;br /&gt;
Right now every time the xfdesktop reloads a picture will randomly be selected from the list. As it only gets reloaded by a reboot (or by manually calling a reload) we need to trigger a reload automatically.&lt;br /&gt;
&lt;br /&gt;
First open a new file in your preferred editor, e.g. vi. Then enter the following linee (I'll later explain why):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;# Reload wallpaper every 5 minutes.&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&amp;lt;nowiki&amp;gt;*/5 * * * * /usr/bin/xfdesktop --reload --display 0:0&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Save it as anything you want, e.g. cron.txt.&lt;br /&gt;
&lt;br /&gt;
In a terminal add the file to the cronjob list:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;crontab cron.txt&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now if you call &amp;quot;crontab -l&amp;quot; it should show your entry.&lt;br /&gt;
&lt;br /&gt;
Check if cron is running:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;ps aux | grep -i cron&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This lists all running processes which contain &amp;quot;cron&amp;quot;, case insensitive (-i). This will propably show exactly two processes, something like this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;root 6278 0.0 0.2 1736 648 ?     Ss 13:39 0:00 cron&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;usr7 1337 0.0 0.2 1700 508 pts/1 S+ 15:21 0:00 grep -i cron&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
That is, the first line shows that cron is running, the second line is your listing of all processes containing &amp;quot;cron&amp;quot;, thus listing itself.&lt;br /&gt;
&lt;br /&gt;
If there is no &amp;quot;cron&amp;quot; listed then start it:&lt;br /&gt;
&amp;lt;nowiki&amp;gt;sudo cron&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now if everything worked you should see your wallpaper changing every 5 minutes.&lt;br /&gt;
&lt;br /&gt;
===How it works (simplified)===&lt;br /&gt;
&amp;quot;crontab cron.txt&amp;quot; adds every line in cron.txt to the list of running jobs. Every minute &amp;quot;cron&amp;quot; checks every entry if it should get executed. The five * are wildcards for the time when a job should be executed. This graphic (borrowed from [http://en.wikipedia.org/wiki/Crontab Wikipedia]) shows what they mean:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 *    *    *    *    *  command to be executed&lt;br /&gt;
 ┬    ┬    ┬    ┬    ┬&lt;br /&gt;
 │    │    │    │    │&lt;br /&gt;
 │    │    │    │    │&lt;br /&gt;
 │    │    │    │    └───── day of week (0 - 7) (Sunday=0 or 7)&lt;br /&gt;
 │    │    │    └────────── month (1 - 12)&lt;br /&gt;
 │    │    └─────────────── day of month (1 - 31)&lt;br /&gt;
 │    └──────────────────── hour (0 - 23)&lt;br /&gt;
 └───────────────────────── min (0 - 59)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Also the &amp;quot;/5&amp;quot; means &amp;quot;every 5 units&amp;quot;:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;*/5 * * * * echo Every 5 minutes&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;0 */2 * * * echo Every 2 hours at 0 minutes&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;0 0 */3 * * echo Every 3 days at 00:00&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
and so on.&lt;br /&gt;
&lt;br /&gt;
So if you want your wallpaper so change every 15 minutes you would use */15.&lt;br /&gt;
&lt;br /&gt;
===External Links===&lt;br /&gt;
[http://en.wikipedia.org/wiki/Crontab Crontab on Wikipedia]&lt;br /&gt;
&lt;br /&gt;
[http://www.howtoforge.com/xfce_desktop_background_wallpaper_changer Tutorial I used on www.howtoforge.com]&lt;br /&gt;
&lt;br /&gt;
[http://boards.openpandora.org/index.php?/topic/4389-how-do-i-install-cron-change-the-wallpaper-automatically/page__gopid__77582#entry77582 Forum thread on boards.openpandora.org]&lt;/div&gt;</summary>
		<author><name>Emnasut</name></author>
		
	</entry>
	<entry>
		<id>https://pandorawiki.org/index.php?title=Wallpaper_cronjob&amp;diff=8984</id>
		<title>Wallpaper cronjob</title>
		<link rel="alternate" type="text/html" href="https://pandorawiki.org/index.php?title=Wallpaper_cronjob&amp;diff=8984"/>
		<updated>2011-07-12T13:46:47Z</updated>

		<summary type="html">&lt;p&gt;Emnasut: /* Installing cron */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Changing the wallpaper every x minutes by using a cronjob==&lt;br /&gt;
&lt;br /&gt;
===Installing cron===&lt;br /&gt;
&lt;br /&gt;
To change the wallpaper in XFCE automatically you need cron. Test if it is already installed by opening a terminal and typing:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;crontab -l&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you get &amp;quot;command not found&amp;quot; you need to install it. Remember to activate wifi.&lt;br /&gt;
First update your package list:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;sudo opkg update&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
and then:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;sudo opkg install cron&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Adding pictures===&lt;br /&gt;
# Right-click on your desktop.&lt;br /&gt;
# Select Desktop settings.&lt;br /&gt;
# In the tab &amp;quot;Background&amp;quot; select &amp;quot;Image list&amp;quot;&lt;br /&gt;
# Click on &amp;quot;Create new list / load existing one&amp;quot; (left to &amp;quot;Style&amp;quot; the sheet of paper with the plus-sign)&lt;br /&gt;
# Enter a path and filename for your list&lt;br /&gt;
# Add the image files by clicking on the green &amp;quot;+&amp;quot;&lt;br /&gt;
# Close the window, it saves automatically. If you want, check the file you created, it should contain a list of pictures.&lt;br /&gt;
&lt;br /&gt;
===Setting up the cronjob===&lt;br /&gt;
Right now every time the xfdesktop reloads a picture will randomly be selected from the list. As it only gets reloaded by a reboot (or by manually calling a reload) we need to trigger a reload automatically.&lt;br /&gt;
&lt;br /&gt;
First open a new file in your preferred editor, e.g. vi. Then enter the following linee (I'll later explain why):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;# Reload wallpaper every 5 minutes.&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&amp;lt;nowiki&amp;gt;*/5 * * * * /usr/bin/xfdesktop --reload --display 0:0&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Save it as anything you want, e.g. cron.txt.&lt;br /&gt;
&lt;br /&gt;
In a terminal add the file to the cronjob list:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;crontab cron.txt&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now if you call &amp;quot;crontab -l&amp;quot; it should show your entry.&lt;br /&gt;
&lt;br /&gt;
Check if cron is running:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;ps aux | grep -i cron&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This lists all running processes which contain &amp;quot;cron&amp;quot;, case insensitive (-i). This will propably show exactly two processes, something like this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;root 6278 0.0 0.2 1736 648 ?     Ss 13:39 0:00 cron&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;usr7 1337 0.0 0.2 1700 508 pts/1 S+ 15:21 0:00 grep -i cron&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
That is, the first line shows that cron is running, the second line is your listing of all processes containing &amp;quot;cron&amp;quot;, thus listing itself.&lt;br /&gt;
&lt;br /&gt;
If there is no &amp;quot;cron&amp;quot; listed then start it:&lt;br /&gt;
&amp;lt;nowiki&amp;gt;sudo cron&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now if everything worked you should see your wallpaper changing every 5 minutes.&lt;br /&gt;
&lt;br /&gt;
===How it works (simplified)===&lt;br /&gt;
&amp;quot;crontab cron.txt&amp;quot; adds every line in cron.txt to the list of running jobs. Every minute &amp;quot;cron&amp;quot; checks every entry if it should get executed. The five * are wildcards for the time when a job should be executed. This graphic (borrowed from [http://en.wikipedia.org/wiki/Crontab Wikipedia]) shows what they mean:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 *    *    *    *    *  command to be executed&lt;br /&gt;
 ┬    ┬    ┬    ┬    ┬&lt;br /&gt;
 │    │    │    │    │&lt;br /&gt;
 │    │    │    │    │&lt;br /&gt;
 │    │    │    │    └───── day of week (0 - 7) (Sunday=0 or 7)&lt;br /&gt;
 │    │    │    └────────── month (1 - 12)&lt;br /&gt;
 │    │    └─────────────── day of month (1 - 31)&lt;br /&gt;
 │    └──────────────────── hour (0 - 23)&lt;br /&gt;
 └───────────────────────── min (0 - 59)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Also the &amp;quot;/5&amp;quot; means &amp;quot;every 5 units&amp;quot;:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;*/5 * * * * echo Every 5 minutes&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;0 */2 * * * echo Every 2 hours at 0 minutes&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;0 0 */3 * * echo Every 3 days at 00:00&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
and so on.&lt;br /&gt;
&lt;br /&gt;
So if you want your wallpaper so change every 15 minutes you would use */15.&lt;br /&gt;
&lt;br /&gt;
===External Links===&lt;br /&gt;
[http://en.wikipedia.org/wiki/Crontab Crontab on Wikipedia]&lt;br /&gt;
&lt;br /&gt;
[http://www.howtoforge.com/xfce_desktop_background_wallpaper_changer Tutorial I used on www.howtoforge.com]&lt;br /&gt;
&lt;br /&gt;
[http://boards.openpandora.org/index.php?/topic/4389-how-do-i-install-cron-change-the-wallpaper-automatically/page__gopid__77582#entry77582 Forum thread on boards.openpandora.org]&lt;/div&gt;</summary>
		<author><name>Emnasut</name></author>
		
	</entry>
	<entry>
		<id>https://pandorawiki.org/index.php?title=Wallpaper_cronjob&amp;diff=8983</id>
		<title>Wallpaper cronjob</title>
		<link rel="alternate" type="text/html" href="https://pandorawiki.org/index.php?title=Wallpaper_cronjob&amp;diff=8983"/>
		<updated>2011-07-12T13:44:27Z</updated>

		<summary type="html">&lt;p&gt;Emnasut: Created page with &amp;quot;==Changing the wallpaper every x minutes by using a cronjob==  ===Installing cron===  To change the wallpaper in XFCE automatically you need cron. Test if it is already installed...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Changing the wallpaper every x minutes by using a cronjob==&lt;br /&gt;
&lt;br /&gt;
===Installing cron===&lt;br /&gt;
&lt;br /&gt;
To change the wallpaper in XFCE automatically you need cron. Test if it is already installed by opening a terminal and typing:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;crontab -l&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you get &amp;quot;command not found&amp;quot; you need to install it.&lt;br /&gt;
First update your package list:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;sudo opkg update&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
and then:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;sudo opkg install cron&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Adding pictures===&lt;br /&gt;
# Right-click on your desktop.&lt;br /&gt;
# Select Desktop settings.&lt;br /&gt;
# In the tab &amp;quot;Background&amp;quot; select &amp;quot;Image list&amp;quot;&lt;br /&gt;
# Click on &amp;quot;Create new list / load existing one&amp;quot; (left to &amp;quot;Style&amp;quot; the sheet of paper with the plus-sign)&lt;br /&gt;
# Enter a path and filename for your list&lt;br /&gt;
# Add the image files by clicking on the green &amp;quot;+&amp;quot;&lt;br /&gt;
# Close the window, it saves automatically. If you want, check the file you created, it should contain a list of pictures.&lt;br /&gt;
&lt;br /&gt;
===Setting up the cronjob===&lt;br /&gt;
Right now every time the xfdesktop reloads a picture will randomly be selected from the list. As it only gets reloaded by a reboot (or by manually calling a reload) we need to trigger a reload automatically.&lt;br /&gt;
&lt;br /&gt;
First open a new file in your preferred editor, e.g. vi. Then enter the following linee (I'll later explain why):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;# Reload wallpaper every 5 minutes.&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&amp;lt;nowiki&amp;gt;*/5 * * * * /usr/bin/xfdesktop --reload --display 0:0&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Save it as anything you want, e.g. cron.txt.&lt;br /&gt;
&lt;br /&gt;
In a terminal add the file to the cronjob list:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;crontab cron.txt&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now if you call &amp;quot;crontab -l&amp;quot; it should show your entry.&lt;br /&gt;
&lt;br /&gt;
Check if cron is running:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;ps aux | grep -i cron&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This lists all running processes which contain &amp;quot;cron&amp;quot;, case insensitive (-i). This will propably show exactly two processes, something like this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;root 6278 0.0 0.2 1736 648 ?     Ss 13:39 0:00 cron&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;usr7 1337 0.0 0.2 1700 508 pts/1 S+ 15:21 0:00 grep -i cron&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
That is, the first line shows that cron is running, the second line is your listing of all processes containing &amp;quot;cron&amp;quot;, thus listing itself.&lt;br /&gt;
&lt;br /&gt;
If there is no &amp;quot;cron&amp;quot; listed then start it:&lt;br /&gt;
&amp;lt;nowiki&amp;gt;sudo cron&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now if everything worked you should see your wallpaper changing every 5 minutes.&lt;br /&gt;
&lt;br /&gt;
===How it works (simplified)===&lt;br /&gt;
&amp;quot;crontab cron.txt&amp;quot; adds every line in cron.txt to the list of running jobs. Every minute &amp;quot;cron&amp;quot; checks every entry if it should get executed. The five * are wildcards for the time when a job should be executed. This graphic (borrowed from [http://en.wikipedia.org/wiki/Crontab Wikipedia]) shows what they mean:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 *    *    *    *    *  command to be executed&lt;br /&gt;
 ┬    ┬    ┬    ┬    ┬&lt;br /&gt;
 │    │    │    │    │&lt;br /&gt;
 │    │    │    │    │&lt;br /&gt;
 │    │    │    │    └───── day of week (0 - 7) (Sunday=0 or 7)&lt;br /&gt;
 │    │    │    └────────── month (1 - 12)&lt;br /&gt;
 │    │    └─────────────── day of month (1 - 31)&lt;br /&gt;
 │    └──────────────────── hour (0 - 23)&lt;br /&gt;
 └───────────────────────── min (0 - 59)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Also the &amp;quot;/5&amp;quot; means &amp;quot;every 5 units&amp;quot;:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;*/5 * * * * echo Every 5 minutes&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;0 */2 * * * echo Every 2 hours at 0 minutes&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;0 0 */3 * * echo Every 3 days at 00:00&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
and so on.&lt;br /&gt;
&lt;br /&gt;
So if you want your wallpaper so change every 15 minutes you would use */15.&lt;br /&gt;
&lt;br /&gt;
===External Links===&lt;br /&gt;
[http://en.wikipedia.org/wiki/Crontab Crontab on Wikipedia]&lt;br /&gt;
&lt;br /&gt;
[http://www.howtoforge.com/xfce_desktop_background_wallpaper_changer Tutorial I used on www.howtoforge.com]&lt;br /&gt;
&lt;br /&gt;
[http://boards.openpandora.org/index.php?/topic/4389-how-do-i-install-cron-change-the-wallpaper-automatically/page__gopid__77582#entry77582 Forum thread on boards.openpandora.org]&lt;/div&gt;</summary>
		<author><name>Emnasut</name></author>
		
	</entry>
</feed>