vanadium/kitty: use elementary bell sound

This commit is contained in:
Primrose 2025-11-28 10:32:08 +08:00
parent ac16353721
commit ec6bf2312f
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA
2 changed files with 7 additions and 2 deletions

View file

@ -22,7 +22,6 @@
}; };
# TODO: open an issue, why are the types inconsistent? ew. # TODO: open an issue, why are the types inconsistent? ew.
# TODO: kitty doesn't react to this, which is annoying
gtk2.extraConfig = '' gtk2.extraConfig = ''
gtk-sound-theme-name = "elementary" gtk-sound-theme-name = "elementary"
''; '';

View file

@ -123,6 +123,7 @@
# audio utilities # audio utilities
pkgs.helvum pkgs.helvum
pkgs.pavucontrol pkgs.pavucontrol
pkgs.pantheon.elementary-sound-theme
]; ];
programs = { programs = {
@ -162,7 +163,12 @@
kitty = { kitty = {
enable = true; enable = true;
font.size = 12; # sweet spot for framework 13 font.size = 12; # sweet spot for framework 13
settings.shell = lib.getExe config.programs.fish.package; settings = {
shell = lib.getExe config.programs.fish.package;
# https://github.com/kovidgoyal/kitty/issues/1866
# https://sw.kovidgoyal.net/kitty/conf/#terminal-bell
linux_bell_theme = "elementary";
};
}; };
chromium.enable = true; chromium.enable = true;