summaryrefslogtreecommitdiff
path: root/.config/i3status/config
blob: 4990d5e3c708039062d039b751ec8f9d944e9cdf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# 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 {
        output_format   = i3bar
        colors          = true
        interval        = 5
        separator       = " / "
        color_good      = "#68fc5a"
        color_bad       = "#fc785a"
        color_degraded  = "#fcf45a"
}

order += "volume master"
order += "disk /"
order += "disk /home"
order += "wireless _first_"
order += "ethernet enp0s31f6"
order += "battery all"
order += "cpu_usage"
order += "cpu_temperature all"
order += "time"

volume master {
        format = "墳 %volume"
        format_muted = "奄 %volume"
        device = "default"
        mixer = "Master"
        mixer_idx = 0
}

wireless _first_ {
        # if you use %speed, i3status requires root privileges
        format_up = "  " # %ip (%speed)"
        format_down = "" # "E: down"
}

ethernet enp0s31f6 {
        # if you use %speed, i3status requires root privileges
        format_up = " %ip" # %ip (%speed)"
        format_down = "" # "E: down"
}

battery all {
        format = "%status %percentage" #  %remaining"
        hide_seconds = true
        integer_battery_capacity = true
        status_unk  = ""
        status_chr  = "" # "[]"
        status_bat  = "" # "[]"
        status_full = "" # ""
        format_down = ""
        last_full_capacity = true
        low_threshold = 35
        threshold_type = percent
}

time {
        format = "%Y-%m-%d %H:%M"
}

cpu_temperature all {
        format = " %degrees°"
        max_threshold = 50
}

cpu_usage {
        format = " %usage"
        max_threshold = 50
}

disk "/" {
        format = " [%avail]"
}

disk "/home" {
        format = " [%avail]"
}