Transparência de fundo para o terminal Gnome

1

Estou tentando fazer com que a transparência funcione no Terminal do Gnome.

No entanto, isso é o que eu recebo quando tento editar o perfil do gnome-temrinal: não há uma guia de plano de fundo em que eu possa definir a opacidade!

Estou usando o NixOs, isso é o que eu tenho no meu arquivo pkgs.nix:

environment.systemPackages = with pkgs; [
    # ...
    gnome3.gnome_terminal
    gnome3.gconf    # I have put it just in case it could help
]

Alguma ideia do que devo instalar ou configurar para desbloquear a opção de transparência de plano de fundo?

    
por Stephane Rolland 08.12.2017 / 17:12

1 resposta

2

A FAQ do terminal do GNOME declara:

How can I make the terminal transparent?

Since version 3.7 (NixOS master currently contains version 3.26) this option has been removed from the Preferences dialogue. You can however still get the same effect by setting the _NET_WM_WINDOW_OPACITY X property, for example with the Devil's Pie or Devil's Pie II tools. E.g., set up Devil's Pie to start automatically with the session, and create the file ~/.devilspie/gnome-terminal.ds with these contents:

(if (matches (window_name) "gnome-terminal-window-*") (opacity 90) )

You can also use this shell script that however only works for existing terminal windows and not automatically for newly created ones. - https://wiki.gnome.org/Apps/Terminal/FAQ#How_can_I_make_the_terminal_transparent.3F

    
por 08.12.2017 / 17:32