Small rule and binding additions
This commit is contained in:
parent
71ff5f21c3
commit
457f474a2c
|
@ -102,7 +102,10 @@ local myglobalkeys = awful.util.table.join(
|
||||||
|
|
||||||
--{{{ misc. XF86 Keys
|
--{{{ misc. XF86 Keys
|
||||||
|
|
||||||
awful.key({ }, "Scroll_Lock", binder.spawn("xlock")),
|
awful.key({ }, "Scroll_Lock", binder.spawn("xlock")),
|
||||||
|
awful.key({ modkey }, "BackSpace", binder.spawn("xlock")),
|
||||||
|
awful.key({ modkey, "Shift" }, "BackSpace", binder.spawn("feierabend")),
|
||||||
|
|
||||||
awful.key({ }, "XF86Explorer", binder.spawn("touchpad")),
|
awful.key({ }, "XF86Explorer", binder.spawn("touchpad")),
|
||||||
awful.key({ "Shift" }, "XF86Explorer", binder.spawn("wacomtouch")),
|
awful.key({ "Shift" }, "XF86Explorer", binder.spawn("wacomtouch")),
|
||||||
|
|
||||||
|
|
|
@ -80,6 +80,12 @@ local function setup(self)
|
||||||
rule = { role = "buddy_list" },
|
rule = { role = "buddy_list" },
|
||||||
callback = awful.client.setmaster
|
callback = awful.client.setmaster
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
rule = { class = "Eclipse" },
|
||||||
|
properties = {
|
||||||
|
float = false
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
rule = { class = "Steam", name = "Friends" },
|
rule = { class = "Steam", name = "Friends" },
|
||||||
properties = {
|
properties = {
|
||||||
|
|
Loading…
Reference in a new issue