2024-07-26 23:07:07 +00:00
|
|
|
{pkgs, ...}: {
|
2024-04-04 23:56:40 +00:00
|
|
|
home.packages = with pkgs; [
|
|
|
|
libsixel # for displaying images
|
|
|
|
];
|
|
|
|
programs.foot = {
|
|
|
|
enable = true;
|
|
|
|
server.enable = true;
|
|
|
|
settings = {
|
|
|
|
main = {
|
|
|
|
# window settings
|
|
|
|
app-id = "foot";
|
|
|
|
title = "foot";
|
|
|
|
locked-title = "no";
|
|
|
|
term = "xterm-256color";
|
|
|
|
shell = "zsh";
|
|
|
|
|
|
|
|
# notifications
|
|
|
|
notify = "notify-send -a \${app-id} -i \${app-id} \${title} \${body}";
|
|
|
|
selection-target = "clipboard";
|
|
|
|
|
|
|
|
# font and font rendering
|
|
|
|
dpi-aware = false; # this looks more readable on a laptop, but it's unreasonably large
|
2024-06-10 16:23:46 +00:00
|
|
|
font = "Monaspace Krypton:size=11";
|
|
|
|
font-bold = "Monaspace Krypton:size=11";
|
|
|
|
};
|
|
|
|
|
|
|
|
colors = {
|
|
|
|
alpha = 0.9;
|
|
|
|
background = "191919";
|
|
|
|
foreground = "d8dee9";
|
2024-04-04 23:56:40 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
scrollback = {
|
|
|
|
lines = 10000;
|
|
|
|
multiplier = 3;
|
|
|
|
};
|
|
|
|
|
|
|
|
tweak = {
|
|
|
|
font-monospace-warn = "no"; # reduces startup time
|
|
|
|
sixel = "yes";
|
|
|
|
};
|
|
|
|
|
|
|
|
cursor = {
|
|
|
|
style = "beam";
|
|
|
|
beam-thickness = 2;
|
|
|
|
};
|
|
|
|
|
|
|
|
mouse = {
|
|
|
|
hide-when-typing = "yes";
|
|
|
|
};
|
|
|
|
|
|
|
|
url = {
|
|
|
|
launch = "xdg-open \${url}";
|
|
|
|
label-letters = "sadfjklewcmpgh";
|
|
|
|
osc8-underline = "url-mode";
|
|
|
|
protocols = "http, https, ftp, ftps, file";
|
|
|
|
uri-characters = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-_.,~:;/?#@!$&%*+=\"'()[]";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|