mirror of
https://github.com/nix-community/home-manager
synced 2024-11-10 07:04:17 +00:00
gnome-terminal: Add audibleBell option (#1671)
Turn on/off the terminal's bell
This commit is contained in:
parent
bcbf09a202
commit
cd86c2638b
1 changed files with 7 additions and 0 deletions
|
@ -228,11 +228,18 @@ let
|
|||
</variablelist>
|
||||
'';
|
||||
};
|
||||
|
||||
audibleBell = mkOption {
|
||||
default = true;
|
||||
type = types.bool;
|
||||
description = "Turn on/off the terminal's bell.";
|
||||
};
|
||||
};
|
||||
});
|
||||
|
||||
buildProfileSet = pcfg:
|
||||
{
|
||||
audible-bell = pcfg.audibleBell;
|
||||
visible-name = pcfg.visibleName;
|
||||
scrollbar-policy = if pcfg.showScrollbar then "always" else "never";
|
||||
scrollback-lines = pcfg.scrollbackLines;
|
||||
|
|
Loading…
Reference in a new issue