refactor
This commit is contained in:
parent
66c05f9093
commit
45d6f4b0f3
205 changed files with 9040 additions and 342 deletions
20
modules/nixos/desktop/addons/foot/default.nix
Normal file
20
modules/nixos/desktop/addons/foot/default.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
{ options, config, lib, pkgs, ... }:
|
||||
|
||||
with lib;
|
||||
with lib.plusultra;
|
||||
let cfg = config.plusultra.desktop.addons.foot;
|
||||
in
|
||||
{
|
||||
options.plusultra.desktop.addons.foot = with types; {
|
||||
enable = mkBoolOpt false "Whether to enable the gnome file manager.";
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
plusultra.desktop.addons.term = {
|
||||
enable = true;
|
||||
pkg = pkgs.foot;
|
||||
};
|
||||
|
||||
plusultra.home.configFile."foot/foot.ini".source = ./foot.ini;
|
||||
};
|
||||
}
|
50
modules/nixos/desktop/addons/foot/foot.ini
Normal file
50
modules/nixos/desktop/addons/foot/foot.ini
Normal file
|
@ -0,0 +1,50 @@
|
|||
###########################################
|
||||
#░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░#
|
||||
#░░█▀█░█░░░█░█░█▀▀░░░█░█░█░░░▀█▀░█▀▄░█▀█░░#
|
||||
#░░█▀▀░█░░░█░█░▀▀█░░░█░█░█░░░░█░░█▀▄░█▀█░░#
|
||||
#░░▀░░░▀▀▀░▀▀▀░▀▀▀░░░▀▀▀░▀▀▀░░▀░░▀░▀░▀░▀░░#
|
||||
#░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░#
|
||||
###########################################
|
||||
|
||||
[main]
|
||||
font=Hack Nerd Font Mono:size=12
|
||||
#,Noto Color Emoji:size=12
|
||||
line-height=14
|
||||
underline-offset=2
|
||||
pad=20x4 center
|
||||
term=xterm-256color
|
||||
|
||||
[scrollback]
|
||||
lines=2000
|
||||
|
||||
[url]
|
||||
protocols=http,https,ftp,ftps,file,gemini,gopher,mailto
|
||||
|
||||
[cursor]
|
||||
blink=yes
|
||||
|
||||
[colors]
|
||||
# Nord
|
||||
foreground=D8DEE9
|
||||
background=2E3440
|
||||
|
||||
regular0=2E3440
|
||||
regular1=BF616A
|
||||
regular2=A3BE8C
|
||||
regular3=EBCB8B
|
||||
regular4=81A1C1
|
||||
regular5=B48EAD
|
||||
regular6=88C0D0
|
||||
regular7=E5E9F0
|
||||
|
||||
bright0=4C566A
|
||||
bright1=BF616A
|
||||
bright2=A3BE8C
|
||||
bright3=EBCB8B
|
||||
bright4=8FBCBB
|
||||
bright5=B48EAD
|
||||
bright6=8FBCBB
|
||||
bright7=ECEFF4
|
||||
|
||||
[csd]
|
||||
size=0
|
Loading…
Add table
Add a link
Reference in a new issue