aboutsummaryrefslogtreecommitdiffstats
path: root/.config/awesome/rc.lua
diff options
context:
space:
mode:
authorshmibs <shmibs@gmail.com>2014-01-23 19:12:50 -0700
committershmibs <shmibs@gmail.com>2014-01-23 19:12:50 -0700
commit109744b2114c1966644638a15b1edae40a4290e2 (patch)
tree2a5f636b28adde7b8f244efa02c4299091604969 /.config/awesome/rc.lua
parent399d85d8f58b27e261f27040483a945d6b9659c0 (diff)
downloaddotfiles-109744b2114c1966644638a15b1edae40a4290e2.tar.gz
make dmenu read colours from awesome theme
also added cbz/cbr to rifle
Diffstat (limited to '.config/awesome/rc.lua')
-rw-r--r--.config/awesome/rc.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua
index 662c79b..eb00e9d 100644
--- a/.config/awesome/rc.lua
+++ b/.config/awesome/rc.lua
@@ -311,7 +311,7 @@ globalkeys = awful.util.table.join(
awful.key({ modkey, "Shift" }, "x", function () awful.util.spawn_with_shell("mcomix") end),
awful.key({ modkey, "Shift" }, "s", function () awful.util.spawn_with_shell("pavucontrol") end),
awful.key({ modkey, "Shift" }, "t", function () awful.util.spawn_with_shell("transmission-gtk") end),
- awful.key({ modkey, }, "#19", function () awful.util.spawn_with_shell("dmenu_run -fn \"TI Calc Fonts Clean-8\" -h 16 -nb \"#2d2d2d\" -nf \"#dcdcdc\" -sb \"#d64937\" -sf \"#fcfcfc\"") end),
+ awful.key({ modkey, }, "#19", function () awful.util.spawn_with_shell("dmenu_run -fn \"TI Calc Fonts Clean-8\" -h 16 -nb \"" .. beautiful.bg_normal .. "\" -nf \"" .. beautiful.fg_normal .. "\" -sb \"" .. beautiful.bg_focus .. "\" -sf \"" .. beautiful.fg_focus .. "\"") end),
awful.key({ }, "Print", function () awful.util.spawn_with_shell("mate-screenshot") end),
-- bindings for quick access to folders
@@ -358,6 +358,7 @@ globalkeys = awful.util.table.join(
end),
awful.key({ modkey, "Shift" }, "space", function ()
awful.layout.inc(layouts, -1)
+ end),
-- restart
awful.key({ modkey, "Control" }, "r", awesome.restart)
)