Start using urxvt again

This commit is contained in:
Tom Willemse 2015-05-09 19:12:16 +02:00
parent bfcb68d21f
commit 1bda53e97d

View file

@ -101,7 +101,7 @@ if avandu then
end end
-- This is used later as the default terminal and editor to run. -- This is used later as the default terminal and editor to run.
terminal = "terminator" terminal = "urxvtc"
editor = "emacsclient" editor = "emacsclient"
editor_cmd = editor editor_cmd = editor
@ -388,7 +388,7 @@ globalkeys = awful.util.table.join(
awful.key({ }, "Print", function () awful.util.spawn("scrot") end), awful.key({ }, "Print", function () awful.util.spawn("scrot") end),
-- awful.key({ "Control", }, "Print", function () awful.util.spawn("scrot -s") end), -- awful.key({ "Control", }, "Print", function () awful.util.spawn("scrot -s") end),
awful.key({ modkey, }, "c", ror("terminator", "Terminator")), awful.key({ modkey, }, "c", ror("urxvtc", "URxvt")),
awful.key({ modkey, }, "e", ror("emacsclient -c", "Emacs")), awful.key({ modkey, }, "e", ror("emacsclient -c", "Emacs")),
awful.key({ modkey, }, "w", ror("conkeror", "Conkeror")), awful.key({ modkey, }, "w", ror("conkeror", "Conkeror")),
@ -524,6 +524,8 @@ awful.rules.rules = {
properties = { fullscreen = true } }, properties = { fullscreen = true } },
{ rule = { class = "Emacs" }, { rule = { class = "Emacs" },
properties = { tag = tags[1][1] } }, properties = { tag = tags[1][1] } },
{ rule = { class = "URxvt" },
properties = { size_hints_honor = false } },
-- Set Firefox to always map on tags number 2 of screen 1. -- Set Firefox to always map on tags number 2 of screen 1.
-- { rule = { class = "Firefox" }, -- { rule = { class = "Firefox" },
-- properties = { tag = tags[1][2] } }, -- properties = { tag = tags[1][2] } },