aboutsummaryrefslogtreecommitdiff
path: root/i3status.conf
blob: b8fc77be3a2bf3609ceed391ede1aab52af594b0 (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
84
# i3status configuration file.
# see "man i3status" for documentation.
# Largely based on https://github.com/flavio/dotfiles.

# 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
  color_good     = "#859900"
  color_degraded = "#b58900"
  color_bad      = "#dc322f"
  interval       = 5
}

order += "disk /"
order += "disk /home"
order += "ethernet br0"
# NOTE: uncomment this and remove the previous line if you are using a laptop.
#order += "wireless wlan0"
order += "load"
order += "volume master"
# NOTE: use these two if you are using a laptop.
#order += "battery 0"
#order += "battery 1"
order += "tztime local"

# Yes, I'm weird :P Use whatever ethernet interface you have here.
# NOTE: remove this if you are using a laptop.
ethernet br0 {
  format_up = "E: %ip"
  format_down = "E: down"
}

# NOTE: use this if you are using a laptop.
#wireless wlp3s0 {
#format_up = "W: (%quality at %essid) %ip"
#format_down = "W: down"
#}

# NOTE: use this if you are using a laptop.
#battery 0 {
#format = "%status %percentage"
#format_down = "No battery"
#status_chr = "⚇ CHR"
#status_bat = "⚡ BAT"
#status_full = "☻ FULL"
#low_threshold = 10
#}

# NOTE: use this if you are using a laptop.
#battery 1 {
#format = "%status %percentage"
#format_down = "No battery"
#status_chr = "⚇ CHR"
#status_bat = "⚡ BAT"
#status_full = "☻ FULL"
#low_threshold = 10
#}

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

load {
  format = "%1min"
}

disk "/" {
  format = "/ %free"
}

disk "/home" {
  format = "/home %free"
}

volume master {
  format = "♪: %volume"
  device = "default"
  mixer = "Master"
  mixer_idx = 0
}