Revert "Change default terminal to foot (from alacritty)"

This reverts commit c3078cad8d.
This commit is contained in:
Evie Litherland-Smith 2025-01-31 15:43:26 +00:00
parent 0337f6a179
commit 10e0902cdc
3 changed files with 12 additions and 10 deletions

View file

@ -10,7 +10,7 @@
fields = "filename,name,generic,exec";
fuzzy = true;
filter-desktop = true;
terminal = "${config.programs.foot.package}/bin/foot -e";
terminal = "${config.programs.alacritty.package}/bin/alacritty -e";
anchor = "center";
layer = "overlay";
};

View file

@ -346,7 +346,7 @@
# Common program shortcuts
"SUPER, D, exec, ${config.programs.fuzzel.package}/bin/fuzzel"
"SUPER, C, exec, ${config.programs.foot.package}/bin/foot"
"SUPER, C, exec, ${config.programs.alacritty.package}/bin/alacritty"
"SUPER, E, exec, ${config.programs.emacs.finalPackage}/bin/emacs"
"SUPER, W, exec, ${config.programs.firefox.finalPackage}/bin/firefox"
"SUPER, F, exec, thunar"

View file

@ -1,16 +1,18 @@
{ ... }:
{
programs.foot = {
programs.alacritty = {
enable = true;
settings = {
main.pad = "5x5";
bell = {
urgent = false;
notify = false;
visual = false;
window = {
dynamic_title = true;
padding = {
x = 5;
y = 5;
};
cursor.blink = true;
mouse.hide-when-typing = true;
};
general.live_config_reload = true;
selection.save_to_clipboard = true;
mouse.hide_when_typing = true;
};
};
}