Built with blockbuilder.org
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
-- Amsterdam, October 2016 | |
-- Needed a replacement solution after Karabiner stopped working with MacOS Sierra, and until | |
-- this is solved with Karabiner-Elements: https://github.com/tekezo/Karabiner-Elements/issues/16 | |
-- Highly copied from https://gist.github.com/prenagha/1c28f71cb4d52b3133a4bff1b3849c3e and the likes... | |
modal = hs.hotkey.modal.new( {}, 'f20' ); | |
-- Mostly for debug reason: shows when the modal is active | |
--function modal:entered() hs.alert.closeAll(); hs.alert.show( "Vim mode active", 999999 ) end | |
--function modal:exited() hs.alert.closeAll() end |
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
license: gpl-3.0 |
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
license: gpl-3.0 |
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
#!/bin/sh | |
# Some things taken from here | |
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
# Set the colours you can use | |
black='\033[0;30m' | |
white='\033[0;37m' | |
red='\033[0;31m' | |
green='\033[0;32m' |