added colors to dunst, i3status
This commit is contained in:
parent
5c7558a313
commit
e560fc742d
2 changed files with 35 additions and 19 deletions
24
dunstrc
24
dunstrc
|
@ -1,5 +1,5 @@
|
|||
[global]
|
||||
font = Source Code Pro 9
|
||||
font = Source Code Pro 8
|
||||
|
||||
# allow a small subset of html markup:
|
||||
# <b>bold</b>
|
||||
|
@ -124,8 +124,8 @@
|
|||
browser = /usr/bin/x-www-browser -new-tab
|
||||
|
||||
[frame]
|
||||
width = 3
|
||||
color = "#aaaaaa"
|
||||
width = 1
|
||||
color = "#fdf6e3"
|
||||
|
||||
[shortcuts]
|
||||
# shortcuts are specified as [modifier+][modifier+]...key
|
||||
|
@ -149,18 +149,24 @@
|
|||
[urgency_low]
|
||||
# IMPORTANT: colors have to be defined in quotation marks.
|
||||
# Otherwise the '#' and following would be interpreted as a comment.
|
||||
background = "#222222"
|
||||
foreground = "#888888"
|
||||
# Background is S_base03
|
||||
background = "#002b36"
|
||||
# Foreground is S_base0
|
||||
foreground = "#839496"
|
||||
timeout = 2
|
||||
|
||||
[urgency_normal]
|
||||
background = "#285577"
|
||||
foreground = "#ffffff"
|
||||
# Background is S_base03
|
||||
background = "#002b36"
|
||||
# Foreground is S_base3
|
||||
foreground = "#fdf6e3"
|
||||
timeout = 5
|
||||
|
||||
[urgency_critical]
|
||||
background = "#900000"
|
||||
foreground = "#ffffff"
|
||||
# Background is S_red
|
||||
background = "#dc322f"
|
||||
# Foreground is S_base03
|
||||
foreground = "#002b36"
|
||||
timeout = 0
|
||||
|
||||
|
||||
|
|
|
@ -1,5 +1,15 @@
|
|||
general {
|
||||
colors = true
|
||||
|
||||
# Good is S_cyan
|
||||
color_good = "#2aa198"
|
||||
|
||||
# Degraded is S_green
|
||||
color_degraded = "#859900"
|
||||
|
||||
# Bad is S_red
|
||||
color_bad ="#dc322f"
|
||||
|
||||
interval = 5
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue