Files
nixos/modules/scripts/btm.nix
T

17 lines
338 B
Nix

{
writeShellApplication,
kitty,
bottom,
...
}:
writeShellApplication {
name = "custom-bottom";
runtimeInputs = [
kitty
bottom
];
text = ''
kitty --class "custom-bottom" -o font_size=10 --name "custom-bottom" -e btm --theme gruvbox --disable-click --disable_advanced_kill --enable_cache_memory -g -R -T
'';
}