Skip to content

Commit

Permalink
Configure i3 to use the base16 monokai theme
Browse files Browse the repository at this point in the history
  • Loading branch information
bashton-ajenkins committed May 30, 2018
1 parent 122a9e0 commit 90d9959
Showing 1 changed file with 43 additions and 1 deletion.
44 changes: 43 additions & 1 deletion i3/config
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,35 @@ font pango:monospace 11
# text rendering and scalability on retina/hidpi displays (thanks to pango).
#font pango:DejaVu Sans Mono 8

# Monokai Colour Scheme

set $base00 #272822
set $base01 #383830
set $base02 #49483e
set $base03 #75715e
set $base04 #a59f85
set $base05 #f8f8f2
set $base06 #f5f4f1
set $base07 #f9f8f5
set $base08 #f92672
set $base09 #fd971f
set $base0A #f4bf75
set $base0B #a6e22e
set $base0C #a1efe4
set $base0D #66d9ef
set $base0E #ae81ff
set $base0F #cc6633

# Window border colour scheme
# Basic color configuration using the Base16 variables for windows and borders.
# Property Name Border BG Text Indicator Child Border
client.focused $base07 $base07 $base00 $base0D $base07
client.focused_inactive $base01 $base01 $base05 $base03 $base01
client.unfocused $base01 $base00 $base05 $base01 $base01
client.urgent $base08 $base08 $base00 $base08 $base08
client.placeholder $base00 $base00 $base05 $base00 $base00
client.background $base07

# Before i3 v4.8, we used to recommend this one as the default:
# font -misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1
# The font above is very space-efficient, that is, it looks good, sharp and
Expand Down Expand Up @@ -152,7 +181,20 @@ bindsym $mod+r mode "resize"
# Start i3bar to display a workspace bar (plus the system information i3status
# finds out, if available)
bar {
status_command /usr/bin/i3blocks
status_command /usr/bin/i3blocks

colors {
background $base00
separator $base01
statusline $base04

# State Border BG Text
focused_workspace $base05 $base0D $base00
active_workspace $base05 $base03 $base00
inactive_workspace $base03 $base01 $base05
urgent_workspace $base08 $base08 $base00
binding_mode $base00 $base0A $base00
}
}

set $mode_system System (l) lock, (e) logout, (s) suspend, (h) hibernate, (r) reboot, (Shift+s) shutdown
Expand Down

0 comments on commit 90d9959

Please sign in to comment.