| Hi dewet you can do as followings Copy the codecat << EOF > /etc/init/fbset.conf
# fbset - run fbset to set truecolor fbmo
dedescription "run fbset ASAP"
start on startup and started udev or starting lightdm
task
script
[ -x /bin/fbset ] && /bin/fbset -a -nonstd 1 -depth 32 -rgba "8/0,8/8,8/16,8/24"
end script
EOF
Copy the codecat << EOF > /etc/X11/xorg.conf
Section "Screen"
Identifier "Default Screen"
DefaultDepth 24
EndSection
EOF
then you should Add the following to /etc/rc.local
 Copy the codeservice lightdm stop
fbset -a -nonstd 1 -depth 32 -rgba 8/0,8/8,8/16,8/24
service lightdm start
 
 |