Skip to content
Jason Smythe edited this page Jul 2, 2018 · 6 revisions

Introduction

Tilix supports running in a Quake-style mode where it appears at the top of the screen and can be toggled on or off as needed. However, unlike other terminal emulators that support this mode Tilix does not register a global hot key. Instead you must register a hot key yourself with the Desktop Environment you are using, this is required because Wayland does not support global hot keys.

When you register the hot key, simply bind it to the following command:

tilix --quake

When Tilix is run with the --quake switch, it will check if a quake style window is already running and if so simply toggle the window's visibility. If no quake style window has been created, then Tilix will create one and display it.

Configuring this hot key for GNOME is quite simple, simply open the Keyboard settings and configure a hot key as per the example in the screenshot below:

Wayland

To use with Wayland you need to change the command above to:

env GDK_BACKEND=x11 tilix --quake

There is a limitation with Wayland: the setting to use a monitor other than the primary monitor is disabled. This is because Wayland does not support moving a window programmatically between monitors.