Compare commits

...
This repository has been archived on 2024-07-03. You can view files and clone it, but cannot push or open issues or pull requests.

3 commits

Author SHA1 Message Date
Evie Litherland-Smith a0b31eddaa Merge branch 'main' into add_niri_compositor 2024-05-27 16:32:58 +01:00
Evie Litherland-Smith 28699d2b27 Add extra fuzzel config 2024-05-27 14:40:23 +01:00
Evie Litherland-Smith a8cab26188 Start on adding Niri wayland compositor
Add some initial config for Fuzzel (dmenu replacement) and
Foot (terminal emulator)
2024-05-27 12:29:35 +01:00
2 changed files with 54 additions and 0 deletions

View file

@ -0,0 +1,6 @@
{
config,
lib,
pkgs,
...
}: {}

View file

@ -0,0 +1,48 @@
{
config,
fonts,
...
}: {
programs.foot = {
enable = true;
server.enable = true;
settings = {
main = {
# term = "xterm-256color";
title = "foot";
locked-title = "no";
font = "${fonts.monospace.name}:size=${toString fonts.sizes.applications}";
dpi-aware = "yes";
pad = "10x10";
};
bell = {
urgent = "no";
notify = "no";
visual = "no";
};
cursor = {blink = "yes";};
mouse = {hide-when-typing = "yes";};
colors = with config.scheme; rec {
alpha = 0.9;
background = base00;
foreground = base05;
regular0 = base02;
regular1 = red;
regular2 = green;
regular3 = yellow;
regular4 = blue;
regular5 = magenta;
regular6 = cyan;
regular7 = base05;
bright0 = base03;
bright1 = regular1;
bright2 = regular2;
bright3 = regular3;
bright4 = regular4;
bright5 = regular5;
bright6 = regular6;
bright7 = base04;
};
};
};
}