diff options
| author | Max Christian Pohle | 2016-09-22 09:49:19 +0200 |
|---|---|---|
| committer | Max Christian Pohle | 2016-09-22 09:49:19 +0200 |
| commit | 20f136b814faa2baf5e96b2c1d31b02903540429 (patch) | |
| tree | a39dc4e5bb2d64b6a5cf4ea507ae7cb1f3b75840 /i3status.conf | |
| download | i3-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.conf | 73 |
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 | |||
| 9 | general { | ||
| 10 | colors = true | ||
| 11 | interval = 5 | ||
| 12 | } | ||
| 13 | |||
| 14 | order += "ipv6" | ||
| 15 | order += "disk /" | ||
| 16 | # order += "run_watch VPN" | ||
| 17 | order += "path_exists VPN" | ||
| 18 | order += "run_watch DHCP" | ||
| 19 | # order += "wireless _first_" | ||
| 20 | order += "ethernet _first_" | ||
| 21 | order += "ethernet enp7s0" | ||
| 22 | # order += "battery 0" | ||
| 23 | order += "load" | ||
| 24 | order += "tztime local" | ||
| 25 | |||
| 26 | wireless _first_ { | ||
| 27 | format_up = "W: (%quality at %essid) %ip" | ||
| 28 | format_down = "W: down" | ||
| 29 | } | ||
| 30 | |||
| 31 | ethernet _first_ { | ||
| 32 | # if you use %speed, i3status requires root privileges | ||
| 33 | format_up = "E1: %ip (%speed)" | ||
| 34 | format_down = "E1: down" | ||
| 35 | } | ||
| 36 | |||
| 37 | |||
| 38 | ethernet enp7s0 { | ||
| 39 | # if you use %speed, i3status requires root privileges | ||
| 40 | format_up = "E2: %ip (%speed)" | ||
| 41 | format_down = "E2: down" | ||
| 42 | } | ||
| 43 | |||
| 44 | |||
| 45 | battery 0 { | ||
| 46 | format = "%status %percentage %remaining" | ||
| 47 | } | ||
| 48 | |||
| 49 | run_watch DHCP { | ||
| 50 | pidfile = "/var/run/dhclient*.pid" | ||
| 51 | } | ||
| 52 | |||
| 53 | |||
| 54 | path_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 | |||
| 59 | run_watch VPN { | ||
| 60 | pidfile = "/var/run/NetworkManager/nm-openvpn-*" | ||
| 61 | } | ||
| 62 | |||
| 63 | tztime local { | ||
| 64 | format = "%Y-%m-%d %H:%M:%S" | ||
| 65 | } | ||
| 66 | |||
| 67 | load { | ||
| 68 | format = "%1min" | ||
| 69 | } | ||
| 70 | |||
| 71 | disk "/" { | ||
| 72 | format = "%avail" | ||
| 73 | } | ||
