alacritty fix
This commit is contained in:
parent
9467e4cb8a
commit
ceedbfdddb
|
@ -440,20 +440,22 @@ 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;
|
};
|
||||||
draw_bold_text_with_bright_colors = false;
|
mouse.hide_when_typing = true;
|
||||||
scrolling.history = 0;
|
scrolling.history = 0;
|
||||||
font = {
|
font = {
|
||||||
normal.family = "SAX2 Nerd Font";
|
normal.family = "SAX2 Nerd Font";
|
||||||
size = 11;
|
size = 11;
|
||||||
};
|
};
|
||||||
colors = {
|
colors = {
|
||||||
|
draw_bold_text_with_bright_colors = false;
|
||||||
|
primary = {
|
||||||
background = "#1d1f21";
|
background = "#1d1f21";
|
||||||
foreground = "#c5c8c6";
|
foreground = "#c5c8c6";
|
||||||
};
|
};
|
||||||
|
};
|
||||||
shell.program =
|
shell.program =
|
||||||
let tmux-menu = pkgs.writeScript "tmux-menu" ''
|
let tmux-menu = pkgs.writeScript "tmux-menu" ''
|
||||||
s="$(tmux ls 2>/dev/null)"
|
s="$(tmux ls 2>/dev/null)"
|
||||||
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue
Block a user