diff options
author | Nico Schlömer <nico.schloemer@gmail.com> | 2020-07-20 11:07:38 +0200 |
---|---|---|
committer | Nico Schlömer <nico.schloemer@gmail.com> | 2020-07-20 11:07:38 +0200 |
commit | aad7a7f5dcf62a515b0d9d40ea14a67d69c6a842 (patch) | |
tree | 762be9e168302c791efca3bf3f8b854ee9422b29 | |
parent | e56b7bd40f053bf7c6f3b6c92fb700f66495bf97 (diff) | |
download | autotiling-aad7a7f5dcf62a515b0d9d40ea14a67d69c6a842.tar.gz |
move files around
-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() |