Fetch the repository succeeded.
This action will force synchronization from mktime/python-learn, which will overwrite any changes that you have made since you forked the repository, and can not be recovered!!!
Synchronous operation will process in the background and will refresh the page when finishing processing. Please be patient.
#!/bin/bash
# date: 2015-11-04 11:03:59
# blog: http://mktime.org
# desc: a simple script to change latop screen's backlight
# usage: ./screen.sh +/-
# I use this script with awesome window manager, just add below two lines into rc.lua
# awful.key({ altkey }, "F5", function() os.execute("/home/demo/bin/screen.sh -") end)
# awful.key({ altkey }, "F6", function() os.execute("/home/demo/bin/screen.sh +") end)
sudo chown $USER:$USER /sys/class/backlight/intel_backlight/brightness
cur_value=`cat /sys/class/backlight/intel_backlight/brightness`
max_value=`cat /sys/class/backlight/intel_backlight/max_brightness`
base=400
if [ "$#" != "1" ]
then
echo "usage: ./screen.sh +/-" && exit 2
fi
if [ "$1" = "+" ]
then
cur_value=`expr $cur_value + $base`
elif [ "$1" = "-" ]
then
cur_value=`expr $cur_value - $base`
else
echo "format error" && exit 3
fi
if [ $cur_value -ge $max_value ]
then
echo "too large" && exit 4
fi
if [ $cur_value -le 0 ]
then
echo "too small" && exit 5
fi
echo $cur_value > /sys/class/backlight/intel_backlight/brightness
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。