Last active
July 5, 2025 11:00
-
-
Save bschulz87/2af009cc5d5ad24d6392d51709c17aba to your computer and use it in GitHub Desktop.
Steam deck OBS setup - v4l2 loopback
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
| # disable readonly | |
| sudo steamos-readonly disable | |
| # init keys | |
| sudo pacman-key --init | |
| sudo pacman-key --populate archlinux | |
| sudo pacman-key --populate holo | |
| # search latest headers | |
| sudo pacman -Ss linux-neptune | |
| # install found appropiate headers and v4l2 | |
| sudo pacman -S linux-neptune-611-headers v4l2loopback-dkms | |
| # check if it works | |
| sudo modprobe v4l2loopback | |
| # reenable readonly | |
| sudo steamos-readonly enable | |
| # load audio null sink | |
| pactl load-module module-null-sink | |
| # install obs-midi | |
| # ~/.var/app/com.obsproject.Studio/current/active/files/plugins |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment