summaryrefslogtreecommitdiff
path: root/i3/.i3status.conf
diff options
context:
space:
mode:
authorMaciej Sobkowski <maciejjo@maciejjo.pl>2015-07-02 16:04:01 +0200
committerMaciej Sobkowski <maciejjo@maciejjo.pl>2015-07-02 16:04:01 +0200
commitf255a85f6adcb0a3805aa2d7a7f26888d4c3d01e (patch)
tree720d7620a193a4ed92cdfb9d001048a47a1e6929 /i3/.i3status.conf
parent90ae7bc638bcbb398eff5c73c493bbbe518526cd (diff)
Added i3 config
Diffstat (limited to 'i3/.i3status.conf')
-rw-r--r--i3/.i3status.conf84
1 files changed, 84 insertions, 0 deletions
diff --git a/i3/.i3status.conf b/i3/.i3status.conf
new file mode 100644
index 0000000..df81469
--- /dev/null
+++ b/i3/.i3status.conf
@@ -0,0 +1,84 @@
+###############################################################################
+# ceerious i3 status config
+# see "man i3status" for documentation.
+#
+# It is important that this file is edited as UTF-8.
+# The following line should contain a sharp s:
+# ß
+# If the above line is not correctly displayed, fix your editor first!
+###############################################################################
+
+general {
+ colors = true
+ interval = 1
+}
+
+order += "volume master"
+order += "disk /"
+order += "disk /home"
+order += "disk /var"
+order += "wireless wlo1"
+order += "ethernet enp0s25"
+order += "battery 0"
+order += "cpu_temperature 0"
+order += "cpu_usage 0"
+order += "load"
+order += "tztime local"
+
+wireless wlo1 {
+ format_up = " %essid W: %ip"
+ format_down = ""
+}
+
+ethernet enp0s25 {
+ format_up = "E: %ip"
+ format_down = ""
+}
+
+battery 0 {
+ format = " %status %percentage %remaining"
+ last_full_capacity = true
+}
+
+run_watch DHCP {
+ pidfile = "/var/run/dhcpcd*.pid"
+}
+
+run_watch VPN {
+ pidfile = "/var/run/vpnc/pid"
+}
+
+tztime local {
+ format = "%A%e %B, %H:%M:%S"
+}
+
+load {
+ format = "☢ %1min"
+}
+
+cpu_usage {
+ format = "↺ %usage "
+}
+
+cpu_temperature 0 {
+ format = "🌡 %degrees°C "
+}
+
+disk "/" {
+ format = "/ %free"
+}
+
+disk "/home" {
+ format = "/home %free"
+}
+
+disk "/var" {
+ format = "/var %free"
+}
+
+volume master {
+ format = " %volume"
+ device = "default"
+ mixer = "Master"
+ mixer_idx = 0
+}