diff options
-rw-r--r-- | awesome/.config/awesome/rc.lua | 4 | ||||
-rw-r--r-- | zathura/.config/zathura/zathurarc | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/awesome/.config/awesome/rc.lua b/awesome/.config/awesome/rc.lua index 6d21a5a..0eacf12 100644 --- a/awesome/.config/awesome/rc.lua +++ b/awesome/.config/awesome/rc.lua @@ -402,8 +402,8 @@ globalkeys = awful.util.table.join( -- Standard program awful.key({modkey, "Control"}, "r", awesome.restart), - -- Not needed / Too dangerous - --awful.key({modkey, "Shift"}, "q", awesome.quit), + awful.key({modkey, "Control"}, "q", awesome.quit), + -- Not needed awful.key({modkey}, "l", function() awful.tag.incmwfact(0.05) end), awful.key({modkey}, "h", function() awful.tag.incmwfact(-0.05) end), awful.key({modkey, "Shift"}, "h", function() awful.tag.incnmaster(1) end), diff --git a/zathura/.config/zathura/zathurarc b/zathura/.config/zathura/zathurarc index 9acce4a..c9730b4 100644 --- a/zathura/.config/zathura/zathurarc +++ b/zathura/.config/zathura/zathurarc @@ -26,6 +26,7 @@ set adjust-open width set incremental-search false set highlight-color \#3c3836 set highlight-active-color \#ebdbb2 +set recolor true set recolor-darkcolor \#ebdbb2 set recolor-lightcolor \#282828 set recolor-reverse-video false @@ -36,4 +37,4 @@ set selection-clipboard primary set index-bg \#282828 set index-fg \#98971a set index-active-bg \#3c3836 -set index-adjust-fg \#98971a +set index-active-fg \#98971a |