A horrific workaround I'm currently using is a python script in the
background that checks DPMS periodically and resets it if it's an
unexpected value....

[EMAIL PROTECTED]:~$ cat /usr/local/bin/dpmswatch
#!/usr/bin/python
import os
import time
while True:
  st=os.popen('xset -q | grep Standby').read()[:-1].strip()
  if st != "Standby: 120    Suspend: 120    Off: 120":
    print "Bad DPMS:",st
    os.system('xset dpms 120 120 120')
  time.sleep(10)


[EMAIL PROTECTED]:~$ cat .kde/Autostart/displayconfig-restore
#!/bin/bash
python /usr/local/bin/dpmswatch &

-- 
DPMS timeout restored incorrectly on login
https://launchpad.net/bugs/65791

-- 
kubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/kubuntu-bugs

Reply via email to