Skip to content

Commit

Permalink
ALL: Fixed watchdog thread
Browse files Browse the repository at this point in the history
LINUX: Added attach()/detach(), fixed setPosition() and arrangeMonitors()
WIN32: Fixed and improved many issues (scale still pending)
  • Loading branch information
Kalmat committed Aug 23, 2023
1 parent 6af97e9 commit f0e9125
Show file tree
Hide file tree
Showing 10 changed files with 891 additions and 535 deletions.
Binary file added dist/PyMonCtl-0.0.10-py3-none-any.whl
Binary file not shown.
Binary file removed dist/PyMonCtl-0.0.9-py3-none-any.whl
Binary file not shown.
1 change: 1 addition & 0 deletions src/ewmhlib/Props.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ class MoveResize(IntEnum):


class DataFormat(IntEnum):
# I guess 16 is not used in Python (no difference between short and long int)
STR = 8
INT = 32

Expand Down
4 changes: 2 additions & 2 deletions src/ewmhlib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
import sys
assert sys.platform == "linux"

from ._ewmhlib import (getAllDisplaysInfo, getDisplayFromRoot, getDisplayFromWindow,
from ._ewmhlib import (displaysCount, getDisplaysNames, getDisplaysInfo, getDisplayFromRoot, getDisplayFromWindow,
getProperty, getPropertyValue, changeProperty, sendMessage, _xlibGetAllWindows,
defaultDisplay, defaultScreen, defaultRoot, RootWindow, defaultRootWindow, EwmhWindow
)
import ewmhlib.Props as Props
import ewmhlib.Structs as Structs

__all__ = [
"version", "getAllDisplaysInfo", "getDisplayFromRoot", "getDisplayFromWindow",
"version", "displaysCount", "getDisplaysNames", "getDisplaysInfo", "getDisplayFromRoot", "getDisplayFromWindow",
"getProperty", "getPropertyValue", "changeProperty", "sendMessage",
"defaultDisplay", "defaultScreen", "defaultRoot", "defaultRootWindow", "RootWindow", "EwmhWindow"
]
Expand Down
306 changes: 154 additions & 152 deletions src/ewmhlib/_ewmhlib.py

Large diffs are not rendered by default.

Loading

0 comments on commit f0e9125

Please sign in to comment.