summaryrefslogtreecommitdiff
path: root/i3status.conf
diff options
context:
space:
mode:
authorMax Christian Pohle2016-10-16 03:31:37 +0200
committerMax Christian Pohle2016-10-16 03:31:37 +0200
commit9a6771b513520222e6c967dbadd982021f71235e (patch)
treec2542860fc69b058837d577506ccaa80a8d1f3f4 /i3status.conf
parent20f136b814faa2baf5e96b2c1d31b02903540429 (diff)
downloadi3-9a6771b513520222e6c967dbadd982021f71235e.tar.bz2
i3-9a6771b513520222e6c967dbadd982021f71235e.zip
Cool config with window highlighting
uses compton and a special i3 version, currently i3-gaps to make windows borderless if they are the only windows on the screen
Diffstat (limited to 'i3status.conf')
-rw-r--r--i3status.conf33
1 files changed, 31 insertions, 2 deletions
diff --git a/i3status.conf b/i3status.conf
index 34a56d9..fd093ed 100644
--- a/i3status.conf
+++ b/i3status.conf
@@ -8,11 +8,13 @@
8 8
9general { 9general {
10 colors = true 10 colors = true
11 color_good = "#88ff88"
12 color_bad = "#880000"
11 interval = 5 13 interval = 5
14 output_format = i3bar
12} 15}
13 16
14order += "ipv6" 17order += "ipv6"
15order += "disk /"
16# order += "run_watch VPN" 18# order += "run_watch VPN"
17order += "path_exists VPN" 19order += "path_exists VPN"
18order += "run_watch DHCP" 20order += "run_watch DHCP"
@@ -20,9 +22,24 @@ order += "run_watch DHCP"
20order += "ethernet _first_" 22order += "ethernet _first_"
21order += "ethernet enp7s0" 23order += "ethernet enp7s0"
22# order += "battery 0" 24# order += "battery 0"
25order += "volume master"
26order += "cpu_temperature 1"
27order += "cpu_usage"
23order += "load" 28order += "load"
29order += "disk /"
24order += "tztime local" 30order += "tztime local"
25 31
32ipv6
33{
34 format_down = ""
35}
36
37cpu_temperature 1
38{
39 format = "%degrees°C"
40 path = "/sys/class/thermal/thermal_zone2/temp"
41}
42
26wireless _first_ { 43wireless _first_ {
27 format_up = "W: (%quality at %essid) %ip" 44 format_up = "W: (%quality at %essid) %ip"
28 format_down = "W: down" 45 format_down = "W: down"
@@ -48,12 +65,14 @@ battery 0 {
48 65
49run_watch DHCP { 66run_watch DHCP {
50 pidfile = "/var/run/dhclient*.pid" 67 pidfile = "/var/run/dhclient*.pid"
68 format = "%title"
51} 69}
52 70
53 71
54path_exists VPN { 72path_exists VPN {
55# path exists when a VPN tunnel launched by nmcli/nm-applet is active 73# path exists when a VPN tunnel launched by nmcli/nm-applet is active
56 path = "/proc/sys/net/ipv4/conf/tun0" 74 path = "/proc/sys/net/ipv4/conf/tun0"
75 format_down = ""
57} 76}
58 77
59run_watch VPN { 78run_watch VPN {
@@ -65,9 +84,19 @@ tztime local {
65} 84}
66 85
67load { 86load {
68 format = "%1min" 87 format = "%5min"
69} 88}
70 89
71disk "/" { 90disk "/" {
72 format = "%avail" 91 format = "%avail"
73} 92}
93
94volume master {
95 format = "♪: %volume"
96 format_muted = "♪: muted (%volume)"
97 device = "pulse:0"
98}
99
100cpu_usage {
101 format = "%usage"
102}
..