Last active
June 14, 2018 13:05
-
-
Save tiagojsag/305bc641c88b37c91d02 to your computer and use it in GitHub Desktop.
i3status config (Desktop)
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 += "disk /" | |
order += "ethernet eno1" | |
order += "ethernet enp6s0u1u1u3u1" | |
order += "cpu_temperature 0" | |
order += "cpu_temperature 1" | |
order += "cpu_temperature 2" | |
order += "cpu_temperature 3" | |
order += "cpu_temperature 4" | |
order += "cpu_temperature 5" | |
order += "load" | |
order += "volume master" | |
order += "tztime local" | |
ethernet eno1 { | |
format_up = "E: %ip (%speed)" | |
format_down = "E: down" | |
} | |
ethernet enp6s0u1u1u3u1 { | |
format_up = "E: %ip (%speed)" | |
format_down = "E: down" | |
} | |
tztime local { | |
format = "%Y-%m-%d %H:%M" | |
} | |
load { | |
format = "%1min" | |
} | |
disk "/" { | |
format = "%avail" | |
} | |
volume master { | |
format = "♪: %volume" | |
device = "default" | |
mixer = "Master" | |
mixer_idx = 0 | |
} | |
cpu_temperature 0 { | |
format = "C0: %degrees°C" | |
path = "/sys/devices/platform/coretemp.0/hwmon/hwmon1/temp2_input" | |
} | |
cpu_temperature 1 { | |
format = "C1: %degrees°C" | |
path = "/sys/devices/platform/coretemp.0/hwmon/hwmon1/temp3_input" | |
} | |
cpu_temperature 2 { | |
format = "C2: %degrees°C" | |
path = "/sys/devices/platform/coretemp.0/hwmon/hwmon1/temp4_input" | |
} | |
cpu_temperature 3 { | |
format = "C3: %degrees°C" | |
path = "/sys/devices/platform/coretemp.0/hwmon/hwmon1/temp5_input" | |
} | |
cpu_temperature 4 { | |
format = "C4: %degrees°C" | |
path = "/sys/devices/platform/coretemp.0/hwmon/hwmon1/temp6_input" | |
} | |
cpu_temperature 5 { | |
format = "C5: %degrees°C" | |
path = "/sys/devices/platform/coretemp.0/hwmon/hwmon1/temp7_input" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment