码迷,mamicode.com
首页 > 其他好文 > 详细

使用命令xrandr设置当前系统的显示分辨率及显示的旋转脚本

时间:2014-06-16 18:55:46      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   http   ext   使用   

/*********************************************************************
 * Author  : Samson
 * Date    : 06/15/2014
 * Test platform:
 *              Mint 15-3.8.13.13
 *              GNU bash, version 4.2.45
 * *******************************************************************/

#!/bin/bash
echo "try to set 800x600"
 xrandr -s 8
sleep 10
echo "try to set 1680x1050"
xrandr -s 2
sleep 10
echo "try to set 1440x900"
xrandr -s 4
sleep 10
echo "try to set 1280x1024"
xrandr -s 3
sleep 10
echo "try to set 1024x768"
 xrandr -s 6
sleep 10
echo "try to set 1920x1080"
 xrandr -s 0
sleep 10
以上的-s后的参数值后跟的数值是对应的显示配置中的项从上至下的索引号,索引号从0开始,这个需要打开的你的电脑的“显示”属性配置对话框进行查看。如下图,若是xrandr -s 0对应的就不是 1920x1080,而是1600*900了。bubuko.com,布布扣
以下是使用命令进行显示器旋转的配置脚本:
echo "try to set left"
xrandr -o leftsleep 3
echo "try to set right"
xrandr -o right
sleep 3
echo "try to set inverted "
xrandr -o inverted
sleep 3
echo "try to set normal"
xrandr -o normal
sleep 3

使用命令xrandr设置当前系统的显示分辨率及显示的旋转脚本,布布扣,bubuko.com

使用命令xrandr设置当前系统的显示分辨率及显示的旋转脚本

标签:style   class   blog   http   ext   使用   

原文地址:http://blog.csdn.net/yygydjkthh/article/details/31040421

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