rule for irssi and binding cleanup
This commit is contained in:
parent
5c0a868823
commit
31b4b333d3
|
@ -59,12 +59,10 @@ globalkeys = awful.util.table.join(
|
||||||
awful.key({ modkey, }, "f", function () awful.util.spawn("firefox") end),
|
awful.key({ modkey, }, "f", function () awful.util.spawn("firefox") end),
|
||||||
awful.key({ modkey, }, "t", function () awful.util.spawn("claws-mail") end),
|
awful.key({ modkey, }, "t", function () awful.util.spawn("claws-mail") end),
|
||||||
awful.key({ modkey, }, "p", function () awful.util.spawn("pidgin") end),
|
awful.key({ modkey, }, "p", function () awful.util.spawn("pidgin") end),
|
||||||
awful.key({ modkey, }, "s", function () awful.util.spawn("sunbird") end),
|
|
||||||
awful.key({ modkey, }, "g", function () awful.util.spawn("gmpc") end),
|
awful.key({ modkey, }, "g", function () awful.util.spawn("gmpc") end),
|
||||||
awful.key({ modkey, }, "w", function () awful.util.spawn("awsetbg -a -r /home/crater2150/.config/awesome/walls/ &") end),
|
awful.key({ modkey, }, "w", function () awful.util.spawn("awsetbg -a -r /home/crater2150/.config/awesome/walls/ &") end),
|
||||||
awful.key({ }, "XF86Mail", function () awful.util.spawn("xset dpms force off") end),
|
awful.key({ }, "XF86Mail", function () awful.util.spawn("xset dpms force off") end),
|
||||||
awful.key({ }, "XF86Mail", function () awful.util.spawn("xset dpms force off") end),
|
awful.key({ }, "XF86Mail", function () awful.util.spawn("xset dpms force off") end),
|
||||||
awful.key({ modkey }, "XF86Mail", function () awful.util.spawn("urslock") end),
|
|
||||||
awful.key({ modkey, "Control" }, "r", awesome.restart),
|
awful.key({ modkey, "Control" }, "r", awesome.restart),
|
||||||
awful.key({ modkey, "Shift" }, "q", awesome.quit),
|
awful.key({ modkey, "Shift" }, "q", awesome.quit),
|
||||||
awful.key({ }, "Menu", aweswt.switch),
|
awful.key({ }, "Menu", aweswt.switch),
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
|
|
||||||
-- {{{ Rules
|
|
||||||
awful.rules.rules = {
|
awful.rules.rules = {
|
||||||
-- All clients will match this rule.
|
-- All clients will match this rule.
|
||||||
{ rule = { },
|
{ rule = { },
|
||||||
|
@ -32,6 +31,9 @@ awful.rules.rules = {
|
||||||
properties = { master = true } },
|
properties = { master = true } },
|
||||||
{ rule = { role = "conversation" },
|
{ rule = { role = "conversation" },
|
||||||
callback = awful.client.setslave},
|
callback = awful.client.setslave},
|
||||||
|
{ rule = { instance = "Irssi"},
|
||||||
|
properties = { tag = tags[1][3]} ,
|
||||||
|
callback = awful.client.setslave},
|
||||||
{ rule = { class = "Irssi"},
|
{ rule = { class = "Irssi"},
|
||||||
properties = { tag = tags[1][3]} ,
|
properties = { tag = tags[1][3]} ,
|
||||||
callback = awful.client.setslave},
|
callback = awful.client.setslave},
|
||||||
|
@ -60,4 +62,3 @@ awful.rules.rules = {
|
||||||
fullscreen = true
|
fullscreen = true
|
||||||
} },
|
} },
|
||||||
}
|
}
|
||||||
-- }}}
|
|
||||||
|
|
Loading…
Reference in a new issue