terminal: don't use env variable to give a name to GTK terminal

GTK applications accept `--name` as a special parameter just for that.
This commit is contained in:
Vincent Bernat 2014-09-23 20:49:21 +02:00
parent 4cc87d1cce
commit dd693fc5e6
2 changed files with 2 additions and 3 deletions

View file

@ -3,7 +3,7 @@ local quake = loadrc("quake", "vbe/quake")
local quakeconsole = {}
for s = 1, screen.count() do
quakeconsole[s] = quake({ terminal = config.terminal,
argname = " ",
argname = "--name %s",
height = 0.3,
screen = s })
end