1 digraph arch_wayland { 2 edge[ 3 fontname="DejaVu Sans", 4 dir="both", 5 arrowtail="dot", 6 arrowsize=.5, 7 fontname="DejaVu Sans", 8 fontsize="18", 9 ] 10 11 node[ 12 shape="Mrecord", 13 color=none, 14 fillcolor="#ffbc00", 15 style="filled", 16 fontname="DejaVu Sans", 17 fontsize="18", 18 ] 19 20 c1 [label="Wayland Client", URL="#c1"] 21 c2 [label="Wayland Client", URL="#c2"] 22 23 comp [tooltip="Wayland Compositor", label="|{|Wayland\nCompositor|}|", URL="#comp"] 24 25 impl [tooltip="KMS evdev Kernel", label="|{{KMS|evdev}|Kernel}|", URL="#impl"] 26 27 28 c1 -> comp [taillabel="", labeldistance=2.5, URL="#step_3"]; 29 c2 -> comp; 30 31 comp -> c1 [label="", URL="#step_2"]; 32 comp -> c2; 33 34 comp -> impl [xlabel = "", URL="#step_4"]; 35 comp -> impl [style = invis, label=" "]; 36 impl -> comp [xlabel = "", URL="#step_1"]; 37 38 c1 -> c2 [style=invis]; 39 } 40