Initial commit

This commit is contained in:
Denis Zheleztsov 2015-07-22 10:14:32 +03:00
commit 9bf7bd7286
8 changed files with 18 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.*pyc

13
azot.py Normal file
View File

@ -0,0 +1,13 @@
from Xlib import display
import azot.action
azot.action.do("TRATATA")
width = display.Display().screen().width_in_pixels
height = display.Display().screen().height_in_pixels
root = display.Display().screen().root.display
# print data["root_x"], data["root_y"]
#print width, height
#print root.__dict__

BIN
azot.pyc Normal file

Binary file not shown.

2
azot/X.py Normal file
View File

@ -0,0 +1,2 @@
def get_resolution():
pass

0
azot/__init__.py Normal file
View File

BIN
azot/__init__.pyc Normal file

Binary file not shown.

2
azot/action.py Normal file
View File

@ -0,0 +1,2 @@
def do(string):
print string

BIN
azot/action.pyc Normal file

Binary file not shown.