summaryrefslogtreecommitdiff
path: root/i3status.conf
diff options
context:
space:
mode:
authorMax Christian Pohle2020-01-17 20:35:49 +0100
committerMax Christian Pohle2020-01-17 20:35:49 +0100
commit98778e2cf3fb9e1b842911c5bd1a0a5a5e924b45 (patch)
tree7409d8118f886fb747a6b5d2b2bb7566f1bb2431 /i3status.conf
parent8180cf38e6198fce5cd30d84f633bc154191829f (diff)
downloadi3-98778e2cf3fb9e1b842911c5bd1a0a5a5e924b45.tar.bz2
i3-98778e2cf3fb9e1b842911c5bd1a0a5a5e924b45.zip
Minor improvementsHEADmaster
Diffstat (limited to 'i3status.conf')
-rw-r--r--i3status.conf58
1 files changed, 36 insertions, 22 deletions
diff --git a/i3status.conf b/i3status.conf
index 127af25..ceb43a2 100644
--- a/i3status.conf
+++ b/i3status.conf
@@ -7,11 +7,11 @@
7# If the above line is not correctly displayed, fix your editor first! 7# If the above line is not correctly displayed, fix your editor first!
8 8
9general { 9general {
10 colors = true 10 colors = false
11 #color_good = "#88ff88" 11 #color_good = "#88ff88"
12 #color_bad = "#880000" 12 #color_bad = "#880000"
13 color_good = "#ffffff" 13 color_good = "#666666"
14 color_bad = "#666666" 14 color_bad = "#660000"
15 interval = 1 15 interval = 1
16 output_format = i3bar 16 output_format = i3bar
17 separator = 'X' 17 separator = 'X'
@@ -21,15 +21,16 @@ order += "ipv6"
21# order += "run_watch VPN" 21# order += "run_watch VPN"
22order += "path_exists VPN" 22order += "path_exists VPN"
23order += "run_watch DHCP" 23order += "run_watch DHCP"
24# order += "wireless _first_" 24order += "wireless _first_"
25order += "ethernet _first_" 25order += "ethernet _first_"
26order += "ethernet enp7s0" 26# order += "ethernet enp0s31f6"
27# order += "battery 0" 27order += "battery 0"
28order += "cpu_temperature 1" 28order += "cpu_temperature 1"
29order += "cpu_usage" 29order += "cpu_usage"
30order += "cpu_temperature 2" 30# order += "cpu_temperature 2"
31# order += "load" 31# order += "load"
32order += "disk /" 32order += "disk /"
33order += "disk /home"
33order += "volume master" 34order += "volume master"
34order += "tztime localdate" 35order += "tztime localdate"
35order += "tztime localtime" 36order += "tztime localtime"
@@ -52,27 +53,31 @@ cpu_temperature 2
52} 53}
53 54
54wireless _first_ { 55wireless _first_ {
55 format_up = "W: (%quality at %essid) %ip" 56 format_up = "📶%quality %essid %ip"
56 format_down = "W: down" 57 format_down = "📶 down"
57} 58}
58 59
59ethernet _first_ { 60ethernet _first_ {
60 61
61 # if you use %speed, i3status requires root privileges 62 # if you use %speed, i3status requires root privileges
62 format_up = " %interface %ip (%speed)" 63 format_up = "🌍 %ip (%speed)"
63 format_down = " %interface" 64 format_down = ""
64} 65}
65 66
66 67
67ethernet enp7s0 { 68ethernet enp0s31f6 {
68 # if you use %speed, i3status requires root privileges 69 # if you use %speed, i3status requires root privileges
69 format_up = " %interface %ip (%speed)" 70 format_up = " enp0s31f6 %ip (%speed)"
70 format_down = " %interface" 71 format_down = " enp0s31f6 down"
71} 72}
72 73
73 74
74battery 0 { 75battery 0 {
75 format = "%status %percentage %remaining" 76 format = "%status %percentage (%remaining)"
77 status_chr = "🔌"
78 status_bat = "🔋"
79 status_unk = ""
80 status_full = "🔋"
76} 81}
77 82
78run_watch DHCP { 83run_watch DHCP {
@@ -87,8 +92,8 @@ path_exists VPN {
87 path = "/proc/sys/net/ipv4/conf/tun0" 92 path = "/proc/sys/net/ipv4/conf/tun0"
88 separator = false 93 separator = false
89 separator_block_width = 8 94 separator_block_width = 8
90 format = " " 95 format = " 🔑"
91 format_down = "" 96 format_down = ""
92} 97}
93 98
94run_watch VPN { 99run_watch VPN {
@@ -96,11 +101,11 @@ run_watch VPN {
96} 101}
97 102
98tztime localtime { 103tztime localtime {
99 format = " %H:%M" 104 format = " %H:%M "
100} 105}
101 106
102tztime localdate { 107tztime localdate {
103 format = " %Y-%m-%d:%A" 108 format = "📅 %Y-%m-%d:%A"
104} 109}
105 110
106# load { 111# load {
@@ -108,13 +113,22 @@ tztime localdate {
108# } 113# }
109 114
110disk "/" { 115disk "/" {
111 format = " %avail" 116 format = "💽 / %percentage_avail free"
117 prefix_type = custom
118 low_threshold = 10
119 format_below_threshold = "/ %percentage_avail free (%gbytes_avail)"
120}
121
122disk "/home" {
123 format = "💽 /home %percentage_avail free"
112 prefix_type = custom 124 prefix_type = custom
125 low_threshold = 10
126 format_below_threshold = "/home %percentage_avail free (%gbytes_avail)"
113} 127}
114 128
115volume master { 129volume master {
116 format = " %volume" 130 format = "🔊 %volume"
117 format_muted = "♪: muted (%volume)" 131 format_muted = "🔇 %volume"
118 device = "pulse:0" 132 device = "pulse:0"
119} 133}
120 134
..