Created
November 22, 2024 09:43
-
-
Save dmgerman/27b28f11f417dee55fe4192a49ccdd08 to your computer and use it in GitHub Desktop.
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
dmg_all_keys = {"cmd", "alt", "ctrl"} | |
hs.console.consoleFont({ | |
__luaSkinType = "NSFont", | |
name = "Menlo-Regular", | |
size = 18.0 | |
}) | |
hs.hotkey.bind( | |
dmg_all_keys, "R", | |
function() hs.reload() | |
end) | |
hs.hotkey.bind( | |
dmg_all_keys, "c", | |
function () hs.toggleConsole() | |
end) | |
hs.logger.setGlobalLogLevel(10) | |
require("hs.ipc") | |
hs.alert.show("Done loading") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment