]> git.madduck.net Git - etc/awesome.git/blobdiff - util/init.lua

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

wiki updated
[etc/awesome.git] / util / init.lua
index 73818b696ca600b2c450238a053e56c22688fd20..06db0d4bc0acc8c00b8c5f30d0a2df1dc4e1deb0 100644 (file)
@@ -166,7 +166,7 @@ end
 -- {{{ Dynamic tagging
 --
 -- Add a new tag
-function util.prompt_add_tag(mypromptbox)
+function util.add_tag(mypromptbox)
     awful.prompt.run({prompt="New tag name: "}, mypromptbox[mouse.screen].widget,
     function(text)
         if text:len() > 0 then
@@ -179,7 +179,8 @@ function util.prompt_add_tag(mypromptbox)
 end
 
 -- Rename current tag
-function util.prompt_rename_tag(mypromptbox)
+-- @author: minism
+function util.rename_tag(mypromptbox)
     local tag = awful.tag.selected(mouse.screen)
     awful.prompt.run({prompt="Rename tag: "}, mypromptbox[mouse.screen].widget,
     function(text)