web-dev-qa-db-ja.com

ディスプレイを最も簡単な方法で回転させるにはどうすればよいですか?

私は、画面を(物理的に)回転できるピボットモニターの幸運な所有者です。モニターをオンにしたときにディスプレイをオンにする最も簡単な方法は何ですか?

今のところ、最初に「ディスプレイ」アプリを起動してから、設定を変更して確認します。しかし、これは実際には非常に面倒な手順です。1分間に数回まで向きを切り替えたいからです。

それで、これ、または同等の指標はありますか?専用コマンドを起動するキーボードショートカットを設定できますか?実際、Windowsプログラムに似たものを考えています iRotate

51
Agmenor

[キーボード]-> [ショートカット]に移動し、[カスタムショートカット]を選択し、[+]を押して新しいショートカットを追加します。

「名前」は、アクションを説明する名前です(つまり、「モニターの回転」)。 [コマンド]に、ショートカットがアクティブになったときに実行するカスタムコマンドを入力します。

ショートカットがリストに表示されたら、その行を選択してEnterキーを押し、ショートカットをアクティブにするキーの組み合わせを押します。競合がある場合、ショートカットマネージャーがそのことを通知します。別の組み合わせを選択できます。

回転表示を有効にするショートカットと、直立位置に戻す別のショートカットを使用できます。十分な知識があれば、状態を維持し、直立/回転を切り替えるコマンドを作成することもできます。

さて、使用する必要があるコマンドについては、おそらくxrandrです。

xrandr --output HDMI1 --rotate left

xrandr --output HDMI1 --rotate normal

出力パラメーターは、モニターが接続されているポートによって異なります。現在持っているものを確認するには、次を入力します。

xrandr -q

私の言う:

Screen 0: minimum 320 x 200, current 1366 x 768, maximum 8192 x 8192
LVDS1 connected 1366x768+0+0 (normal left inverted right x axis y axis) 309mm x 174mm
   1366x768       60.0*+
   1360x768       59.8     60.0  
   1024x768       60.0  
   800x600        60.3     56.2  
   640x480        59.9  
VGA2 disconnected (normal left inverted right x axis y axis)
HDMI1 disconnected (normal left inverted right x axis y axis)
DP1 disconnected (normal left inverted right x axis y axis)

この場合、他のすべてが切断されているため、--outputはLVDS1になります。

89
roadmr

に最適

xrandr --output LVDS1 --rotate left
xrandr --output LVDS1 --rotate right
xrandr --output LVDS1 --rotate inverted
xrandr --output LVDS1 --rotate normal
16

センサー入力に基づいてそれを行う方法の素敵な例を次に示します。 https://linuxappfinder.com/blog/auto_screen_rotation_in_ubunt

したがって、基本的に上記を試して、回転させたい画面を特定してください。モデルモニターによっては、信号を送信するセンサーがありますか?

これは、内蔵の回転センサーを備えたLenovo Yoga 2 11でうまく機能し、ユニティドックも移動します。

スクリプト:

#!/bin/sh
# Auto rotate screen based on device orientation

# Receives input from monitor-sensor (part of iio-sensor-proxy package)
# Screen orientation and launcher location is set based upon accelerometer position
# Launcher will be on the left in a landscape orientation and on the bottom in a portrait orientation
# This script should be added to startup applications for the user

# Clear sensor.log so it doesn't get too long over time
> sensor.log

# Launch monitor-sensor and store the output in a variable that can be parsed by the rest of the script
monitor-sensor >> sensor.log 2>&1 &

# Parse output or monitor sensor to get the new orientation whenever the log file is updated
# Possibles are: normal, bottom-up, right-up, left-up
# Light data will be ignored
while inotifywait -e modify sensor.log; do
# Read the last line that was added to the file and get the orientation
ORIENTATION=$(tail -n 1 sensor.log | grep 'orientation' | grep -oE '[^ ]+$')

# Set the actions to be taken for each possible orientation
case "$ORIENTATION" in
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 ;;
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 ;;
esac
done

センサーの前提条件:

Sudo apt install iio-sensor-proxy inotify-tools
3
Vincent Gerris

これを行うシェルスクリプトを作成しました。 (xrandr grep awkが必要です)

#!/bin/sh
# invert_screen copyright 20170516 alexx MIT Licence ver 1.0
orientation=$(xrandr -q|grep -v dis|grep connected|awk '{print $4}')
display=$(xrandr -q|grep -v dis|grep connected|awk '{print $1}')
if [ "$orientation" == "inverted" ]; then
   xrandr --output $display --rotate normal
else
   xrandr --output $display --rotate inverted
fi

ワンライナーが好きな場合:

[ "$(xrandr -q|grep -v dis|grep con|awk '{print $4}')" == 'inverted' ] && xrandr -o normal || xrandr -o inverted
1
Alexx Roche