$linuxjunkies
>

tilix(1)

Tilix is a tiling terminal emulator for Linux that supports splitting panes, tabs, and session management.

UbuntuDebianFedoraArch

Synopsis

tilix [OPTION]... [FILE]...

Description

Tilix is a modern terminal emulator that combines the functionality of a traditional terminal with tiling window management. It allows users to split the terminal into multiple panes both horizontally and vertically, organize terminals into tabs, and save/restore sessions. Built with GTK+ 3, it integrates well with GNOME and other desktop environments.

Tilix supports advanced features like custom color schemes, drag-and-drop pane management, synchronized input across panes, and a comprehensive scripting/automation interface via D-Bus. It can be used as a replacement for tmux or screen for terminal multiplexing.

Common options

FlagWhat it does
-h, --helpshow help message and exit
-v, --versionprint version information
-w, --working-directory DIRset the working directory for new terminal
-e, --execute COMMANDexecute a command in the terminal instead of starting shell
-t, --title TITLEset the terminal window title
-s, --session FILEload a saved session file
-l, --list-sessionslist available saved sessions
-p, --profile PROFILEuse a specific profile for the terminal
-m, --maximizemaximize the window on startup
-f, --full-screenstart in fullscreen mode
--new-processrun tilix in a new process instead of reusing existing instance

Examples

launch tilix terminal emulator with default settings

tilix

open tilix and immediately run htop command

tilix -e 'htop'

open tilix in the projects directory with a custom window title

tilix -w /home/user/projects -t 'Dev Session'

restore a previously saved session from a file

tilix -s my-session.json

launch tilix using a specific color profile named 'dark-theme'

tilix -p dark-theme

open tilix window maximized

tilix -m

open a new tilix instance and connect to remote host via SSH

tilix --new-process -e 'bash -c "ssh user@host"'