Dir rename

This commit is contained in:
Difrex 2015-07-28 12:28:37 +03:00
parent 4724f54d87
commit 95233b7a1f
7 changed files with 8 additions and 8 deletions

2
.gitignore vendored
View File

@ -1,2 +1,2 @@
.*pyc
azot/*.pyc
Azot/*.pyc

View File

@ -1,7 +1,7 @@
from Xlib import display
from time import sleep
from azot.logger import warning
from Azot.logger import warning
# Get screen resolution
def get_geometry():

View File

@ -1,10 +1,10 @@
import os
import azot.config
from X import get_cursor_position
import Azot.config
from Azot.X import get_cursor_position
from time import sleep
# Globals
config = azot.config.load()
config = Azot.config.load()
corners = {
'top': config['corners']['top_corner'],
'right': config['corners']['right_corner'],

View File

@ -1,7 +1,7 @@
import ast
import argparse
import os
from X import get_geometry
from Azot.X import get_geometry
# Globals
config_path = os.environ['HOME'] + '/.config/azot/config.json'

View File

@ -1,6 +1,6 @@
#!/usr/bin/python
import azot.action
import Azot.action
while 1:
azot.action.do()
Azot.action.do()