Prefer alacritty for the drop term

This commit is contained in:
Wilfried OLLIVIER 2023-03-01 15:39:53 +01:00
parent 18bd4daa23
commit 9c14370dd8
1 changed files with 1 additions and 1 deletions

2
rc.lua
View File

@ -279,7 +279,7 @@ globalkeys = gears.table.join(
-- Standard program
awful.key({ mod4 }, "Return", function() awful.spawn(terminal) end,
{ description = "open a terminal", group = "launcher" }),
awful.key({ mod4, "Shift" }, "Return", function() awful.spawn("tdrop -ma -w -4 " .. terminal) end,
awful.key({ mod4, "Shift" }, "Return", function() awful.spawn("tdrop -ma -w -4 " .. "alacritty") end,
{ description = "toggle scratchpad", group = "launcher" }),
awful.key({ modkey, "Control" }, "r", awesome.restart,