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 fb94dc6 commit c72ebf4Copy full SHA for c72ebf4
aw_watcher_window/lib.py
@@ -1,14 +1,18 @@
1
import sys
2
import json
3
+import logging
4
from typing import Optional
5
6
+logger = logging.getLogger(__name__)
7
+
8
9
class Linux:
10
def __init__(self):
11
try:
12
import pydbus
13
self.bus = pydbus.SessionBus()
14
except ModuleNotFoundError:
15
+ logger.info("pydbus not installed, GNOME-Shell Wayland support disabled")
16
self.bus = False
17
self.gnome_shell = None
18
0 commit comments