sysadmin:start
Differences
This shows you the differences between two versions of the page.
| sysadmin:start [2025/12/19 17:25] – created freedomotter | sysadmin:start [2026/04/24 11:10] (current) – freedomotter | ||
|---|---|---|---|
| Line 2: | Line 2: | ||
| Notes, fixes, and configuration details for systems I manage. | Notes, fixes, and configuration details for systems I manage. | ||
| + | == Fieldstation 42 guide channel on desktop == | ||
| + | |||
| + | < | ||
| + | shane: | ||
| + | Okay - I've just discovered the best thing ever if you are testing on a full desktop and using X11 and the guide or an autobump or videos takes over your whole screen and its difficult to get controls back. You can use xephyr to run it all in a nested x-server that acts as a window on your desktop. | ||
| + | |||
| + | In this picture, the customguide thinks its running in fullscreen, but its really just running in an 800x600 window on my desktop | ||
| + | -- | ||
| + | Image | ||
| + | To enable this, you need to install: | ||
| + | |||
| + | sudo apt install xserver-xephyr | ||
| + | sudo apt install openbox | ||
| + | sudo apt-get install picom | ||
| + | |||
| + | |||
| + | I wrote this script to start it up: | ||
| + | |||
| + | #!/bin/bash | ||
| + | |||
| + | # start Xephyr and wait until the display is actually available | ||
| + | Xephyr :1 -screen 800x600 -ac +extension Composite -glamor & | ||
| + | until DISPLAY=:1 xdpyinfo &>/ | ||
| + | |||
| + | # start openbox and wait until a WM is running | ||
| + | DISPLAY=:1 openbox & | ||
| + | until DISPLAY=:1 xprop -root _NET_SUPPORTING_WM_CHECK &>/ | ||
| + | |||
| + | DISPLAY=:1 picom & | ||
| + | sleep 0.5 | ||
| + | |||
| + | DISPLAY=:1 python3 field_player.py | ||
| + | </ | ||
sysadmin/start.txt · Last modified: by freedomotter
