You are not logged in.
Pages: 1
How to run this command at start up
feh --bg-scale `dcop kdesktop KBackgroundIface currentWallpaper 1`
to be run at boot.In which extension to save and where to put,how to link???
Offline
try to include your command(s) in /etc/rc.local. That file will be execed after all the other rc.* stuff..
Also you can put your cammands in a runlevel dependend rc.* file, but note that this my be owerwritten on the next system upgrade!
best solution may be /etc/rc.local
good luck!
GNU/Linux is not only another operating system. It is freedom from any point view!
Offline
You may also be able to add it to your ~/.bashrc
R.
Offline
What are you trying to do?
Everything put in rc.local is run as root, and that might not be what you want to do...
Are you running kde (dcop is mainly a kde component)? If so, put that command in a text file, like this;
#! /bin/sh
feh --bg-scale `dcop kdesktop KBackgroundIface currentWallpaper 1`
make it executable with "chmod +x <filename>" and put it in .kde/Autostart
Last edited by pelle.k (2007-10-21 19:36:08)
"Your beliefs can be like fences that surround you.
You must first see them or you will not even realize that you are not free, simply because you will not see beyond the fences.
They will represent the boundaries of your experience."
SETH / Jane Roberts
Offline
What are you trying to do?
Everything put in rc.local is run as root, and that might not be what you want to do...Are you running kde (dcop is mainly a kde component)? If so, put that command in a text file, like this;
#! /bin/sh feh --bg-scale `dcop kdesktop KBackgroundIface currentWallpaper 1`
make it executable with "chmod +x <filename>" and put it in .kde/Autostart
That is I wanted,thanks!!!!!
Offline
seems the best solutions came from ralvez and pelle.k, so go with them...
have luck!
GNU/Linux is not only another operating system. It is freedom from any point view!
Offline
Pages: 1