configurer the rgb macropad

This commit is contained in:
Tomas Rivera
2026-03-07 16:48:55 +01:00
parent 5ca96feadb
commit 650fd3a1a7
5 changed files with 383 additions and 3 deletions
+12
View File
@@ -0,0 +1,12 @@
{ 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
'';
}