Skip to content

Instantly share code, notes, and snippets.

@jeffmhubbard
Created May 6, 2021 21:36
Show Gist options
  • Save jeffmhubbard/bf8f619557a41a748a841a11d3326003 to your computer and use it in GitHub Desktop.
Save jeffmhubbard/bf8f619557a41a748a841a11d3326003 to your computer and use it in GitHub Desktop.
local awful = require("awful")
-- Mod keys
superkey = "Mod4"
altkey = "Mod1"
ctrlkey = "Control"
shiftkey = "Shift"
awful.keyboard.append_global_keybindings({
awful.key({ superkey }, "F2",
function()
awful.spawn.with_shell("rofi -modi drun -show")
end,
{description = "focus down", group = "client"})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment