diff --git a/awesome/.config/awesome/rc.lua b/awesome/.config/awesome/rc.lua index 2673aca..1afd053 100644 --- a/awesome/.config/awesome/rc.lua +++ b/awesome/.config/awesome/rc.lua @@ -101,7 +101,7 @@ if avandu then end -- This is used later as the default terminal and editor to run. -terminal = "terminator" +terminal = "urxvtc" editor = "emacsclient" editor_cmd = editor @@ -388,7 +388,7 @@ globalkeys = awful.util.table.join( awful.key({ }, "Print", function () awful.util.spawn("scrot") 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, }, "w", ror("conkeror", "Conkeror")), @@ -524,6 +524,8 @@ awful.rules.rules = { properties = { fullscreen = true } }, { rule = { class = "Emacs" }, 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. -- { rule = { class = "Firefox" }, -- properties = { tag = tags[1][2] } },