diff options
author | Peter Palfrader <peter@palfrader.org> | 2021-08-30 14:10:47 +0200 |
---|---|---|
committer | Peter Palfrader <peter@palfrader.org> | 2021-08-30 14:10:47 +0200 |
commit | 6123a331f80c928c755f1404407c77b85054d8a3 (patch) | |
tree | 7ea9696155a8104183181939bffb73f98979e23c | |
parent | 0f954c6cbd19080b1cf9253c64466d3af10dd586 (diff) |
awesome updates
-rw-r--r-- | config/awesome/rc.lua | 4 | ||||
-rw-r--r-- | config/awesome/weasel-rules.lua | 4 |
2 files changed, 7 insertions, 1 deletions
diff --git a/config/awesome/rc.lua b/config/awesome/rc.lua index 800ca24..12d4339 100644 --- a/config/awesome/rc.lua +++ b/config/awesome/rc.lua @@ -344,10 +344,11 @@ globalkeys = awful.util.table.join( awful.key({ modkey }, "x", function () awful.spawn.with_shell("urxvt") end), awful.key({ modkey, "Shift" }, "x", function () awful.spawn.with_shell("urxvt -title FURxvt") end), + awful.key({ modkey, "Ctrl" }, "x", function () awful.spawn.with_shell("urxvt -xrm 'URxvt.perl-ext-common:default'") end), + awful.key({ modkey }, "b", function () awful.spawn.with_shell("urxvt -e bash") end), awful.key({ modkey }, "m", function () awful.spawn.with_shell("xterm-mail") end), awful.key({ modkey, "Shift" }, "m", function () awful.spawn.with_shell("xterm-mail-cosy") end), awful.key({ modkey }, "i", function () awful.spawn.with_shell("xterm-irc") end), - awful.key({ modkey }, "b", function () awful.spawn.with_shell("urxvt -e bash") end), -- awful.key({ modkey }, "k", function () awful.spawn.with_shell("keepassx") end), awful.key({ modkey }, "c", function () awful.spawn.with_shell("ch") end), @@ -493,6 +494,7 @@ clientkeys = awful.util.table.join( -- end), awful.key({ modkey, }, "e", function (c) c.fullscreen = not c.fullscreen end), + awful.key({ modkey, }, "r", function (c) awful.titlebar.toggle(c) end), awful.key({ modkey, }, "q", function (c) c.maximized_horizontal = not c.maximized_horizontal end), awful.key({ modkey, }, "a", function (c) c.maximized_vertical = not c.maximized_vertical end), awful.key({ modkey, }, "z", diff --git a/config/awesome/weasel-rules.lua b/config/awesome/weasel-rules.lua index c5a1280..73d0ed1 100644 --- a/config/awesome/weasel-rules.lua +++ b/config/awesome/weasel-rules.lua @@ -8,6 +8,8 @@ function get_weasel_rules() { rule = { class = "zoom" }, properties = { above = false } }, + { rule = { class = "Xmessage" }, + properties = { floating = true } }, { rule = { class = "plasmashell" }, properties = { floating = true } }, { rule = { class = "Matplotlib" }, @@ -27,6 +29,8 @@ function get_weasel_rules() { rule = { class = "surfgui" }, properties = { floating = true } }, + { rule = { class = "capopgui" }, + properties = { floating = true } }, { rule = { class = "Firefox" , name = "Mozilla Firefox" }, properties = { screen = browser_screen, tag = '12', |