Switch back to alacritty as primary terminal
This commit is contained in:
parent
7e92a3e068
commit
e980eb167b
|
@ -17,10 +17,10 @@
|
|||
fuzzy = true;
|
||||
filter-desktop = true;
|
||||
terminal = with config.programs; "${
|
||||
if foot.enable
|
||||
then foot.package
|
||||
else pkgs.foot
|
||||
}/bin/foot -e";
|
||||
if alacritty.enable
|
||||
then alacritty.package
|
||||
else pkgs.alacritty
|
||||
}/bin/alacritty -e";
|
||||
lines = 24;
|
||||
width = 80;
|
||||
tabs = 4;
|
||||
|
|
|
@ -56,7 +56,7 @@ binds {
|
|||
Mod+F1 { spawn "swaylockfx"; }
|
||||
Mod+P { spawn "wlogout"; }
|
||||
Mod+D { spawn "fuzzel"; }
|
||||
Mod+Return { spawn "foot"; }
|
||||
Mod+Return { spawn "alacritty"; }
|
||||
Mod+Shift+Return { spawn "emacsclient" "-c"; }
|
||||
|
||||
XF86AudioRaiseVolume allow-when-locked=true { spawn "volumectl" "-u" "+" "5"; }
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
};
|
||||
};
|
||||
modifier = "Mod4";
|
||||
terminal = "${config.programs.foot.package}/bin/foot";
|
||||
terminal = "${config.programs.alacritty.package}/bin/alacritty";
|
||||
menu = "${config.programs.fuzzel.package}/bin/fuzzel";
|
||||
workspaceAutoBackAndForth = true;
|
||||
bars = [];
|
||||
|
|
|
@ -71,6 +71,7 @@
|
|||
"max-length" = 50;
|
||||
"rewrite" = {
|
||||
"(.*) - GNU Emacs at (.*)" = " $1 [$2]";
|
||||
"(alacritty.*)" = " $1";
|
||||
"(foot.*)" = " $1";
|
||||
"(.*) - mpv" = " $1";
|
||||
"swayimg: (.*)" = " $1";
|
||||
|
|
Reference in a new issue