From 28244bbee6f3d4f2e455e8e5be3047dc7c0738a1 Mon Sep 17 00:00:00 2001 From: Sravan Balaji Date: Sun, 26 Mar 2023 10:04:47 -0400 Subject: [PATCH] Restart Keybinding - Change to match keybinding that session control script calls --- README.org | 2 +- rc.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.org b/README.org index 20bdc92..c123042 100644 --- a/README.org +++ b/README.org @@ -447,7 +447,7 @@ globalkeys = gears.table.join( -- Standard program awful.key({ modkey, "Shift" }, "Return", function () awful.spawn(terminal_cmd) end, {description = "open a terminal", group = "launcher"}), - awful.key({ modkey, "Control" }, "r", awesome.restart, + awful.key({ modkey, "Shift", "Control" }, "q", awesome.restart, {description = "reload awesome", group = "awesome"}), awful.key({ modkey, "Shift" }, "q", awesome.quit, {description = "quit awesome", group = "awesome"}), diff --git a/rc.lua b/rc.lua index 600e746..2796229 100644 --- a/rc.lua +++ b/rc.lua @@ -267,7 +267,7 @@ globalkeys = gears.table.join( -- Standard program awful.key({ modkey, "Shift" }, "Return", function () awful.spawn(terminal_cmd) end, {description = "open a terminal", group = "launcher"}), - awful.key({ modkey, "Control" }, "r", awesome.restart, + awful.key({ modkey, "Shift", "Control" }, "q", awesome.restart, {description = "reload awesome", group = "awesome"}), awful.key({ modkey, "Shift" }, "q", awesome.quit, {description = "quit awesome", group = "awesome"}),