Package: gnome-shell-extension-tilix-dropdown Version: 5.1-1 Severity: important Tags: patch
Since version 1.7.7 tilix does not support quake mode on Wayland (see https://github.com/gnunn1/tilix/issues/1314), but Wayland is the default on Gnome. I think this package should (1) depend on an older version of tilix or (2) execute tilix on the x11 backend. The attached patch implements solution (2), however having it as preference option would be better. -- System Information: Debian Release: buster/sid APT prefers unstable APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable'), (1, 'experimental') Architecture: amd64 (x86_64) Foreign Architectures: i386, armhf Kernel: Linux 4.15.0-1-amd64 (SMP w/8 CPU cores) Locale: LANG=it_IT.UTF-8, LC_CTYPE=it_IT.UTF-8 (charmap=UTF-8), LANGUAGE=it_IT.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /usr/bin/dash Init: systemd (via /run/systemd/system) LSM: AppArmor: enabled Versions of packages gnome-shell-extension-tilix-dropdown depends on: ii gnome-shell 3.28.0-1 ii tilix 1.7.7-1 gnome-shell-extension-tilix-dropdown recommends no packages. gnome-shell-extension-tilix-dropdown suggests no packages. -- no debconf information -- debsums errors found: debsums: changed file /usr/share/gnome-shell/extensions/TilixDropdown@ivku...@gmail.com/extension.js (from gnome-shell-extension-tilix-dropdown package)
--- /usr/share/gnome-shell/extensions/TilixDropdown@ivku...@gmail.com/extension.js.orig 2018-03-19 07:26:05.766147868 +0100 +++ /usr/share/gnome-shell/extensions/TilixDropdown@ivku...@gmail.com/extension.js 2018-03-19 07:21:38.881555543 +0100 @@ -40,7 +40,7 @@ function _startTilix() { try { - Main.Util.trySpawnCommandLine('tilix --quake'); + Main.Util.trySpawnCommandLine('env GDK_BACKEND=x11 tilix --quake'); } catch(err) { Main.notify("Couldn't start tilix, is it installed?"); }