mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-08 09:24:17 +01:00
2bf9b54992
Manual invocation prevents automatically triggering a task complete notification when one isn't wanted.
37 lines
828 B
Nix
37 lines
828 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
programs.kitty = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
enable_audio_bell = false;
|
|
close_on_child_death = true;
|
|
cursor_blink_interval = 0;
|
|
|
|
open_url_with = "librewolf";
|
|
wayland_titlebar_color = "background";
|
|
|
|
allow_remote_control = true;
|
|
listen_on = "unix:/tmp/kitty";
|
|
dynamic_background_opacity = true;
|
|
|
|
window_padding_width = 5;
|
|
tab_bar_margin_width = 5;
|
|
};
|
|
|
|
extraConfig = with config.lib.stylix.colors; ''
|
|
tab_bar_background #${base00}
|
|
inactive_tab_background #${base00}
|
|
map F1 send_text all \x1afg;notify-send "$(pwd)" "Task Completed."\r
|
|
'';
|
|
};
|
|
|
|
xdg.configFile."kitty/diff.conf".text = ''
|
|
map d scroll_to next-page
|
|
map u scroll_to prev-page
|
|
map g scroll_to start
|
|
map G scroll_to end
|
|
'';
|
|
}
|