在openmoko(稳定版混合版本,SHR)中,在应用程序运行时,如何以编程方式关闭屏幕保护程序(几秒钟不活动后的灰色/空白屏幕)?
答案 0 :(得分:1)
在X中,您可以运行
xset s off
关闭屏幕保护程序。类似地,gnome / freedesktop公开了一个DBUS API来控制和禁止屏幕保护程序模式。我不知道OpenMoko是否支持freedesktop规范,但如果确实如此,你应该能够直接使用DBUS。你可以看到Totem是如何做到的here。
答案 1 :(得分:1)
FSORaw是一个包装器,您可以在外部使用它来声明显示等资源。这将防止屏幕消隐。但如果它是您自己的应用程序,我建议您在软件中声明相同的显示资源。
答案 2 :(得分:0)
可以通过freesmartphone的D-BUS API来实现,也可以防止暂停。
mdbus -s org.freesmartphone.ousaged /org/freesmartphone/Usage org.freesmartphone.Usage.SetResourcePolicy CPU auto
mdbus -s org.freesmartphone.ousaged /org/freesmartphone/Usage org.freesmartphone.Usage.SetResourcePolicy Display auto
将auto替换为启用或禁用。
您可以在 http://git.freesmartphone.org/?p=specs.git;a=blob_plain;f=html/org.freesmartphone.Usage.html;hb=HEAD#GetResourcePolicy
找到此D-BUS方法的文档