Ubuntu 是否支持“帐篷模式”自动定位?

Ubuntu 是否支持“帐篷模式”自动定位?

我有一台联想 Flex 2 15,它有 300° 的旋转角度,因此可以翻转到“帐篷”模式。我想知道屏幕是否会像在 Windows 中一样自动旋转以匹配它。

或者如果可以的话我可以以某种方式设置它吗?

答案1

我有联想,但我不使用翻转模式。在屏幕选项中,您还可以翻转屏幕,但它也可以自动翻转,Linux 可以做到一切,但有时很难找到最佳解决方案。也许这可以提供帮助>>触摸屏输入不旋转:联想 Yoga 13 / Yoga 2 Pro

答案2

在浪费了我整个星期天下午的时间尝试让 iio-sensor-proxy 工作之后,我做了这个小技巧:

/opt/auto-rotate

#!/bin/bash
MODEL="Lenovo Yoga 510"
DEBUG=false # DEBUG=true or DEBUG=false

while true
do

    if [ -f $X_FILE -a -f $Y_FILE -a -f $Z_FILE ];then
        X_AXIS=$(cat $X_FILE)
        Y_AXIS=$(cat $Y_FILE)
        Z_AXIS=$(cat $Z_FILE)
    else
        echo "Modules seems not loaded. To activate:"
        echo "To activate:"
        echo "sudo modprobe iio-hwmon"
        echo "sudo modprobe hid-sensor-iio-common"
        echo "sudo modprobe iio_dummy"
        echo "If not, sorry this is WIP..."
        exit 1
    fi

    $DEBUG && echo "X: $X_AXIS, Y: $Y_AXIS, Z: $Z_AXIS"

    if [ $X_AXIS -gt 80 -a  $X_AXIS -lt 110 ];then
        ORIENTATION="right-up"
    elif [ $X_AXIS -gt 150 -a  $X_AXIS -lt 190 ];then
        ORIENTATION="left-up"
    else
        if [ $Y_AXIS -gt 10 -a  $Y_AXIS -lt 120 ];then
            ORIENTATION="normal"
        else
            ORIENTATION="bottom-up"
        fi

    fi

    case "$ORIENTATION" in
        right-up)
            xrandr --output eDP1 --rotate right && gsettings set com.canonical.Unity.Launcher launcher-position Bottom
        ;;
        left-up)
            xrandr --output eDP1 --rotate left && gsettings set com.canonical.Unity.Launcher launcher-position Bottom
        ;;
        normal)
            xrandr --output eDP1 --rotate normal && gsettings set com.canonical.Unity.Launcher launcher-position Left
        ;;
        bottom-up)
            xrandr --output eDP1 --rotate inverted && gsettings set com.canonical.Unity.Launcher launcher-position Left
        ;;
    esac
    sleep 1
done

登录时启动:如何在登录时自动启动应用程序?

相关内容