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,6 +1,16 @@
|
|||
general {
|
||||
colors = true
|
||||
interval = 5
|
||||
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
|
||||
}
|
||||
|
||||
#order += "ipv6"
|
||||
|
@ -17,19 +27,19 @@ order += "load"
|
|||
order += "time"
|
||||
|
||||
wireless wlan0 {
|
||||
format_up = "W: (%quality at %essid) %ip"
|
||||
format_down = "W: down"
|
||||
format_up = "W: (%quality at %essid) %ip"
|
||||
format_down = "W: down"
|
||||
}
|
||||
|
||||
ethernet eth0 {
|
||||
# if you use %speed, i3status requires root privileges
|
||||
format_up = "E: %ip (%speed)"
|
||||
# if you use %speed, i3status requires root privileges
|
||||
format_up = "E: %ip (%speed)"
|
||||
format_down = "E: down"
|
||||
}
|
||||
|
||||
battery 0 {
|
||||
format = "%status %percentage %remaining"
|
||||
path = "/sys/class/power_supply/CMB1/uevent"
|
||||
format = "%status %percentage %remaining"
|
||||
path = "/sys/class/power_supply/CMB1/uevent"
|
||||
}
|
||||
|
||||
battery 1 {
|
||||
|
@ -38,11 +48,11 @@ battery 1 {
|
|||
}
|
||||
|
||||
run_watch DHCP {
|
||||
pidfile = "/var/run/dhclient*.pid"
|
||||
pidfile = "/var/run/dhclient*.pid"
|
||||
}
|
||||
|
||||
run_watch VPN {
|
||||
pidfile = "/var/run/vpnc/pid"
|
||||
pidfile = "/var/run/vpnc/pid"
|
||||
}
|
||||
|
||||
time {
|
||||
|
|
Loading…
Reference in a new issue