terminator: use dontWrapGApps
to fix desktop icon
Terminator is currently wrapped twice, which makes the python hook use a wrapped executable name to set argv[0]. As a result, Terminator can't be matched to its desktop entry and fails to group correctly in e.g. the GNOME app launcher. Ensuring we only wrap the executable once solves this.
This commit is contained in:
parent
50ff5c608a
commit
5bee472a9b
1 changed files with 6 additions and 0 deletions
|
@ -56,6 +56,12 @@ python3.pkgs.buildPythonApplication rec {
|
|||
|
||||
doCheck = false;
|
||||
|
||||
dontWrapGApps = true;
|
||||
|
||||
preFixup = ''
|
||||
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Terminal emulator with support for tiling and tabs";
|
||||
longDescription = ''
|
||||
|
|
Loading…
Reference in a new issue