I have a problem with my Lilliput. When X starts up, my monitor goes nuts. Toggling the power button fixes it.
Being lazy, I came up with the following fix.
Make sure power management is set up for your monitor in xorg.conf
Code:
Section "Monitor"
Option "DPMS"
Make a script called togglemonitor (probably should put it in /usr/local/bin)
Code:
#!/bin/sh
/usr/X11R6/bin/xset dpms force off
/usr/X11R6/bin/xset dpms force on
Then in your Xsetup file (under something like /etc/kde3/kdm/Xsetup for KDM, I believe for xdm and gdm there is an equivalent)
Add the following line
Code:
/usr/local/bin/togglemonitor
Anyone else have this problem btw?
Bookmarks