gnunn1 / tilix

A tiling terminal emulator for Linux using GTK+ 3
https://gnunn1.github.io/tilix-web
Mozilla Public License 2.0
5.39k stars 294 forks source link

Excluding Tilix Quake windows from "On New Instance: Focus Window" #1866

Open DougBeney opened 4 years ago

DougBeney commented 4 years ago

I have a habit of having open a million different forgotten terminal windows so I was very pleased to find the "On New Instance: Focus Window" option.

In my opinion though, Tilix Quake windows should be excluded from taking focus with this option, or there should be an option for this. Kind of confusing to explain, so you might get a better idea of what I mean with this pseudo code.

if a Tilix window is open AND the Tilix window is NOT in Quake mode {
    focus_window();
} else {
    create_new_tilix_window();
}

or...

If a Tilix window is NOT open or the Tilix window that is open is in Quake mode {
    create_new_tilix_window();
} else {
    focus_window();
}
tuberry commented 4 years ago

Great idea. It's precisely what I wanted.