docs(faq): document missing video output while the screen is locked#281
Open
junkerderprovinz wants to merge 1 commit into
Open
docs(faq): document missing video output while the screen is locked#281junkerderprovinz wants to merge 1 commit into
junkerderprovinz wants to merge 1 commit into
Conversation
Contributor
There was a problem hiding this comment.
Code Review
This pull request adds a new FAQ entry to docs/faq.md explaining why video output is lost when the screen is locked on an existing desktop and providing workarounds to avoid this issue. I have no feedback to provide as there are no review comments.
Important
The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Reference the issue numbers and reviewers
#174 @ehfd
Explain relevant issues and how this pull request solves them
This pull request documents the known limitation discussed in #174: when the screen is locked on an existing desktop, Selkies produces no video output. As established in that thread, the display manager's lock switches to a greeter on a separate display or virtual terminal (observed with LightDM spawning a second X server on
:1), so Selkies capturing the originalDISPLAYloses output until the screen is unlocked. Since documentation was explicitly requested in that issue, this adds a FAQ entry covering the cause and the workarounds. Documents #174; feel free to close that issue if this satisfies the documentation requirement.Describe the changes in code and its dependencies and justify that they work as intended after testing
Adds one new entry to
docs/faq.md, matching the existing entry pattern (##heading,<details markdown>block with anOpen Answersummary). It explains why the video output stops on screen lock and lists the workarounds in order: disable screen locking and any autostarted locker (light-locker,xscreensaver,gnome-screensaver), runxset s off -dpms, addOption "HardDPMS" "False"in/etc/X11/xorg.conffor NVIDIA DPMS blanking, or use a container/session without a display manager. Verified that the Markdown renders correctly with themd_in_htmlextension used for the existing entries: all eight<details>/</details>pairs and summaries are balanced. Documentation-only change; no code or dependencies are affected.Describe alternatives you've considered
Handling the lock screen transition in code was ruled out in #174 ("There is not much that can be reliably done here"), since the greeter runs on a different display that Selkies cannot follow, so documenting the limitation and workarounds is the agreed approach.
Additional context
The new entry is placed directly after the existing display-manager-related entry ("The web interface refuses to start up in the terminal after rebooting...") to keep session/display-manager topics grouped together.