From https://unix.stackexchange.com/a/17278/674
Local displays correspond to a socket in
/tmp/.X11-unix
.(cd /tmp/.X11-unix && for x in X*; do echo ":${x#X}"; done)
On a computer:
$ (cd /tmp/.X11-unix && for x in X*; do echo ":${x#X}"; done)
:0
:1
:10
:11
:2
:3
:4
:5
:6
:7
:8
:9
I was wondering how to find out the X servers (command, or pid) for the given display numbers?
Thanks.
grep
these results to get pid or command, huh? – 炸鱼薯条德里克 Mar 15 '19 at 14:31