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 102b1f1 commit c59a47eCopy full SHA for c59a47e
README.md
@@ -23,7 +23,8 @@ Look at the [documentation](https://display-server-interactions.readthedocs.io/e
23
24
```python
25
from display_server_interactions import DSI
26
-window = DSI.get_active_window()
+dsi = DSI()
27
+window = dsi.get_active_window()
28
```
29
30
### Get basic window information
display_server_interactions/__init__.py
@@ -3,7 +3,7 @@
3
4
from platform import system as __system
5
6
-__version__ = "0.0.dev2"
+__version__ = "0.0.dev3"
7
__author__ = "Commandcracker"
8
9
__os_name = __system().lower()
0 commit comments