You are not logged in.

#1 2009-08-25 21:38:00

04gto
Member
Registered: 2008-03-04
Posts: 8

Console Background image

Does anyone know how to get a background image in console? I dont want to install x, i want my system to be strictly text mode.

For example if your familiar at all with openSuse, it has a background image when in console mode. I dont know if this is some sort of x implementation or what.
gentoo also has what im looking to do.

suse93-console.jpg
console.png

Offline

#2 2009-08-25 21:41:38

lucke
Member
From: Poland
Registered: 2004-11-30
Posts: 4,018

Offline

#3 2009-08-26 01:33:10

HashBox
Member
Registered: 2009-01-22
Posts: 271

Re: Console Background image

If you don't want to patch your kernel (I think you have to for this) I've come up with an alternative way of setting an image file as a background in the console using mplayer, it's quite hackish as you can imagine, but works by using ffmpeg, and mplayer along with cvidix, but in my experience it works quite well smile

I have it all set up in a wallpaper setter for my system that sets my wallpaper in the console aswell as in X, but the relevant lines look something like this,

WALLPAPER="PATHTOWALLPAPERHERE"
XSCREENRES="1024"
YSCREENRES="768"

ffmpeg -loop_input -vframes 5 -i "${WALLPAPER}" -r 1 -b 1800 -y -s ${XSCREENRES}x${YSCREENRES} /tmp/wall.avi >/dev/null 2>&1
sudo mplayer -vo cvidix -screenw ${XSCREENRES} -screenh ${YSCREENRES} -colorkey 000000 -really-quiet /tmp/wall.avi -fixed-vo -loop 0 >/dev/null 2>&1

Offline

Board footer

Powered by FluxBB