We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a67745e commit 9bb5045Copy full SHA for 9bb5045
src/aw_watcher_input/main.py
@@ -16,9 +16,10 @@ def main(testing: bool):
16
logging.basicConfig(level=logging.INFO)
17
logger.info("Starting watcher...")
18
client = aw_client.ActivityWatchClient("aw-watcher-input", testing=testing)
19
+ client.wait_for_start()
20
client.connect()
21
- # Create bucjet
22
+ # Create bucket
23
bucket_name = "{}_{}".format(client.client_name, client.client_hostname)
24
eventtype = "os.hid.input"
25
client.create_bucket(bucket_name, eventtype, queued=False)
0 commit comments