A more modular and extensible take on a Mjolnir configuration.
git clone [email protected]:jhgg/Hydra-Config.git ~/.mjolnir
luarocks install mjolnir.hotkey
luarocks install mjolnir.window
luarocks install mjolnir.alert
luarocks install mjolnir._asm.hydra
luarocks install mjolnir._asm.pathwatcher
luarocks install mjolnir._asm.data
luarocks install mjolnir._asm.notify
luarocks install mjolnir._asm.timer
luarocks install mjolnir._asm.hydra.applescript
luarocks install mjolnir.jstevenson.cursor
cp config.example.lua config.lua
config.lua
- The configuration file, that contains configuration options for every module.init.lua
- The bootstrapper that loads modules defined in the config, and handles the menu.
I've written a few utilities to take care of some general purpose functionality:
utils/find.lua
- Convenience methods for finding windows, and audio devices.utils/import.lua
- My own take of require() with its own cache. Useimport
everywhere you would have usedrequire
.init.lua
takes care of clearing the cache, each reload, so you don't have to worry.utils/monitors.lua
- Monitor detection & window positioning helpers.utils/position.lua
- Functions to resize a window within a screen.utils/matchers/match.lua
- A shitty fuzzy matching & scoring function.utils/match_dialgoue.lua
- Utility to create a specialized text view that can be used to do fuzzy match navigating (or menus or whatever.. seeutils/fuzzy_match.lua
, andmodules/app_selector.lua
).utils/nudge.lua
- Utility functions to nudge a window. Thanks @josheschulz.utils/music/*.lua
- Utility functions for controlling Spotify, iTunes and Rdio.
A few modules to handle stuff I needed mjolnir to do:
modules/reload.lua
- Handles reloading mjolnir. (CMD-CTRL-ALT-E)modules/repl.lua
- Handles launching the repl. (CMD-CTRL-ALT-R)Not compatible with Mjolnirmodules/updates.lua
- Handles checking for updates.modules/lock.lua
- Handles locking the screen. (F13)modules/arrows.lua
- Handles positioning a window on the current screen. (CMD-CTRL-ALT-)modules/monitors.lua
- Handles moving windows between screens.modules/arrangement.lua
- Handles building window arrangements, that arrange windows on multiple screens. I use this to move windows to different monitors automatically.modules/app_selector.lua
- Focus windows by fuzzy matching their titles. Usesutils/match_dialogue
.modules/fullscreen.lua
- Universal shortcut to toggle full screen. (CMD-CTRL-A)modules/slide.lua
- Handles nudging windows viautils/nudge.lua
. (CMD-CTRL-ALT-) Thanks @josheschulz.modules/hop.lua
- Handles focusing windows in relative directions. (CMD-CTRL-ALT-SHIFT-) Thanks @josheschulz.
Released under MIT license.
Copyright (c) 2014 Jacob Heinz
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.