about summary refs log tree commit diff
path: root/configs
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2019-03-21T14·57+0000
committerWilliam Carroll <wpcarro@gmail.com>2019-03-21T14·57+0000
commit4d83acb77ae665ccecd2b319c05641ae07b5fcce (patch)
treede8b54dead916974fd263bc953d5774182f3c78a /configs
parent8a9cb25fe3ece12d86d7053e6c67242b2bc6ef30 (diff)
Theme i3 status bar
Adds some preliminary styling to my i3 status bar to vaguely align with the One
Dark theme.
Diffstat (limited to 'configs')
-rw-r--r--configs/shared/misc/.config/i3/config39
1 files changed, 32 insertions, 7 deletions
diff --git a/configs/shared/misc/.config/i3/config b/configs/shared/misc/.config/i3/config
index 0756f344cf9b..564cfa969d65 100644
--- a/configs/shared/misc/.config/i3/config
+++ b/configs/shared/misc/.config/i3/config
@@ -234,15 +234,40 @@ mode "passthrough" {
 }
 bindsym $mod+Escape mode "passthrough"
 
-# Colors
-set $foreground #61afef
-set $background #dfdfdf
-
-# window borders
-# Format:      border      background  text        indicator   child_border
-client.focused $foreground $background $foreground $foreground $foreground
+# Atom One Dark colors
+set $black          #1e2127
+set $red            #e06c75
+set $green          #98c379
+set $yellow         #d19a66
+set $blue           #61afef
+set $magenta        #c678dd
+set $cyan           #56b6c2
+set $white          #abb2bf
+set $bright_black   #5c6370
+set $bright_red     #e06c75
+set $bright_green   #98c379
+set $bright_yellow  #d19a66
+set $bright_white   #ffffff
+set $bright_blue    #61afef
+set $bright_magenta #c678dd
+set $bright_cyan    #56b6c2
+set $selection      #3a3f4b
+
+# class                 # border    # bg # text #indicator #child_border
+client.focused          $red        $red $red   $red       $bright_cyan
+client.focused_inactive $red        $red $red   $red       $black
+client.unfocused        $red        $red $red   $red       $black
 
 bar {
     status_command i3status
     position top
+    colors {
+           background $black
+           statusline $white
+           separator  $yellow
+           focused_workspace  $black $black $bright_cyan
+           active_workspace   $red $bright_blue $blue
+           inactive_workspace $black $black $bright_black
+           urgent_workspace   $bright_black $black $magenta
+    }
 }