diff options
author | Peter Palfrader <peter@palfrader.org> | 2019-03-27 10:41:38 +0100 |
---|---|---|
committer | Peter Palfrader <peter@palfrader.org> | 2019-03-27 10:41:38 +0100 |
commit | 3283784f25be940d6ba698e8a6d771f983177fea (patch) | |
tree | ffb0763a4d667e87f672818438b3a14965e24d78 | |
parent | e7811fe212ab6b249525fc801e84923ef3a7c1f1 (diff) |
more hotkeys
-rw-r--r-- | config/awesome/rc.lua | 1 | ||||
-rw-r--r-- | config/awesome/weasel-rules.lua | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/config/awesome/rc.lua b/config/awesome/rc.lua index 4e07d75..6ac76cb 100644 --- a/config/awesome/rc.lua +++ b/config/awesome/rc.lua @@ -347,6 +347,7 @@ globalkeys = awful.util.table.join( awful.key({ modkey }, "m", function () awful.util.spawn_with_shell("xterm-mail") end), awful.key({ modkey, "Shift" }, "m", function () awful.util.spawn_with_shell("xterm-mail-cosy") end), awful.key({ modkey }, "i", function () awful.util.spawn_with_shell("xterm-irc") end), + awful.key({ modkey }, "b", function () awful.util.spawn_with_shell("urxvt -e bash") end), -- awful.key({ modkey }, "k", function () awful.util.spawn_with_shell("keepassx") end), awful.key({ modkey }, "c", function () awful.util.spawn_with_shell("ch") end), diff --git a/config/awesome/weasel-rules.lua b/config/awesome/weasel-rules.lua index 2ebd7d8..f6f80a2 100644 --- a/config/awesome/weasel-rules.lua +++ b/config/awesome/weasel-rules.lua @@ -48,6 +48,8 @@ function get_weasel_rules() properties = { screen = im_screen, tag = '21' } }, { rule = { class = "Keepassx" , name = "KeePassX" }, properties = { screen = im_screen, tag = '22' } }, + { rule = { class = "keepassxc" , name = "KeePassXC" }, + properties = { screen = im_screen, tag = '22' } }, --{ rule = { maximized_horizontal = true }, -- these two should remove window borders from maximized windows because they get in the way -- properties = { border_width = 0 } }, |