summaryrefslogtreecommitdiff
path: root/i3status.conf
diff options
context:
space:
mode:
authorMax Christian Pohle2016-09-22 09:49:19 +0200
committerMax Christian Pohle2016-09-22 09:49:19 +0200
commit20f136b814faa2baf5e96b2c1d31b02903540429 (patch)
treea39dc4e5bb2d64b6a5cf4ea507ae7cb1f3b75840 /i3status.conf
downloadi3-20f136b814faa2baf5e96b2c1d31b02903540429.tar.bz2
i3-20f136b814faa2baf5e96b2c1d31b02903540429.zip
default key bindings
vim default movement keys alt+f4, alt+f2 and toggles tiling side with $mod+space
Diffstat (limited to 'i3status.conf')
-rw-r--r--i3status.conf73
1 files changed, 73 insertions, 0 deletions
diff --git a/i3status.conf b/i3status.conf
new file mode 100644
index 0000000..34a56d9
--- /dev/null
+++ b/i3status.conf
@@ -0,0 +1,73 @@
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
9general {
10 colors = true
11 interval = 5
12}
13
14order += "ipv6"
15order += "disk /"
16# order += "run_watch VPN"
17order += "path_exists VPN"
18order += "run_watch DHCP"
19# order += "wireless _first_"
20order += "ethernet _first_"
21order += "ethernet enp7s0"
22# order += "battery 0"
23order += "load"
24order += "tztime local"
25
26wireless _first_ {
27 format_up = "W: (%quality at %essid) %ip"
28 format_down = "W: down"
29}
30
31ethernet _first_ {
32 # if you use %speed, i3status requires root privileges
33 format_up = "E1: %ip (%speed)"
34 format_down = "E1: down"
35}
36
37
38ethernet enp7s0 {
39 # if you use %speed, i3status requires root privileges
40 format_up = "E2: %ip (%speed)"
41 format_down = "E2: down"
42}
43
44
45battery 0 {
46 format = "%status %percentage %remaining"
47}
48
49run_watch DHCP {
50 pidfile = "/var/run/dhclient*.pid"
51}
52
53
54path_exists VPN {
55# path exists when a VPN tunnel launched by nmcli/nm-applet is active
56 path = "/proc/sys/net/ipv4/conf/tun0"
57}
58
59run_watch VPN {
60 pidfile = "/var/run/NetworkManager/nm-openvpn-*"
61}
62
63tztime local {
64 format = "%Y-%m-%d %H:%M:%S"
65}
66
67load {
68 format = "%1min"
69}
70
71disk "/" {
72 format = "%avail"
73}
..