alacritty fix

This commit is contained in:
Rachel Lambda Samuelsson 2024-06-04 00:34:58 +02:00
parent 9467e4cb8a
commit ceedbfdddb

View File

@ -440,19 +440,21 @@ in
window = { window = {
padding.x = 5; padding.x = 5;
padding.y = 5; padding.y = 5;
decoration = "none"; decorations = "None";
dynamic_title = false;
}; };
dynamic_title = false; mouse.hide_when_typing = true;
mouse_hide_when_typing = true;
draw_bold_text_with_bright_colors = false;
scrolling.history = 0; scrolling.history = 0;
font = { font = {
normal.family = "SAX2 Nerd Font"; normal.family = "SAX2 Nerd Font";
size = 11; size = 11;
}; };
colors = { colors = {
background = "#1d1f21"; draw_bold_text_with_bright_colors = false;
foreground = "#c5c8c6"; primary = {
background = "#1d1f21";
foreground = "#c5c8c6";
};
}; };
shell.program = shell.program =
let tmux-menu = pkgs.writeScript "tmux-menu" '' let tmux-menu = pkgs.writeScript "tmux-menu" ''
@ -469,7 +471,7 @@ in
read -p "Name? " -r n read -p "Name? " -r n
${pkgs.tmux}/bin/tmux new -s "$n" ;; ${pkgs.tmux}/bin/tmux new -s "$n" ;;
"Raw Shell") "Raw Shell")
${pkgs.bash}/bin/bash --login ;; ${pkgs.bashInteractive}/bin/bash --login ;;
*) *)
${pkgs.tmux}/bin/tmux attach-session -t "''${c%%:*}" ;; ${pkgs.tmux}/bin/tmux attach-session -t "''${c%%:*}" ;;
esac esac