Chores: removed useless comments from dunstrc template

master
Meliurwen 3 years ago
parent 9c8130fdae
commit 6c7b3f00ad
Signed by: meliurwen
GPG Key ID: 818A8B35E9F1CE10
  1. 45
      dunst/.config/dunst/dunstrc.template

@ -1,5 +1,9 @@
[global] # Useful resources:
# - manpage
# - /usr/share/doc/dunst/dunstrc.gz
# - https://github.com/dunst-project/dunst/blob/master/dunstrc
[global]
monitor = 0 monitor = 0
follow = mouse follow = mouse
geometry = "330x50-20+40" geometry = "330x50-20+40"
@ -28,8 +32,6 @@ hide_duplicate_count = false
show_indicators = yes show_indicators = yes
icon_position = left icon_position = left
max_icon_size = 32 max_icon_size = 32
## Paths to default icons.
icon_path = ${HOME}/.icons/Adwaita-dark-custom/32x32/status/:/usr/share/icons/hicolor/scalable/apps/:/usr/share/icons/hicolor/48x48/apps/ icon_path = ${HOME}/.icons/Adwaita-dark-custom/32x32/status/:/usr/share/icons/hicolor/scalable/apps/:/usr/share/icons/hicolor/48x48/apps/
sticky_history = yes sticky_history = yes
history_length = 20 history_length = 20
@ -41,59 +43,32 @@ class = Dunst
startup_notification = false startup_notification = false
force_xinerama = false force_xinerama = false
# Experimental features that may or may not work correctly. Do not expect them
# to have a consistent behaviour across releases.
[experimental] [experimental]
# Calculate the dpi to use on a per-monitor basis.
# If this setting is enabled the Xft.dpi value will be ignored and instead
# dunst will attempt to calculate an appropriate dpi value for each monitor
# using the resolution and physical size. This might be useful in setups
# where there are multiple screens with very different dpi values.
per_monitor_dpi = false per_monitor_dpi = false
[shortcuts] [shortcuts]
# Respectively:
# Shortcuts are specified as [modifier+][modifier+]...key # - Close notification.
# Available modifiers are "ctrl", "mod1" (the alt-key), "mod2", # - Close all notifications.
# "mod3" and "mod4" (windows-key). # - Redisplay last message(s).
# Xev might be helpful to find names for keys. # - Context menu.
# Close notification.
close = ctrl+space close = ctrl+space
# Close all notifications.
close_all = ctrl+shift+space close_all = ctrl+shift+space
# Redisplay last message(s).
# On the US keyboard layout "grave" is normally above TAB and left
# of "1". Make sure this key actually exists on your keyboard layout,
# e.g. check output of 'xmodmap -pke'
history = ctrl+grave history = ctrl+grave
# Context menu.
context = ctrl+shift+period context = ctrl+shift+period
[urgency_low] [urgency_low]
# IMPORTANT: colors have to be defined in quotation marks.
# Otherwise the "#" and following would be interpreted as a comment.
background = "#2e2c2e" background = "#2e2c2e"
foreground = "#bb90a3" foreground = "#bb90a3"
timeout = 1 timeout = 1
# Icon for notifications with low urgency, uncomment to enable
#icon = /path/to/icon
[urgency_normal] [urgency_normal]
background = "#2e2c2e" background = "#2e2c2e"
foreground = "#bb90a3" foreground = "#bb90a3"
timeout = 4 timeout = 4
# Icon for notifications with normal urgency, uncomment to enable
#icon = /path/to/icon
[urgency_critical] [urgency_critical]
background = "#262626" background = "#262626"
foreground = "#bb9090" foreground = "#bb9090"
frame_color = "#ff0000" frame_color = "#ff0000"
timeout = 0 timeout = 0
# Icon for notifications with critical urgency, uncomment to enable
#icon = /path/to/icon

Loading…
Cancel
Save