diff options
Diffstat (limited to 'i3')
| -rw-r--r-- | i3/config | 21 | ||||
| -rw-r--r-- | i3/i3status+config | 26 | 
2 files changed, 39 insertions, 8 deletions
| @@ -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 | 
