Restart Keybinding

- Change to match keybinding that
  session control script calls
This commit is contained in:
Sravan Balaji
2023-03-26 10:04:47 -04:00
parent d0262d3b58
commit 28244bbee6
2 changed files with 2 additions and 2 deletions

View File

@@ -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"}),

2
rc.lua
View File

@@ -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"}),