Set alacritty as default terminal emulator again
This commit is contained in:
parent
40b7e74d9a
commit
41251d17f2
|
@ -4,6 +4,7 @@
|
|||
# Programs
|
||||
./desktop/default.nix
|
||||
./shell/default.nix
|
||||
./alacritty/default.nix
|
||||
./emacs/default.nix
|
||||
./browser/default.nix
|
||||
# Services
|
||||
|
|
|
@ -101,7 +101,8 @@
|
|||
maxStripes = "1";
|
||||
showToolTips = "true";
|
||||
launchers = [
|
||||
"applications:org.kde.konsole.desktop"
|
||||
"preferred://filemanager"
|
||||
"applications:Alacritty.desktop"
|
||||
"applications:emacs.desktop"
|
||||
];
|
||||
};
|
||||
|
@ -231,8 +232,9 @@
|
|||
{
|
||||
inherit AccentColor;
|
||||
LastUsedCustomAccentColor = AccentColor;
|
||||
TerminalApplication = "konsole";
|
||||
TerminalService = "org.kde.konsole.desktop";
|
||||
TerminalApplication = if config.programs.alacritty.enable then "alacritty" else "konsole";
|
||||
TerminalService =
|
||||
if config.programs.alacritty.enable then "Alacritty.desktop" else "org.kde.konsole.desktop";
|
||||
};
|
||||
WM = {
|
||||
# TODO convert to base16 colours at some point
|
||||
|
|
Loading…
Reference in a new issue