awesome/lib
Emmanuel Lepage Vallee ce2d31cbde prompt: Add the ability to add new shortcuts to awful.prompt
Example:

awful.prompt.run({ prompt = "Run: ", hooks = {
    {{         },"Return",function(command)
         local result = awful.util.spawn(command)
         mypromptbox[mouse.screen].widget:set_text(type(result) == "string" and result or "")
         return true
    end},
    {{"Mod1"   },"Return",function(command)
         local result = awful.util.spawn(command,{sticky=true})
         mypromptbox[mouse.screen].widget:set_text(type(result) == "string" and result or "")
         return true
    end},
    {{"Shift"  },"Return",function(command)
         local result = awful.util.spawn(command,{ontop=true,floating=true})
         mypromptbox[mouse.screen].widget:set_text(type(result) == "string" and result or "")
         return true
    end}
    }
},...)
2015-11-08 12:31:36 +01:00
..
awful prompt: Add the ability to add new shortcuts to awful.prompt 2015-11-08 12:31:36 +01:00
beautiful doc: fix unintentional rendering as code due to indent 2015-10-14 00:22:26 +02:00
gears Merge pull request #537 from psychon/timer-signals 2015-11-05 23:07:31 +01:00
menubar menubar.icon_theme: cache index_theme instances 2015-10-13 22:28:34 +02:00
naughty naughty: Use :get_height_for_width() 2015-10-17 19:13:26 +02:00
wibox doc: fix format for wibox.widget.base.make_widget 2015-11-05 23:05:42 +01:00