From 93adeec81adc11aca58bd28b1b0a5940c2afbaf8 Mon Sep 17 00:00:00 2001 From: Christophe Simon Date: Tue, 15 Oct 2013 15:52:28 +0200 Subject: [PATCH] Reversed client change keys. Disabled blueman. --- Xsession | 2 +- rc/keys.lua | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Xsession b/Xsession index ff83592..c82da4d 100755 --- a/Xsession +++ b/Xsession @@ -33,7 +33,7 @@ export GPG_AGENT_INFO # Starts polkit dependant services /usr/bin/nm-applet & -/usr/bin/blueman-applet & +#/usr/bin/blueman-applet & # Starts urxvtd server /usr/bin/urxvtd -q -o -f diff --git a/rc/keys.lua b/rc/keys.lua index 5eae844..76513b0 100644 --- a/rc/keys.lua +++ b/rc/keys.lua @@ -32,14 +32,14 @@ global_keys = awful.util.table.join( awful.key({ modkey, "Control" }, "c", function () awful.tag.incncol(1) end), -- Remapped J - awful.key({ modkey, }, "t", function () utils.client.viewnext(1) end), - awful.key({ modkey, "Shift" }, "t", function () awful.client.swap.byidx(1) end), - awful.key({ modkey, "Control" }, "t", function () awful.screen.focus_relative(1) end), + awful.key({ modkey, }, "t", function () utils.client.viewnext(-1) end), + awful.key({ modkey, "Shift" }, "t", function () awful.client.swap.byidx(-1) end), + awful.key({ modkey, "Control" }, "t", function () awful.screen.focus_relative(-1) end), -- Remapped K - awful.key({ modkey, }, "s", function () utils.client.viewnext(-1) end), - awful.key({ modkey, "Shift" }, "s", function () awful.client.swap.byidx( -1) end), - awful.key({ modkey, "Control" }, "s", function () awful.screen.focus_relative(-1) end), + awful.key({ modkey, }, "s", function () utils.client.viewnext(1) end), + awful.key({ modkey, "Shift" }, "s", function () awful.client.swap.byidx(1) end), + awful.key({ modkey, "Control" }, "s", function () awful.screen.focus_relative(1) end), -- Remapped L awful.key({ modkey, }, "r", function () awful.tag.incmwfact(0.05) end),