Skip to content

Instantly share code, notes, and snippets.

@zzamboni
Created December 19, 2019 12:41
Show Gist options
  • Save zzamboni/7824598172f146dcc2e482c452e1fd4d to your computer and use it in GitHub Desktop.
Save zzamboni/7824598172f146dcc2e482c452e1fd4d to your computer and use it in GitHub Desktop.
> m = hs.menubar.new()
> m:setTitle("Boo")
hs.menubar: Boo (0x600000980258)
> m:setClickCallback(function (mods) print(hs.inspect(mods)) end)
hs.menubar: Boo (0x600000980258)
> {
alt = false,
cmd = false,
ctrl = false,
fn = false,
shift = false
}
{
alt = false,
cmd = false,
ctrl = false,
fn = false,
shift = true
}
{
alt = true,
cmd = false,
ctrl = false,
fn = false,
shift = false
}
{
alt = false,
cmd = false,
ctrl = true,
fn = false,
shift = true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment