aboutsummaryrefslogtreecommitdiff
path: root/mjolnir
diff options
context:
space:
mode:
authorMatt Singleton <matt@xcolour.net>2016-04-16 12:06:16 -0400
committerMatt Singleton <matt@xcolour.net>2016-04-16 12:06:16 -0400
commitf97262188b674b170309a330adae6f5211373920 (patch)
treef0989bca40587207f21d7f49d830e6f77eea1406 /mjolnir
parent1e15fb7e6565baed1a799ec2ad439aaad3e6f7fc (diff)
switch from mjolnir to hammerspoon for mac window management
Diffstat (limited to 'mjolnir')
-rw-r--r--mjolnir/init.lua38
1 files changed, 0 insertions, 38 deletions
diff --git a/mjolnir/init.lua b/mjolnir/init.lua
deleted file mode 100644
index 5b9bad4..0000000
--- a/mjolnir/init.lua
+++ /dev/null
@@ -1,38 +0,0 @@
-local application = require "mjolnir.application"
-local window = require "mjolnir.window"
-local hotkey = require "mjolnir.hotkey"
-local fnutils = require "mjolnir.fnutils"
-
-hotkey.bind({"alt"}, "0", function()
- local win = window.focusedwindow()
- win:maximize()
-end)
-
-hotkey.bind({"alt"}, "left", function()
- local win = window.focusedwindow()
- if win ~= nil then
- win:movetounit({x=0, y=0, w=0.5, h=1})
- end
-end)
-
-hotkey.bind({"alt"}, "right", function()
- local win = window.focusedwindow()
- if win ~= nil then
- win:movetounit({x=0.5, y=0, w=0.5, h=1})
- end
-end)
-
-hotkey.bind({"alt"}, "down", function()
- local win = window.focusedwindow()
- if win ~= nil then
- win:movetounit({x=0.167, y=0, w=0.666, h=1})
- end
-end)
-
-hotkey.bind({"alt"}, "r", function()
- mjolnir:reload()
-end)
-
-hotkey.bind({"alt"}, "c", function()
- mjolnir.openconsole()
-end)