diff options
author | Revaz Nakhutsrishvili <r@revaz.xyz> | 2025-04-30 14:49:46 +0400 |
---|---|---|
committer | Revaz Nakhutsrishvili <r@revaz.xyz> | 2025-04-30 14:49:46 +0400 |
commit | 9aa47b84e58988454988e90c95b61ca20cf6c86b (patch) | |
tree | 4cc3a2df67dd61a58fc1f9ed66c9b9f0c79c7861 /i3status-rust/.config | |
parent | 0b2424eb0db05c282569bce36c422fc77c88ad5d (diff) |
i3status-rust: initialize config from package example
Diffstat (limited to 'i3status-rust/.config')
-rw-r--r-- | i3status-rust/.config/i3status-rust/config.toml | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/i3status-rust/.config/i3status-rust/config.toml b/i3status-rust/.config/i3status-rust/config.toml new file mode 100644 index 0000000..e913363 --- /dev/null +++ b/i3status-rust/.config/i3status-rust/config.toml @@ -0,0 +1,45 @@ +icons_format = "{icon}" + +[theme] +theme = "solarized-dark" +[theme.overrides] +idle_bg = "#123456" +idle_fg = "#abcdef" + +[icons] +icons = "awesome4" +[icons.overrides] +bat = ["|E|", "|_|", "|=|", "|F|"] +bat_charging = "|^| " + +[[block]] +block = "cpu" +info_cpu = 20 +warning_cpu = 50 +critical_cpu = 90 + +[[block]] +block = "disk_space" +path = "/" +info_type = "available" +alert_unit = "GB" +interval = 20 +warning = 20.0 +alert = 10.0 +format = " $icon root: $available.eng(w:2) " + +[[block]] +block = "memory" +format = " $icon $mem_total_used_percents.eng(w:2) " +format_alt = " $icon_swap $swap_used_percents.eng(w:2) " + +[[block]] +block = "sound" +[[block.click]] +button = "left" +cmd = "pavucontrol" + +[[block]] +block = "time" +interval = 5 +format = " $timestamp.datetime(f:'%a %d/%m %R') " |