Open main menu

Linux and Unix Users Group at Virginia Teck Wiki β

Changes

Feh

435 bytes added, 04:57, 17 November 2009
Created page with ''''feh''' is an image viewer but it is mainly used for setting background images on minimalistic desktop setups. =Ackthets feh script= The following script changes your backgrou…'
'''feh''' is an image viewer but it is mainly used for setting background images on minimalistic desktop setups.

=Ackthets feh script=
The following script changes your background to a random image in the folder ~/.bg. It should be called in your .xinitrc so that its started with X.
<pre>
#!/bin/sh
while true;
do
find $HOME/.bg -type f -name '*.jpg' -o -name '*.png' | shuf -n 1 | xargs feh --bg-scale
sleep 15m
done &

</pre>
Anonymous user