Skip to content

Instantly share code, notes, and snippets.

@dmgerman
Created November 22, 2024 09:43
Show Gist options
  • Save dmgerman/27b28f11f417dee55fe4192a49ccdd08 to your computer and use it in GitHub Desktop.
Save dmgerman/27b28f11f417dee55fe4192a49ccdd08 to your computer and use it in GitHub Desktop.
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