Difference between revisions of "Feh"
imported>Cov |
imported>Pew |
||
Line 1: | Line 1: | ||
+ | TODO: Move to softwre page | ||
+ | |||
'''feh''' is an image viewer but it is mainly used for setting background images on minimalistic desktop setups. To get it to set your background when X starts, put the following line in your [[.xinitrc]]. | '''feh''' is an image viewer but it is mainly used for setting background images on minimalistic desktop setups. To get it to set your background when X starts, put the following line in your [[.xinitrc]]. | ||
<pre> | <pre> | ||
Line 19: | Line 21: | ||
[[Category:Desktop *nix software]] | [[Category:Desktop *nix software]] | ||
[[Category:Scripts]] | [[Category:Scripts]] | ||
+ | [[Category:Needs restoration]] |
Revision as of 07:24, 3 January 2018
TODO: Move to softwre page
feh is an image viewer but it is mainly used for setting background images on minimalistic desktop setups. To get it to set your background when X starts, put the following line in your .xinitrc.
feh --bg-scale /path/to/image
Ackthet's Rotating Background Image Script
The following script changes your background to a random image in the folder ~/.bg
every 15 minutes. It should be called in your .xinitrc so that it is started with X.
#!/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 &