summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--i3/config21
-rw-r--r--i3/i3status+config26
-rwxr-xr-xlink.sh6
3 files changed, 43 insertions, 10 deletions
diff --git a/i3/config b/i3/config
index bbf008a..f334c81 100644
--- a/i3/config
+++ b/i3/config
@@ -124,7 +124,7 @@ mode "resize" {
bindsym l resize shrink height 10 px or 10 ppt
bindsym semicolon resize grow width 10 px or 10 ppt
- # same bindings, but for the arrow keys
+ # same bindings, but for the arrow keyS
bindsym Left resize shrink width 10 px or 10 ppt
bindsym Down resize grow height 10 px or 10 ppt
bindsym Up resize shrink height 10 px or 10 ppt
@@ -141,15 +141,20 @@ bindsym $mod+r mode "resize"
# finds out, if available)
bar {
status_command i3status
+ colors {
+ background #373b41
+ focused_workspace #373b41 #373b41 #ffffff
+ inactive_workspace #373b41 #373b41 #888888
+ }
}
-# colors
+# colors --- https://github.com/chriskempson/tomorrow-theme
# class border backgr. text indicator child_border
-client.focused #1d1f21 #373b41 #ffffff #2e9ef4 #285577
-client.focused_inactive #333333 #5f676a #ffffff #484e50 #5f676a
-client.unfocused #1d1f21 #1d1f21 #888888 #292d2e #222222
-client.urgent #ffffff #900000 #ffffff #900000 #900000
-client.placeholder #000000 #0c0c0c #ffffff #000000 #0c0c0c
+client.focused #373b41 #373b41 #ffffff #373b41 #373b41
+client.focused_inactive #282a2e #282a2e #ffffff #292d2e #282a2e
+client.unfocused #282a2e #282a2e #888888 #292d2e #282a2e
+client.urgent #282a2e #900000 #ffffff #900000 #900000
+client.placeholder #282a2e #0c0c0c #ffffff #000000 #0c0c0c
-client.background #ffffff
+client.background #373b41
diff --git a/i3/i3status+config b/i3/i3status+config
new file mode 100644
index 0000000..6049922
--- /dev/null
+++ b/i3/i3status+config
@@ -0,0 +1,26 @@
+general {
+ colors = true
+ color_good = "#b5bd68"
+ color_bad = "#cc6666"
+ color_degraded = "#81a2be"
+ interval = 1
+}
+
+order += "volume master"
+order += "cpu_usage"
+order += "tztime local"
+
+volume master {
+ format = " ♪ %volume "
+ device = "default"
+ mixer = "Master"
+ mixer_idx = 0
+}
+
+cpu_usage {
+ format = " CPU %usage "
+}
+
+tztime local {
+ format = " %Y-%m-%d %H:%M:%S "
+} \ No newline at end of file
diff --git a/link.sh b/link.sh
index a4dc24e..832124e 100755
--- a/link.sh
+++ b/link.sh
@@ -1,4 +1,4 @@
-#!/bin/bash
+!/bin/bash
# create dotfiles_old in homedir
olddir=~/dotfiles_old
@@ -21,4 +21,6 @@ done
ln -sf ~/dotfiles/password-store ~/.password-store
# i3
-ln -sf ~/dotfiles/i3 ~/.config/i3
+ln -sf ~/dotfiles/i3/config ~/.config/i3/config
+mkdir ~/.config/i3status
+ln -sf ~/dotfiles/i3/i3status+config ~/.config/i3status/config