Browse Source

[dunst] Use base16-gruvbox-dark-pale theme. Enable icons

v2
lhark 5 years ago
parent
commit
6ae7c71947
  1. 34
      config/dunst/dunstrc

34
config/dunst/dunstrc

@ -29,7 +29,7 @@
# the top and down respectively.
# The width can be negative. In this case the actual width is the
# screen width minus the width defined in within the geometry option.
geometry = "300x5-30+20"
geometry = "400x5-40+60"
# Show how many messages are currently hidden (because of geometry).
indicate_hidden = yes
@ -41,7 +41,7 @@
# The transparency of the window. Range: [0; 100].
# This option will only work if a compositing window manager is
# present (e.g. xcompmgr, compiz, etc.).
transparency = 0
transparency = 30
# The height of the entire notification. If the height is smaller
# than the font height and padding combined, it will be raised
@ -64,7 +64,8 @@
frame_width = 3
# Defines color of the frame around the notification window.
frame_color = "#aaaaaa"
# Base16 theme : gruvbox-dark-pale
frame_color = "#dab997"
# Define a color for the separator.
# possible values are:
@ -85,7 +86,7 @@
### Text ###
font = Hack 8
font = Hack 12
# The spacing between lines. If the height is smaller than the
# font height, it will get raised to the font height.
@ -129,7 +130,7 @@
# Alignment of message text.
# Possible values are "left", "center" and "right".
alignment = right
alignment = left
# Show age of message if message is older than show_age_threshold
# seconds.
@ -159,13 +160,13 @@
### Icons ###
# Align icons left/right/off
icon_position = off
icon_position = left
# Scale larger icons down to this size, set to 0 to disable
max_icon_size = 32
max_icon_size = 64
# Paths to default icons.
icon_path = /usr/share/icons/gnome/16x16/status/:/usr/share/icons/gnome/16x16/devices/
icon_path = /usr/share/icons/gnome/32x32/status/:/usr/share/icons/gnome/32x32/devices/
### History ###
@ -266,6 +267,23 @@
# Icon for notifications with critical urgency, uncomment to enable
#icon = /path/to/icon
# Base16 theme : gruvbox-dark-pale
# https://github.com/khamer/base16-dunst/blob/master/themes/base16-gruvbox-dark-pale.dunstrc
[base16_low]
msg_urgency = low
background = "#3a3a3a"
foreground = "#8a8a8a"
[base16_normal]
msg_urgency = normal
background = "#4e4e4e"
foreground = "#dab997"
[base16_critical]
msg_urgency = critical
background = "#d75f5f"
foreground = "#d5c4a1"
# Every section that isn't one of the above is interpreted as a rules to
# override settings for certain messages.
# Messages can be matched by "appname", "summary", "body", "icon", "category",

Loading…
Cancel
Save