dendritic: rewrote entire config

This commit is contained in:
2026-05-23 20:18:11 +02:00
parent a93284ff80
commit c8ee6d85fe
190 changed files with 6764 additions and 8101 deletions
+13
View File
@@ -0,0 +1,13 @@
{ ... }: {
flake.packages.custom-bottom = { pkgs, ... }:
pkgs.writeShellApplication {
name = "custom-bottom";
runtimeInputs = with pkgs; [
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
'';
};
}