Created
July 29, 2014 00:16
-
-
Save sixfeetover/ebd04c6c50ca191e30ea to your computer and use it in GitHub Desktop.
Hydra config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- refers to grid.lua in this directory, taken from the Hydra wiki: https://github.com/sdegutis/hydra/wiki/Useful-Hydra-libraries | |
require "grid" | |
hydra.alert "Hydra, at your service." | |
pathwatcher.new(os.getenv("HOME") .. "/.hydra/", hydra.reload):start() | |
autolaunch.set(true) | |
menu.show(function() | |
return { | |
{title = "About Hydra", fn = hydra.showabout}, | |
{title = "-"}, | |
{title = "Quit", fn = os.exit}, | |
} | |
end) | |
local mash = {"cmd", "alt", "ctrl"} | |
local mashshift = {"cmd", "alt", "shift"} | |
local function opendictionary() | |
hydra.alert("Lexicon, at your service.", 0.75) | |
application.launchorfocus("Dictionary") | |
end | |
hotkey.bind(mash, 'D', opendictionary) | |
hotkey.bind(mash, ';', function() ext.grid.snap(window.focusedwindow()) end) | |
hotkey.bind(mash, "'", function() fnutils.map(window.visiblewindows(), ext.grid.snap) end) | |
hotkey.bind(mash, '=', function() ext.grid.adjustwidth( 1) end) | |
hotkey.bind(mash, '-', function() ext.grid.adjustwidth(-1) end) | |
hotkey.bind(mashshift, 'L', function() window.focusedwindow():focuswindow_west() end) | |
hotkey.bind(mashshift, 'L', function() window.focusedwindow():focuswindow_east() end) | |
hotkey.bind(mashshift, 'K', function() window.focusedwindow():focuswindow_north() end) | |
hotkey.bind(mashshift, 'J', function() window.focusedwindow():focuswindow_south() end) | |
hotkey.bind(mash, 'M', ext.grid.maximize_window) | |
hotkey.bind(mash, 'N', ext.grid.pushwindow_nextscreen) | |
hotkey.bind(mash, 'P', ext.grid.pushwindow_prevscreen) | |
hotkey.bind(mash, 'DOWN', ext.grid.pushwindow_down) | |
hotkey.bind(mash, 'UP', ext.grid.pushwindow_up) | |
hotkey.bind(mash, 'LEFT', ext.grid.pushwindow_left) | |
hotkey.bind(mash, 'RIGHT', ext.grid.pushwindow_right) | |
hotkey.bind(mashshift, 'DOWN', ext.grid.resizewindow_taller) | |
hotkey.bind(mashshift, 'UP', ext.grid.resizewindow_shorter) | |
hotkey.bind(mashshift, 'RIGHT', ext.grid.resizewindow_wider) | |
hotkey.bind(mashshift, 'LEFT', ext.grid.resizewindow_thinner) | |
hotkey.bind(mash, 'X', logger.show) | |
hotkey.bind(mash, "R", repl.open) | |
updates.check() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment