From 9c14370dd82875fbf571cc70a65b0ef52b3e7cde Mon Sep 17 00:00:00 2001 From: Wilfried OLLIVIER Date: Wed, 1 Mar 2023 15:39:53 +0100 Subject: [PATCH] Prefer alacritty for the drop term --- rc.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rc.lua b/rc.lua index 57a3576..4dfb8fe 100644 --- a/rc.lua +++ b/rc.lua @@ -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,