diff options
-rwxr-xr-x | autotiling | 2 | ||||
-rw-r--r--[-rwxr-xr-x] | autotiling/main.py (renamed from autotiling.py) | 7 |
2 files changed, 0 insertions, 9 deletions
diff --git a/autotiling b/autotiling deleted file mode 100755 index 1e2cf34..0000000 --- a/autotiling +++ /dev/null @@ -1,2 +0,0 @@ -#!/usr/bin/env bash -exec /usr/lib/autotiling/autotiling.py "$@" diff --git a/autotiling.py b/autotiling/main.py index cc42a43..2f80dd1 100755..100644 --- a/autotiling.py +++ b/autotiling/main.py @@ -1,6 +1,3 @@ -#!/usr/bin/env python3 -# _*_ coding: utf-8 _*_ - """ This script uses the i3ipc python module to switch the layout splith / splitv for the currently focused window, depending on its dimensions. @@ -65,7 +62,3 @@ def main(): i3 = Connection() i3.on(Event.WINDOW_FOCUS, handler) i3.main() - - -if __name__ == "__main__": - main() |