web-dev-qa-db-ja.com

「非アクティブ時に画面をオフにする」-端末からの設定

端末から「輝度設定」の「非アクティブ時に画面をオフにする」設定を「決して」にしたいのですが、正しいコマンドが見つかりませんでした。

これは実行ファイルで使用され、Ubuntuライブインストールのいくつかの設定を変更します。

編集:

より複雑な理由により、スクリーンセーバーの設定とは独立したこの特定の設定を変更したいと思います(私は思う)。

5
Hagadol
gsettings set org.gnome.desktop.session idle-delay 0

画面のロックを防ぎ、その設定をneverに変更します。

注意:設定ウィンドウを閉じて再度開き、コマンドの効果を確認してください。

そこに書き込む値は、Unityが何もしておらず、画面をロックする必要があると判断するのにかかる時間(秒単位)です。

9
Bruno Pereira

このコマンドを使用できると思います:

xset s off

xsetマニュアルページからman xset

s       The  s  option  lets you set the screen saver parameters.  This
       option   accepts   up   to   two   numerical   parameters,    a
       'blank/noblank'  flag,  an  'expose/noexpose' flag, an 'on/off'
       flag, an 'activate/reset' flag, or the 'default' flag.   If  no
       parameters  or  the  'default' flag is used, the system will be
       set to its default screen saver characteristics.  The  'on/off'
       flags  simply  turn  the screen saver functions on or off.  The
       'activate' flag forces activation of screen saver even  if  the
       screen  saver  had  been  turned  off.  The 'reset' flag forces
       deactivation of screen saver if it is active.  The 'blank' flag
       sets  the preference to blank the video (if the hardware can do
       so) rather than display a background pattern,  while  'noblank'
       sets  the preference to display a pattern rather than blank the
       video.  The 'expose' flag sets the preference to  allow  window
       exposures  (the  server  can  freely  discard window contents),
       while 'noexpose' sets the preference to  disable  screen  saver
       unless  the  server  can regenerate the screens without causing
       exposure events.  The length  and  period  parameters  for  the
       screen  saver  function  determines how long the server must be
       inactive for screen saving  to  activate,  and  the  period  to
       change  the background pattern to avoid burn in.  The arguments
       are specified in seconds.  If only one numerical  parameter  is
       given, it will be used for the length.

gnomeおよびUnityデスクトップの場合、一定時間後にロック画面をオフにするには:

gsettings set org.gnome.desktop.screensaver lock-enabled  false

オンに戻すには:

gsettings set org.gnome.desktop.screensaver lock-enabled true

また、x分を設定すると、画面が空白になってから画面がロックされますが、秒として入力する必要があります(60で乗算)

gsettings set org.gnome.desktop.screensaver lock-delay "x"

値の例は、5分間の300です-次のbash行に分として入力できる場合があります。

gsettings set org.gnome.desktop.screensaver lock-delay $(echo X*60 | bc)

Xは分単位の数字です-Ubuntu 13.10で動作するようです。

ああ、画面の調光を無効にするには:

gsettings set org.gnome.settings-daemon.plugins.power idle-dim false
5
Wilf

少なくとも私にはうまくいったこれを試してください:

xset +dpms
xset dpms 300

300は5分なので、5分間非アクティブにすると、電源がオフになります。

0
nux