diff --git a/options.lua b/options.lua index c300a84..8f9c2d5 100644 --- a/options.lua +++ b/options.lua @@ -1,6 +1,6 @@ return { browser="firefox", - terminal="alacritty", + terminal="new-terminal", email="thomas@forgione.fr", email2="thomas@polymny.studio", } diff --git a/rc.lua b/rc.lua index 7dcb39b..c5426f8 100644 --- a/rc.lua +++ b/rc.lua @@ -428,7 +428,7 @@ globalkeys = awful.util.table.join( {description = "go back", group = "client"}), -- Standard program awful.key({ modkey, }, "Return", function () - awful.util.spawn_with_shell(terminal .. ' --title $(uuidgen)') + awful.util.spawn_with_shell(terminal) naughty.notify({title = "Starting " .. options.terminal}) end, {description = "open a terminal", group = "launcher"}),