fixed i3status-rust bar
This commit is contained in:
parent
e005ec1785
commit
dca146d6d0
1 changed files with 27 additions and 7 deletions
|
@ -48,25 +48,45 @@ in
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
block = "memory";
|
block = "memory";
|
||||||
display_type = "memory";
|
format = "$icon $mem_used_percents ";
|
||||||
format_mem = "{mem_used_percents}";
|
|
||||||
format_swap = "{swap_used_percents}";
|
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
block = "load";
|
block = "load";
|
||||||
interval = 1;
|
interval = 1;
|
||||||
format = "{1m}";
|
format = "$icon $1m";
|
||||||
}
|
}
|
||||||
|
{ block = "net"; }
|
||||||
|
{ block = "sound"; }
|
||||||
|
{ block = "uptime"; }
|
||||||
{
|
{
|
||||||
block = "battery";
|
block = "battery";
|
||||||
interval = 10;
|
interval = 10;
|
||||||
format = "{percentage} {time}";
|
format = "$icon $percentage $time";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
block = "taskwarrior";
|
||||||
|
interval = 60;
|
||||||
|
format = " $icon $count.eng(w:1) tasks ";
|
||||||
|
format_singular = " $icon 1 task ";
|
||||||
|
format_everything_done = "";
|
||||||
|
warning_threshold = 10;
|
||||||
|
critical_threshold = 20;
|
||||||
|
filters = [
|
||||||
|
{
|
||||||
|
name = "active";
|
||||||
|
filter = "+PENDING and ( +ACTIVE or +DUETODAY or +TODAY or +OVERDUE )";
|
||||||
|
}
|
||||||
|
];
|
||||||
}
|
}
|
||||||
{ block = "uptime"; }
|
|
||||||
{
|
{
|
||||||
block = "time";
|
block = "time";
|
||||||
interval = 60;
|
interval = 60;
|
||||||
format = "%Y-%m-%d %R";
|
format = " $icon $timestamp.datetime(f:'%Y-%m-%d %R', l:de_DE) ";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
block = "tea_timer";
|
||||||
|
format = " $icon {$minutes:$seconds |}";
|
||||||
|
done_cmd = "${pkgs.noti}/bin/noti 'Timer Finished'";
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue