switch to base16 color scheme
This commit is contained in:
parent
f3e2653f4b
commit
022fc83e80
1
.gitignore
vendored
1
.gitignore
vendored
@ -5,5 +5,6 @@ procmailrc
|
|||||||
gitconfig
|
gitconfig
|
||||||
ctags
|
ctags
|
||||||
i3/config
|
i3/config
|
||||||
|
i3status.conf
|
||||||
mbsyncrc
|
mbsyncrc
|
||||||
authinfo
|
authinfo
|
||||||
|
2
Makefile
2
Makefile
@ -53,5 +53,5 @@ clean:
|
|||||||
ctags: ctags.in
|
ctags: ctags.in
|
||||||
grep '^-' $< >$@
|
grep '^-' $< >$@
|
||||||
|
|
||||||
%: %.m4
|
%: %.m4 base16.m4
|
||||||
m4 $< >$@
|
m4 $< >$@
|
||||||
|
17
base16.m4
Normal file
17
base16.m4
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
dnl base16 default
|
||||||
|
defcolor(base00,181818)
|
||||||
|
defcolor(base01,282828)
|
||||||
|
defcolor(base02,383838)
|
||||||
|
defcolor(base03,585858)
|
||||||
|
defcolor(base04,b8b8b8)
|
||||||
|
defcolor(base05,d8d8d8)
|
||||||
|
defcolor(base06,e8e8e8)
|
||||||
|
defcolor(base07,f8f8f8)
|
||||||
|
defcolor(base08,ab4642)
|
||||||
|
defcolor(base09,dc9656)
|
||||||
|
defcolor(base0A,f7ca88)
|
||||||
|
defcolor(base0B,a1b56c)
|
||||||
|
defcolor(base0C,86c1b9)
|
||||||
|
defcolor(base0D,7cafc2)
|
||||||
|
defcolor(base0E,ba8baf)
|
||||||
|
defcolor(base0F,a16946)
|
25
i3/config.m4
25
i3/config.m4
@ -1,6 +1,6 @@
|
|||||||
# vim:ft=conf:
|
# vim:ft=conf:
|
||||||
|
|
||||||
changequote(`[', `]')
|
changequote([,])
|
||||||
define([hostname], esyscmd([echo -n `hostname`]))
|
define([hostname], esyscmd([echo -n `hostname`]))
|
||||||
|
|
||||||
define([forloop], [pushdef([$1], [$2])_forloop($@)popdef([$1])])
|
define([forloop], [pushdef([$1], [$2])_forloop($@)popdef([$1])])
|
||||||
@ -94,13 +94,32 @@ mode "resize" {
|
|||||||
|
|
||||||
bindsym $mod+r mode "resize"
|
bindsym $mod+r mode "resize"
|
||||||
|
|
||||||
|
define([defcolor], [define($1, ["[#]$2"])])
|
||||||
|
include([base16.m4])
|
||||||
|
|
||||||
|
client.focused base0D base0D base00 base01
|
||||||
|
client.focused_inactive base02 base02 base03 base01
|
||||||
|
client.unfocused base01 base01 base03 base01
|
||||||
|
client.urgent base02 base08 base07 base08
|
||||||
|
|
||||||
# Start i3bar to display a workspace bar (plus the system information i3status
|
# Start i3bar to display a workspace bar (plus the system information i3status
|
||||||
# finds out, if available)
|
# finds out, if available)
|
||||||
bar {
|
bar {
|
||||||
status_command i3status
|
status_command i3status
|
||||||
font pango:monospace 9
|
font pango:monospace 9
|
||||||
|
|
||||||
|
colors {
|
||||||
|
separator base03
|
||||||
|
background base01
|
||||||
|
statusline base05
|
||||||
|
focused_workspace base0C base0D base00
|
||||||
|
active_workspace base02 base02 base07
|
||||||
|
inactive_workspace base01 base01 base03
|
||||||
|
urgent_workspace base08 base08 base07
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
exec --no-startup-id nm-applet
|
exec --no-startup-id nm-applet
|
||||||
exec --no-startup-id pa-applet
|
exec --no-startup-id pa-applet
|
||||||
|
|
||||||
|
@ -6,9 +6,15 @@
|
|||||||
# ß
|
# ß
|
||||||
# If the above line is not correctly displayed, fix your editor first!
|
# If the above line is not correctly displayed, fix your editor first!
|
||||||
|
|
||||||
|
changequote([,])
|
||||||
|
define([defcolor], [define($1, ["[#]$2"])])
|
||||||
|
include([base16.m4])
|
||||||
|
|
||||||
general {
|
general {
|
||||||
colors = true
|
colors = true
|
||||||
interval = 5
|
interval = 5
|
||||||
|
color_good = base0B
|
||||||
|
color_bad = base08
|
||||||
}
|
}
|
||||||
|
|
||||||
order += "ipv6"
|
order += "ipv6"
|
Loading…
Reference in New Issue
Block a user