Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Turn off screen saver in default configuration. #679

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions conf/xorg.conf.nouveau
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,26 @@ Section "ServerLayout"
Identifier "Layout0"
Option "AutoAddDevices" "false"
Option "AutoAddGPU" "false"

# When using `intel-virtual-output`, the X-server for the second monitor
# uses its own screensaver settings for the built-in screensaver of X. If
# any application like e.g. a video player suppresses the screensaver, the
# external screen will still turn black after 10 minutes without any
# keyboard or mouse input. The following settings suppress this behaviour
# by completely disabling the built-in screensaver.

# Note that this does not affect the screensaver of your desktop
# environment, as they usually do their own screensaving. Also locking
# the workstation works just fine. However, power saving features will not
# work on the external monitor, it will never go to powersaving mode.

# This is a workaround for issue #93562 against `intel-virtual-output`:
# https://bugs.freedesktop.org/show_bug.cgi?id=93562

# Option "BlankTime" "0"
# Option "StandbyTime" "0"
# Option "SuspendTime" "0"
# Option "OffTime" "0"
EndSection

Section "Device"
Expand Down
20 changes: 20 additions & 0 deletions conf/xorg.conf.nvidia
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,26 @@ Section "ServerLayout"
Identifier "Layout0"
Option "AutoAddDevices" "false"
Option "AutoAddGPU" "false"

# When using `intel-virtual-output`, the X-server for the second monitor
# uses its own screensaver settings for the built-in screensaver of X. If
# any application like e.g. a video player suppresses the screensaver, the
# external screen will still turn black after 10 minutes without any
# keyboard or mouse input. The following settings suppress this behaviour
# by completely disabling the built-in screensaver.

# Note that this does not affect the screensaver of your desktop
# environment, as they usually do their own screensaving. Also locking
# the workstation works just fine. However, power saving features will not
# work on the external monitor, it will never go to powersaving mode.

# This is a workaround for issue #93562 against `intel-virtual-output`:
# https://bugs.freedesktop.org/show_bug.cgi?id=93562

# Option "BlankTime" "0"
# Option "StandbyTime" "0"
# Option "SuspendTime" "0"
# Option "OffTime" "0"
EndSection

Section "Device"
Expand Down