You are not logged in.
at the top-right of the screenshot, the dunst notification has a "(A)" beside the title.
just wondering if there is a way to remove that.
Thank you
Last edited by beeffucker3000 (2023-06-26 15:16:52)
Offline
What's the content of your config?
~/.config/dunst/dunstrcThe "(A)" tag you're seeing in Dunst notifications is likely the urgency level of the notification, indicating the importance of a notification. Dunst uses these symbols to show the level of urgency:
(A): Actionable
(C): Critical
(N): Normal
Last edited by cmiranda (2023-06-27 02:01:16)
Offline
This is my ~/.config/dunst/dunstrc
# See dunst(5) for all configuration options
[global]
### Display ###
monitor = 0
follow = none
### Geometry ###
width = 300
height = 300
origin = top-right
offset = 10x50
scale = 0
notification_limit = 20
shrink = yes
icon_corner_radius = 0
indicate_hidden = yes
### Behaviour ###
transparency = 0
separator_height = 4
padding = 12
horizontal_padding = 15
text_icon_padding = 15
frame_width = 5
frame_color = "#83a598"
gap_size = 0
separator_color = "#20242d"
sort = yes
idle_threshold = 120
### Text ###
font = Fira Code Nerd Font 11
line_height = 6
notification_height = 1
markup = full
format = "<b>%s</b>\n%b"
alignment = left
vertical_alignment = center
show_age_threshold = 60
ellipsize = middle
ignore_newline = no
stack_duplicates = false
hide_duplicate_count = false
show_indicators = yes
word_wrap = yes
### Icons ###
enable_recursive_icon_lookup = true
icon_theme = Adwaita
icon_theme = "Adwaita, breeze"
icon_position = left
min_icon_size = 32
max_icon_size = 60
# Paths to default icons (only neccesary when not using recursive icon lookup)
# icon_path = /usr/share/icons/gnome/16x16/status/:/usr/share/icons/gnome/16x16/devices/
### History ###
sticky_history = yes
history_length = 20
### Misc/Advanced ###
browser = google-chrome-stable
always_run_script = true
title = Dunst
class = Dunst
corner_radius = 0
ignore_dbusclose = false
### mouse
mouse_left_click = close_current
mouse_middle_click = do_action, close_current
mouse_right_click = close_all
[urgency_low]
# IMPORTANT: colors have to be defined in quotation marks.
# Otherwise the "#" and following would be interpreted as a comment.
background = "#282828"
foreground = "#a89984"
timeout = 10
# Icon for notifications with low urgency, uncomment to enable
#default_icon = /path/to/icon
[urgency_normal]
background = "#282828"
foreground = "#a89984"
timeout = 10
# Icon for notifications with normal urgency, uncomment to enable
#default_icon = /path/to/icon
[urgency_critical]
background = "#900000"
foreground = "#ffffff"
frame_color = "#f2e5bc"
timeout = 0
# Icon for notifications with critical urgency, uncomment to enable
#default_icon = /path/to/icon
# vim: ft=cfgOffline