码迷,mamicode.com
首页 > 系统相关 > 详细

ubuntu 设置显示器的亮度

时间:2014-10-31 22:05:28      阅读:267      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   color   sp   div   on   log   bs   

 ubuntu电脑重新启动后,亮度都变成了最亮。似乎也没胡地方可以设置。只好通过写个脚本来做这个事了。

# -*- coding: utf-8 -*-

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(0)

当然你也可以用以下方法设置亮度

echo X > /sys/class/backlight/intel_backlight/brightness

 

ubuntu 设置显示器的亮度

标签:style   blog   io   color   sp   div   on   log   bs   

原文地址:http://www.cnblogs.com/Mingxx/p/4066013.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!