Last active
September 5, 2018 12:00
-
-
Save DamionDamion/de1948a1ec959197a9c51518b2a99ecf to your computer and use it in GitHub Desktop.
Run chrome on a VFB with VNC from headless chrome casting
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
Xvfb -screen 0 1920x1080x24 & | |
x11vnc -forever -display :0 & | |
export DISPLAY=:0 | |
chromium & | |
#loopback audio for uh... purposes | |
modprobe snd-aloop | |
usermod -a G audio <user> | |
aplay -L #find the audio device | |
#set your application to list on X loopback device | |
aplay -D hw:2,0,0 play.wav |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment