summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Ritter <xeno@thehappy.de>2011-06-22 01:32:32 +0200
committerStefan Ritter <xeno@thehappy.de>2011-06-22 01:32:32 +0200
commit3c4f5639c881dd26197debcb429cd700d28174ea (patch)
tree4bb711ea36fac81b44ee4e48afc55d4040e6a71e
parent4ed77e8a9416e18a44296e7e2e17f66fca56be95 (diff)
Add i3status config
-rw-r--r--i3/config22
-rw-r--r--i3/status25
2 files changed, 36 insertions, 11 deletions
diff --git a/i3/config b/i3/config
index 3fca9f8..5ff2dba 100644
--- a/i3/config
+++ b/i3/config
@@ -1,13 +1,13 @@
-workspace 1 com
-workspace 2 web
-workspace 3 div
-workspace 4 div
-workspace 5 div
-workspace 6 div
-workspace 7 div
-workspace 8 div
-workspace 9 div
-workspace 10 div
+#workspace 1 com
+#workspace 2 web
+#workspace 3 div
+#workspace 4 div
+#workspace 5 div
+#workspace 6 div
+#workspace 7 div
+#workspace 8 div
+#workspace 9 div
+#workspace 10 div
client.focused #303030 #202020 #fecf35
client.unfocused #303030 #202020 #b8b8b8
@@ -66,6 +66,6 @@ bind mod1+33 exec /usr/bin/dmenu_run -nb "#000000" -nf "#fecf35" -sb "#303030" -
bind mod1+shift+33 exit
bind mod1+shift+45 restart
-exec i3status | dzen2 -bg '#000000' -fn '-xos4-terminus-*-*-*-*-12-*-*-*-*-*-*-*'
+exec i3status -c .i3/status | dzen2 -bg '#000000' -fg "#fecf35" -ta 'c' -fn '-xos4-terminus-*-*-*-*-12-*-*-*-*-*-*-*'
ipc-socket ~/.i3/ipc.sock
diff --git a/i3/status b/i3/status
new file mode 100644
index 0000000..63e5243
--- /dev/null
+++ b/i3/status
@@ -0,0 +1,25 @@
+general {
+ colors = true
+ interval = 5
+}
+
+order = "battery 0"
+order += "cpu_temperature 0"
+order += "load"
+order += "time"
+
+battery 0 {
+ format = "%status %percentage %remaining"
+}
+
+time {
+ format = "%d.%m.%Y %H:%M:%S"
+}
+
+load {
+ format = "%1min"
+}
+
+cpu_temperature 0 {
+ format = "%degrees °C"
+}