aboutsummaryrefslogtreecommitdiff
path: root/mjolnir
diff options
context:
space:
mode:
Diffstat (limited to 'mjolnir')
-rw-r--r--mjolnir/init.lua38
1 files changed, 38 insertions, 0 deletions
diff --git a/mjolnir/init.lua b/mjolnir/init.lua
new file mode 100644
index 0000000..d0084a4
--- /dev/null
+++ b/mjolnir/init.lua
@@ -0,0 +1,38 @@
+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.15, y=0, w=0.70, h=1})
+ end
+end)
+
+hotkey.bind({"alt"}, "r", function()
+ mjolnir:reload()
+end)
+
+hotkey.bind({"alt"}, "c", function()
+ mjolnir.openconsole()
+end)