Monokai
Well, this is the only theme I found that had a correct vim plugin and had enough contrast (this is important for me). The dark-brown background is a bit sadder than the blue one I might revert to solarized at one moment or another.
This commit is contained in:
parent
93ca57c9a3
commit
105f34ca50
13 changed files with 134 additions and 214 deletions
|
@ -1,7 +1,7 @@
|
|||
# Beware! This file is rewritten by htop when settings are changed in the interface.
|
||||
# The parser is also very primitive, and not human-friendly.
|
||||
fields=0 48 17 18 38 39 40 2 46 47 49 1
|
||||
sort_key=46
|
||||
sort_key=47
|
||||
sort_direction=1
|
||||
hide_threads=0
|
||||
hide_kernel_threads=0
|
||||
|
|
|
@ -357,6 +357,26 @@ mode "$mode_temp" {
|
|||
bindsym Escape mode "default"
|
||||
}
|
||||
|
||||
# Colors
|
||||
set $bg #272822
|
||||
set $fg #f1ebeb
|
||||
set $00 #48483e
|
||||
set $01 #dc2566
|
||||
set $02 #8fc029
|
||||
set $03 #d4c96e
|
||||
set $04 #55bcce
|
||||
set $05 #9358fe
|
||||
set $06 #56b7a5
|
||||
set $07 #acada1
|
||||
set $08 #76715e
|
||||
set $09 #fa2772
|
||||
set $10 #a7e22e
|
||||
set $11 #e7db75
|
||||
set $12 #66d9ee
|
||||
set $13 #ae82ff
|
||||
set $14 #66efd5
|
||||
set $15 #cfd0c2
|
||||
|
||||
# Start i3bar to display a workspace bar (plus the system information i3status if available)
|
||||
bar {
|
||||
#i3bar_command ~/.config/lemonbar/i3_lemonbar.sh
|
||||
|
@ -367,13 +387,13 @@ bar {
|
|||
font pango:DejaVu Sans Mono 9
|
||||
font pango:Sans 8
|
||||
colors {
|
||||
separator #4E9C00
|
||||
background #333333
|
||||
statusline #FFFFFF
|
||||
focused_workspace #4E9C00 #4E9C00 #FFFFFF
|
||||
active_workspace #333333 #333333 #FFFFFF
|
||||
inactive_workspace #333333 #222222 #888888
|
||||
urgent_workspace #C20000 #C20000 #FFFFFF
|
||||
separator $08
|
||||
background $00
|
||||
statusline $fg
|
||||
focused_workspace $02 $02 $bg
|
||||
active_workspace $00 $03 $08
|
||||
inactive_workspace $00 $08 $fg
|
||||
urgent_workspace $00 $01 $fg
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -402,8 +422,14 @@ exec --no-startup-id $HOME/.config/i3/clipmenud # Clipboard manager
|
|||
#exec --no-startup-id evolution
|
||||
#exec --no-startup-id pidgin
|
||||
|
||||
set $ignore #ff00000
|
||||
|
||||
# Theme colors
|
||||
client.focused #4E9C00 #4E9C00 #FFFFFF #FFFFFF
|
||||
client.focused_inactive #1B3600 #1B3600 #888888 #FFFFFF
|
||||
client.unfocused #333333 #333333 #888888 #FFFFFF
|
||||
client.urgent #C20000 #C20000 #FFFFFF #FFFFFF
|
||||
# class border backgr. text indicator child_border
|
||||
client.focused $02 $02 $bg $07 $10
|
||||
client.focused_inactive $03 $03 $08 $15 $14
|
||||
client.unfocused $08 $08 $fg $11 $00
|
||||
client.urgent $01 $01 $fg $05 $09
|
||||
client.placeholder $ignore $06 $fg $ignore $14
|
||||
|
||||
client.background $15
|
||||
|
|
24
config/linuxColors.sh
Normal file
24
config/linuxColors.sh
Normal file
|
@ -0,0 +1,24 @@
|
|||
#!/bin/sh
|
||||
if [ "$TERM" = "linux" ]; then
|
||||
/bin/echo -e "
|
||||
\e]P048483e
|
||||
\e]P1dc2566
|
||||
\e]P28fc029
|
||||
\e]P3d4c96e
|
||||
\e]P455bcce
|
||||
\e]P59358fe
|
||||
\e]P656b7a5
|
||||
\e]P7acada1
|
||||
\e]P876715e
|
||||
\e]P9fa2772
|
||||
\e]PAa7e22e
|
||||
\e]PBe7db75
|
||||
\e]PC66d9ee
|
||||
\e]PDae82ff
|
||||
\e]PE66efd5
|
||||
\e]PFcfd0c2
|
||||
"
|
||||
# get rid of artifacts
|
||||
clear
|
||||
fi
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue