Skip to content

Commit cdc8d5e

Browse files
committed
docs: added links to the mermaid architecture diagram
1 parent 43cbad1 commit cdc8d5e

File tree

1 file changed

+21
-12
lines changed

1 file changed

+21
-12
lines changed

README.md

Lines changed: 21 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -183,18 +183,27 @@ For a complete list of the things ActivityWatch can track, [see the page on *wat
183183

184184
```mermaid
185185
graph TD;
186-
aw-qt -- Manages --> S;
187-
aw-qt -- Manages --> aw-notify -- Queries --> S;
188-
aw-qt -- Manages --> W1[aw-watcher-window] -- Watches --> S1[Active window] -- Heartbeats --> S[aw-server];
189-
aw-qt -- Manages --> W2[aw-watcher-afk] -- Watches --> S2[AFK status] -- Heartbeats --> S[aw-server];
190-
Browser -- Manages --> aw-watcher-web -- Watches --> S3[Active tab] -- Heartbeats --> S;
191-
SF -- Dropbox/Syncthing/etc --> SF;
192-
S <-- aw-sync --> SF[Sync folder];
193-
S -- Serves --> UI[aw-webui];
194-
195-
%% User -- Interacts --> UI;
196-
%% User -- Observes --> aw-notify;
197-
%% User -- Interacts --> aw-qt;
186+
aw-qt[<a href='https://github.com/ActivityWatch/aw-qt'>aw-qt</a>];
187+
aw-notify[<a href='https://github.com/ActivityWatch/aw-notify'>aw-notify</a>];
188+
aw-server[<a href='https://github.com/ActivityWatch/aw-server'>aw-server</a>];
189+
aw-webui[<a href='https://github.com/ActivityWatch/aw-webui'>aw-webui</a>];
190+
aw-watcher-window[<a href='https://github.com/ActivityWatch/aw-watcher-window'>aw-watcher-window</a>];
191+
aw-watcher-afk[<a href='https://github.com/ActivityWatch/aw-watcher-afk'>aw-watcher-afk</a>];
192+
aw-watcher-web[<a href='https://github.com/ActivityWatch/aw-watcher-web'>aw-watcher-web</a>];
193+
aw-sync[<a href='https://github.com/ActivityWatch/aw-server-rust/tree/master/aw-sync'>aw-sync</a>];
194+
195+
aw-qt -- Manages --> aw-server;
196+
aw-qt -- Manages --> aw-notify -- Queries --> aw-server;
197+
aw-qt -- Manages --> W1[aw-watcher-window] -- Watches --> S1[Active window] -- Heartbeats --> aw-server;
198+
aw-qt -- Manages --> W2[aw-watcher-afk] -- Watches --> S2[AFK status] -- Heartbeats --> aw-server;
199+
Browser -- Manages --> aw-watcher-web -- Watches --> S3[Active tab] -- Heartbeats --> aw-server;
200+
SF -- Dropbox/Syncthing/etc --> SF;
201+
aw-server <-- aw-sync --> SF[Sync folder];
202+
aw-server -- Serves --> UI[aw-webui];
203+
204+
%% User -- Interacts --> UI;
205+
%% User -- Observes --> aw-notify;
206+
%% User -- Interacts --> aw-qt;
198207
199208
classDef lightMode fill:#FFFFFF, stroke:#333333, color:#333333;
200209
classDef darkMode fill:#333333, stroke:#FFFFFF, color:#FFFFFF;

0 commit comments

Comments
 (0)