Created
March 16, 2024 18:03
-
-
Save tiagojsag/07cb2d62462329cabcdc8b2085f8b98b to your computer and use it in GitHub Desktop.
Py3status config file
This file contains hidden or 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
# i3status configuration file. | |
# see "man i3status" for documentation. | |
# It is important that this file is edited as UTF-8. | |
# The following line should contain a sharp s: | |
# ß | |
# If the above line is not correctly displayed, fix your editor first! | |
general { | |
colors = true | |
interval = 5 | |
} | |
order += "volume_status" | |
order += "bluetooth" | |
order += "disk /" | |
order += "networkmanager" | |
order += "lm_sensors" | |
order += "nvidia_smi" | |
order += "loadavg" | |
order += "clock" | |
nvidia_smi { | |
format_gpu = "GPU [\?color=temperature.gpu {temperature.gpu}°C] [\?color=memory.used_percent {memory.used_percent}%]" | |
} | |
loadavg { | |
format = 'Load [\?color=darkgray ' | |
format += '1min [\?color=1avg {1avg}%] ' | |
format += '5min [\?color=5avg {5avg}%] ' | |
format += '15min [\?color=15avg {15avg}%]]' | |
} | |
clock { | |
format = ["{Europe/Madrid}", "{Europe/Lisbon}", "{America/New_york}", "{America/Los_Angeles}"] | |
format_time = "{name} %Y-%m-%d %H:%M" | |
} | |
load { | |
format = "%1min" | |
} | |
disk "/" { | |
format = "%avail" | |
} | |
volume master { | |
format = "♪: %volume" | |
device = "default" | |
mixer = "Master" | |
mixer_idx = 0 | |
} | |
lm_sensors { | |
format_chip = '[\?if=name=coretemp-isa-0000 CPU ]' | |
format_chip += '[\?if=name=nouveau-pci-0500 GPU ]' | |
format_chip += '{format_sensor}' | |
format_sensor = '\?color=auto.input {input}°C' | |
chips = ['coretemp-isa-0000'] | |
sensors = ['package_id_0'] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment