]> git.donarmstrong.com Git - x_base.git/blob - .config/i3status/config
use pactl info instead of pacmd list-sinks for compatibility with pipewire
[x_base.git] / .config / i3status / config
1 # i3status configuration file.
2 # see "man i3status" for documentation.
3
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!
8
9 general {
10         colors = true
11         interval = 5
12 }
13
14 order += "ipv6"
15 order += "run_watch DHCP"
16 order += "path_exists VPN"
17 order += "wireless _first_"
18 order += "ethernet _first_"
19 order += "battery 0"
20 order += "battery 1"
21 order += "volume master"
22 order += "load"
23 order += "tztime local"
24
25 wireless _first_ {
26         format_up = "๐Ÿ“ถ:%essid %bitrate"
27         format_down = ""
28 }
29
30 ethernet etho {
31         # if you use %speed, i3status requires root privileges
32         format_up = "๐Ÿ–ง:%ip (%speed)"
33         format_down = ""
34 }
35
36 battery 0 {
37         format = "%percentage%status%remaining"
38         format_down = ""
39         status_chr =  "๐Ÿ”Œ"
40         status_bat = "๐Ÿ”‹"
41         status_full = "F"
42         integer_battery_capacity = true
43 }
44
45 battery 1 {
46         format = "%percentage%status%remaining"
47         format_down = ""
48         status_chr =  "๐Ÿ”Œ"
49         status_bat = "๐Ÿ”‹"
50         status_full = "F"
51         integer_battery_capacity = true
52 }
53
54 ipv6 {
55      format_up = "%addr"
56      format_down = ""
57 }
58
59 run_watch DHCP {
60         pidfile = "/var/run/dhclient*.pid"
61         format = "Dโƒ"
62         format_down = ""
63 }
64
65 path_exists VPN {
66         path = "/proc/sys/net/ipv4/conf/tun0"
67         format = "๐Ÿ–งโƒ"
68         format_down = ""
69 }
70
71 tztime local {
72         format = "%Y-%m-%d %H:%M:%S"
73 }
74
75 load {
76         format = "%1min"
77 }
78
79 volume master {
80        format = "๐Ÿ”Š%volume"
81        format_muted = "๐Ÿ”‡(%volume)"
82        device = "pulse"
83 }