1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-26 16:38:34 +02:00

gnome-terminal: enable VTE OSC7 support for bash and zsh

This commit is contained in:
Olli Helenius 2019-01-03 17:35:15 +02:00 committed by Robert Helgesson
parent 16946a6f00
commit b3d73e0aff
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89

View File

@ -6,6 +6,11 @@ let
cfg = config.programs.gnome-terminal;
vteInitStr = ''
# gnome-terminal: Show current directory in the terminal window title.
. ${pkgs.gnome3.vte}/etc/profile.d/vte.sh
'';
profileColorsSubModule = types.submodule (
{ ... }: {
options = {
@ -165,5 +170,8 @@ in
// mapAttrs' (n: v:
nameValuePair ("${dconfPath}/profiles:/:${n}") (buildProfileSet v)
) cfg.profile;
programs.bash.initExtra = mkBefore vteInitStr;
programs.zsh.initExtra = vteInitStr;
};
}