Skip to content

Commit 8f9dcaf

Browse files
0.0.dev1
1 parent 568a4a5 commit 8f9dcaf

File tree

18 files changed

+42
-42
lines changed

18 files changed

+42
-42
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# DSI (Display Server Interactions)
1+
# Display Server Interactions
22

33
DSI allows you to perform basic interactions on your display server, like screenshotting a window or sending input to it.
44
Currently, DSI only supports X11/Xorg (GNU/Linux) but it aims to be cross-platform.
@@ -7,12 +7,12 @@ Currently, DSI only supports X11/Xorg (GNU/Linux) but it aims to be cross-platfo
77

88
## Quick overview
99

10-
Look at the [documentation](https://python-dsi.readthedocs.io/en/latest/) for moor information's
10+
Look at the [documentation](https://display-server-interactions.readthedocs.io/en/latest/) for moor information's
1111

1212
### Get a window
1313

1414
```python
15-
from dsi import DSI
15+
from display_server_interactions import DSI
1616
window = DSI.get_active_window()
1717
```
1818

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
from platform import system as __system
55

6-
__version__ = "0.0.dev0"
6+
__version__ = "0.0.dev1"
77

88
__os_name = __system().lower()
99

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#!/usr/bin/python3
22
# -*- coding: utf-8 -*-
3+
# TODO: add way to get pixel from image
34

45
class Image(object):
56
def __init__(self, data, width, height):

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@ def get_version(rel_path: str) -> str:
3636
raise RuntimeError("Unable to find version string.")
3737

3838

39-
project = 'DSI'
39+
project = 'Display Server Interactions'
4040
copyright = '2022, Commandcracker'
4141
author = 'Commandcracker'
4242

4343
# The full version, including alpha/beta/rc tags
44-
release = get_version("../../dsi/__init__.py")
44+
release = get_version("../../display_server_interactions/__init__.py")
4545

4646

4747
# -- General configuration ---------------------------------------------------

docs/source/get_window.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Get currently active window
1717

1818
.. code-block:: python
1919
20-
from dsi import DSI
20+
from display_server_interactions import DSI
2121
2222
window = DSI.get_active_window()
2323
@@ -26,7 +26,7 @@ Get a window by its name
2626

2727
.. code-block:: python
2828
29-
from dsi import DSI
29+
from display_server_interactions import DSI
3030
3131
window = DSI.get_window_by_name("Funny Window Name")
3232
@@ -35,6 +35,6 @@ Get window by PID
3535

3636
.. code-block:: python
3737
38-
from dsi import DSI
38+
from display_server_interactions import DSI
3939
4040
window = DSI.get_window_by_pid(42)

docs/source/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Welcome to DSI's documentation!
2-
===============================
1+
Welcome to Display Server Interactions documentation!
2+
=====================================================
33

44
.. toctree::
55
:maxdepth: 2

0 commit comments

Comments
 (0)