旋转屏幕时字体变大

旋转屏幕时字体变大

我有一台新的 ThinkPad X220 平板电脑,装有 Kubuntu 12.04。当我使用脚本将屏幕旋转 90° 时,旋转后打开的所有程序的字体都变得非常大,非常难看。

普通的

旋转

#!/bin/sh

# Find the line in "xrandr -q --verbose" output that contains current screen orientation and "strip" out current orientation.

rotation="$(xrandr -q --verbose | grep 'connected' | egrep -o  '\) (normal|left|inverted|right) \(' | egrep -o '(normal|left|inverted|right)')"

# Using current screen orientation proceed to rotate screen and input tools.

case "$rotation" in
        normal)
                # rotate to the left
                xrandr -o right
                xsetwacom set "Wacom ISDv4 E6 Pen stylus" rotate cw
                xsetwacom set "Wacom ISDv4 E6 Finger touch" rotate cw
                xsetwacom set "Wacom ISDv4 E6 Pen eraser" rotate cw
                ;;
        right)
                # rotate to normal
                xrandr -o normal                                                                                                                                                                
                xsetwacom set "Wacom ISDv4 E6 Pen stylus" rotate none                                                                                                                           
                xsetwacom set "Wacom ISDv4 E6 Finger touch" rotate none                                                                                                                         
                xsetwacom set "Wacom ISDv4 E6 Pen eraser" rotate none                                                                                                                           
                ;;                                                                                                                                                                              
esac  

答案1

将评论转换为答案

您的问题似乎与这个旧 KDE 密切相关/或相同错误报告

在重复的链接后面,它提到了一种可能的解决方法

解决该问题的一个可能的方法:

系统设置 -> 外观 -> 字体强制 dpi 为 96

查看手册页兰德也许你可以尝试:

xrandr --dpi [dpi]

xrandr或者可能两次调用您的脚本,将更[dpi]改为一个值,睡眠一秒钟以允许显示刷新,然后使用最终[dpi]值再次调用相同的例程 - 例如96

相关内容