woodelf
2012-07-03 06:12 deepin
有没有试过用dconf-editor修改表项?网络上说的那个表项我这里不存在,所以目前无解。
Reply Like 0 View the author
import dbus
bus = dbus.SessionBus()
proxy = bus.get_object('org.gnome.SettingsDaemon','/org/gnome/SettingsDaemon/Power')
iface=dbus.Interface(proxy,dbus_interface='org.gnome.SettingsDaemon.Power.Screen')
iface.SetPercentage(75)
这段python代码可以调整亮度
请问如何让这个py脚本每次开机自动执行一次?(纯菜鸟,莫见怪。。)
chmod +x 了。。
[quote]import dbus
bus = dbus.SessionBus()
proxy = bus.get_object('org.gnome.SettingsDaemon','/org/gnome/SettingsDaemon/Power')
iface=dbus.Interface(proxy,dbus_interface='org.gnome.SettingsDaemon.Power.Screen')
iface.SetPercentage(75)
这段python代码可以调整亮度
请问如何让这个py脚本每次开机自动执行一次?(纯菜鸟,莫见怪。。)
chmod +x 了。。
Popular Ranking
ChangePopular Events
More
上网搜的结果都是修改laptop mode tools配置
但是没用。
请问有没有真正可行的方法?