home/bottom: don't show temperature sensor data

This commit is contained in:
2025-05-04 14:06:13 +02:00
parent 07ef7a596a
commit e55dcc2584

View File

@@ -2,6 +2,40 @@
{
programs.bottom = {
enable = true;
settings.flags.enable_gpu = true;
settings = {
flags.enable_gpu = true;
row = [
{
ratio = 30;
child = [{ type = "cpu"; }];
}
{
ratio = 40;
child = [
{
ratio = 4;
type = "mem";
}
{
ratio = 3;
type = "disk";
}
];
}
{
ratio = 30;
child = [
{
type = "net";
}
{
default = true;
type = "proc";
}
];
}
];
};
};
}
}