]> git.vanrenterghem.biz Git - Dotty.git/blob - i3status/.config/i3status/config
Voeg Zathura Emacs keybindings toe.
[Dotty.git] / i3status / .config / i3status / config
1 # i3status configuration file.
2 # see "man i3status" for documentation.
4 # It is important that this file is edited as UTF-8.
5 # The following line should contain a sharp s:
6 # ß
7 # If the above line is not correctly displayed, fix your editor first!
9 general {
10         colors = true
11         interval = 5
12 }
14 order += "ipv6"
15 order += "wireless _first_"
16 order += "ethernet _first_"
17 order += "battery all"
18 order += "disk /"
19 order += "load"
20 order += "memory"
21 order += "volume master"
22 order += "tztime local"
24 wireless _first_ {
25         format_up = "W: (%quality at %essid) %ip"
26         format_down = "W: down"
27 }
29 ethernet _first_ {
30         format_up = "E: %ip (%speed)"
31         format_down = "E: down"
32 }
34 battery all {
35         format = "%status %percentage %remaining"
36         status_chr = "⚡"
37         status_bat = "🔋"
38         status_unk = "? UNK"
39         status_full = "☻ FULL"
40         low_threshold = 10
41 }
43 disk "/" {
44         format = "%avail"
45 }
47 load {
48         format = "%1min"
49 }
51 memory {
52         format = "%used | %available"
53         threshold_degraded = "1G"
54         format_degraded = "MEMORY < %available"
55 }
57 volume master {
58         format = "♪: %volume"
59         format_muted = "♪: muted (%volume)"
60         device = "pulse:alsa_output.pci-0000_00_1f.3.analog-stereo"
61 }
62         
63 tztime local {
64         format = "%Y-%m-%d %H:%M:%S"
65 }