150 lines
2.7 KiB
Text
150 lines
2.7 KiB
Text
|
# ╭───────╮
|
||
|
# │ Graph │
|
||
|
# ╰───────╯
|
||
|
digraph "index" {
|
||
|
bgcolor="transparent"
|
||
|
color="#C0C000"
|
||
|
fontcolor="#FF8000"
|
||
|
fontname="DejaVu Sans"
|
||
|
penwidth="2"
|
||
|
rankdir="RL"
|
||
|
|
||
|
# ╭───────┬──────╮
|
||
|
# │ Graph │ Edge │
|
||
|
# ╰───────┴──────╯
|
||
|
edge [
|
||
|
fontcolor="#FF4040"
|
||
|
fontname="DejaVu Sans"
|
||
|
style="filled"
|
||
|
]
|
||
|
|
||
|
# ╭───────┬──────╮
|
||
|
# │ Graph │ Edge │
|
||
|
# ╰───────┴──────╯
|
||
|
node [
|
||
|
color="#C0C0C0"
|
||
|
fontcolor="#FFFFFF"
|
||
|
fontname="DejaVu Sans"
|
||
|
penwidth="2"
|
||
|
shape="record"
|
||
|
style="filled"
|
||
|
]
|
||
|
|
||
|
{ rank="max"
|
||
|
"" [style="invis"]
|
||
|
}
|
||
|
|
||
|
edge [color="#008000"]
|
||
|
node [fillcolor="#408040"]
|
||
|
|
||
|
edge [color="#FF0000"]
|
||
|
node [fillcolor="#303030"]
|
||
|
|
||
|
# ╭────────╮
|
||
|
# │ Online │
|
||
|
# ╰────────╯
|
||
|
|
||
|
subgraph cluster_online {
|
||
|
label="Online"
|
||
|
|
||
|
# ╭────────┬─────────╮
|
||
|
# │ Online │ Beninca │
|
||
|
# ╰────────┴─────────╯
|
||
|
|
||
|
subgraph cluster_online_beninca {
|
||
|
label="beninca.link"
|
||
|
URL="https://beninca.link"
|
||
|
|
||
|
online_beninca_marc [
|
||
|
fontcolor="#8080FF"
|
||
|
label="Marc"
|
||
|
URL="https://marc.beninca.link"
|
||
|
]
|
||
|
|
||
|
}
|
||
|
|
||
|
# ╭────────┬─────╮
|
||
|
# │ Online │ RWX │
|
||
|
# ╰────────┴─────╯
|
||
|
|
||
|
subgraph cluster_online_rwx {
|
||
|
label="rwx.work"
|
||
|
URL="https://rwx.work"
|
||
|
|
||
|
online_rwx_forge [
|
||
|
fontcolor="#8080FF"
|
||
|
label="Forge"
|
||
|
URL="https://forge.rwx.work"
|
||
|
]
|
||
|
|
||
|
online_rwx_software [
|
||
|
fontcolor="#8080FF"
|
||
|
label="Software"
|
||
|
URL="https://software.rwx.work"
|
||
|
]
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
# ╭────────╮
|
||
|
# │ Mobile │
|
||
|
# ╰────────╯
|
||
|
|
||
|
subgraph cluster_mobile {
|
||
|
label="Mobile"
|
||
|
|
||
|
# ╭────────┬──────╮
|
||
|
# │ Mobile │ Sony │
|
||
|
# ╰────────┴──────╯
|
||
|
|
||
|
subgraph cluster_mobile_sony {
|
||
|
label="Sony"
|
||
|
|
||
|
mobile_sony_records [
|
||
|
label="Records"
|
||
|
]
|
||
|
|
||
|
}
|
||
|
|
||
|
# ╭────────┬─────╮
|
||
|
# │ Mobile │ SSD │
|
||
|
# ╰────────┴─────╯
|
||
|
|
||
|
subgraph cluster_mobile_ssd {
|
||
|
label="SSD"
|
||
|
|
||
|
mobile_ssd_dev [
|
||
|
label="{
|
||
|
|
||
|
<grub> GRUB | { <bios> BIOS | <esp> ESP }
|
||
|
|
||
|
}|
|
||
|
|
||
|
<data> Data
|
||
|
| { <boot> Boot | { <latest> Latest | <stable> Stable | <images> Images } }
|
||
|
| <memories> Memories
|
||
|
| { <projects> Projects | { <lsgm> LSGM | <ofsp> OFSP } }
|
||
|
| <other> …
|
||
|
|
||
|
"
|
||
|
]
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
mobile_ssd_dev:lsgm:e -> mobile_ssd_dev:grub:w
|
||
|
|
||
|
mobile_sony_records -> mobile_ssd_dev:memories
|
||
|
|
||
|
html [shape="plaintext" label=<<table cellspacing="0">
|
||
|
<tr><td rowspan="2" port="grub">GRUB</td><td port="bios">BIOS</td></tr>
|
||
|
<tr><td port="esp">ESP</td></tr>
|
||
|
<tr><td rowspan="2" port="data">Data</td><td port="memories">Memories</td></tr>
|
||
|
<tr><td port="other">…</td></tr>
|
||
|
</table>>]
|
||
|
html:data -> html:grub
|
||
|
|
||
|
}
|