Last active
February 3, 2023 15:51
-
-
Save gmdias727/5c93ed17554d51c049d89047121f779d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
order += "tztime local" | |
order += "disk /" | |
order += "cpu_usage" | |
order += "battery 0" | |
order += "memory" | |
tztime local { format = "๐ Hour: %l:%M:%S ๐ Date:%d-%m-%Y" } | |
general { | |
colors = true | |
color_good = "#a3be8c" | |
color_bad = "#bf616a" | |
color_degraded = "#ebcb8b" | |
interval = 2 | |
} | |
disk "/" { | |
format = "๐ Disk Usage: %percentage_used" | |
} | |
cpu_usage { | |
format = "CPU_0๐: %cpu0 CPU_1๐: %cpu1 CPU_2๐: %cpu2 CPU_3๐: %cpu3" | |
degraded_threshold = 90 | |
max_threshold = 95 | |
} | |
battery 0 { | |
format = "Battery๐: %percentage" | |
last_full_capacity = true | |
threshold_type=percentage | |
low_threshold=10 | |
} | |
memory { | |
memory_used_method = classical | |
format="Memory๐: %used/%total" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment