@@ -183,18 +183,27 @@ For a complete list of the things ActivityWatch can track, [see the page on *wat
183
183
184
184
``` mermaid
185
185
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;
198
207
199
208
classDef lightMode fill:#FFFFFF, stroke:#333333, color:#333333;
200
209
classDef darkMode fill:#333333, stroke:#FFFFFF, color:#FFFFFF;
0 commit comments