File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -15,10 +15,18 @@ Was originally prototyped as a PR to aw-server: https://github.com/ActivityWatch
15
15
This will start a daemon which pulls and pushes events with the sync directory (` ~/ActivityWatchSync ` by default) every 5 minutes:
16
16
17
17
``` sh
18
+ # Basic sync daemon (syncs every 5 minutes)
18
19
aw-sync
20
+
21
+ # Advanced sync daemon with custom options
22
+ aw-sync daemon --advanced --buckets " aw-watcher-window,aw-watcher-afk" --start-date " 2024-01-01"
19
23
```
20
24
21
- For more options, see ` aw-sync --help ` .
25
+ For more options, see ` aw-sync --help ` . Some notable options:
26
+ - ` --advanced ` : Use advanced sync mode with more control
27
+ - ` --buckets ` : Specify which buckets to sync (comma-separated)
28
+ - ` --start-date ` : Only sync events after this date (YYYY-MM-DD)
29
+ - ` --sync-db ` : Specify a specific database file in the sync directory
22
30
23
31
### Setting up sync
24
32
You can’t perform that action at this time.
0 commit comments