mirror of
https://github.com/vincentbernat/i3wm-configuration.git
synced 2025-06-21 17:39:00 +02:00
With a custom compilation. It supports more stuff than xfce4-terminal, notably italics. There are still a lot to do to have something as nice as rxvt... Should be compiled with GTK3, otherwise, it will have the same problems than xfce4-terminal.
15 lines
434 B
Lua
15 lines
434 B
Lua
local quake = loadrc("quake", "vbe/quake")
|
|
|
|
local quakeconsole = {}
|
|
for s = 1, screen.count() do
|
|
quakeconsole[s] = quake({ terminal = config.terminal,
|
|
argname = " ",
|
|
height = 0.3,
|
|
screen = s })
|
|
end
|
|
|
|
config.keys.global = awful.util.table.join(
|
|
config.keys.global,
|
|
awful.key({ modkey }, "`",
|
|
function () quakeconsole[mouse.screen]:toggle() end,
|
|
"Toggle Quake console"))
|