Skip to content

Instantly share code, notes, and snippets.

@blueyed
Created March 15, 2014 16:35
Show Gist options
  • Save blueyed/9570102 to your computer and use it in GitHub Desktop.
Save blueyed/9570102 to your computer and use it in GitHub Desktop.
0
-- Rename tag
-- Reference: http://awesome.naquadah.org/doc/api/modules/awful.prompt.html
awful.key({ modkey, "Shift", }, "F2", function ()
awful.prompt.run({ prompt = "Rename tab: ", text = awful.tag.selected().name, },
mypromptbox[mouse.screen].widget,
function (s)
awful.tag.selected().name = s
end)
end),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment