I'm pretty sure there are some non-antix users checking this thread out. So hello and welcome to you. This post is for you. If you would like an app to set the wallpaper for you, then feh is a simple app that can get the job done. Here is how:
1. Install feh.
2. Using the tips from the previous post, create a menu entry and a script for feh. Here's the script that you'll need:
- Code: Select all
#!/bin/sh
feh -g 640x480 -d -S filename ~/Wallpaper/
Don't forget to make it executable and move it /usr/local/bin/.
Note: You can change "~/Wallpaper/" to whatever directory you use for your wallpapers/images.
3. Add this line to ~/.icewm/startup so that feh will set this wall paper each time you startup:
- Code: Select all
eval `cat $HOME/.fehbg` &
4. If you don't have the file ~/.icewm/startup, then use mine:
- Code: Select all
#!/bin/bash
conky &
eval `cat $HOME/.fehbg` &
(sleep 2; idesk &) &
You will need to make it executable. See the above post for more info.
Note: Your .xsession or .xinitrc file will need to have an entry such as "exec icewm-session" for the startup file to be executed.
5. Restart Icewm using the menu. Try clicking your menu entry for feh. Everything should work.
john