Void Linux workstation powered by niri, Fish and NeoVim. Contains scripts, browser extensions, custom XBPS packages, and typst plugins. git.anhgelus.world/anhgelus/dotfiles
void niri fish neovim nvim vim dotfiles linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat(dunst): replace by mako

+30 -498
-498
config/dunst/dunstrc
··· 1 - # See dunst(5) for all configuration options 2 - 3 - [global] 4 - ### Display ### 5 - 6 - # Which monitor should the notifications be displayed on. 7 - monitor = 1 8 - 9 - # Display notification on focused monitor. Possible modes are: 10 - # mouse: follow mouse pointer 11 - # keyboard: follow window with keyboard focus 12 - # none: don't follow anything 13 - # 14 - # "keyboard" needs a window manager that exports the 15 - # _NET_ACTIVE_WINDOW property. 16 - # This should be the case for almost all modern window managers. 17 - # 18 - # If this option is set to mouse or keyboard, the monitor option 19 - # will be ignored. 20 - follow = none 21 - 22 - ### Geometry ### 23 - 24 - # The width of the window, excluding the frame. 25 - # dynamic width from 0 to 300 26 - # width = (0, 300) 27 - # constant width of 300 28 - width = 300 29 - 30 - # The height of a single notification, excluding the frame. 31 - # dynamic height from 0 to 300 32 - height = (0, 300) 33 - # constant height of 300 34 - # height = 300 35 - # NOTE: Dunst from version 1.11 and older don't support dynamic height 36 - # and the given value is treated as the maximum height 37 - 38 - # Position the notification in the top right corner 39 - origin = top-right 40 - 41 - # Offset from the origin 42 - # NOTE: Dunst from version 1.11 and older use this alternative notation 43 - # offset = 10x50 44 - offset = (25, 25) 45 - 46 - # Scale factor. It is auto-detected if value is 0. 47 - scale = 0 48 - 49 - # Maximum number of notification (0 means no limit) 50 - notification_limit = 5 51 - 52 - ### Progress bar ### 53 - 54 - # Turn on the progress bar. It appears when a progress hint is passed with 55 - # for example dunstify -h int:value:12 56 - progress_bar = true 57 - 58 - # Set the progress bar height. This includes the frame, so make sure 59 - # it's at least twice as big as the frame width. 60 - progress_bar_height = 10 61 - 62 - # Set the frame width of the progress bar 63 - progress_bar_frame_width = 1 64 - 65 - # Set the minimum width for the progress bar 66 - progress_bar_min_width = 150 67 - 68 - # Set the maximum width for the progress bar 69 - progress_bar_max_width = 300 70 - 71 - # Corner radius for the progress bar. 0 disables rounded corners. 72 - progress_bar_corner_radius = 0 73 - 74 - # Define which corners to round when drawing the progress bar. If progress_bar_corner_radius 75 - # is set to 0 this option will be ignored. 76 - progress_bar_corners = all 77 - 78 - # Corner radius for the icon image. 79 - icon_corner_radius = 0 80 - 81 - # Define which corners to round when drawing the icon image. If icon_corner_radius 82 - # is set to 0 this option will be ignored. 83 - icon_corners = all 84 - 85 - # Show how many messages are currently hidden (because of 86 - # notification_limit). 87 - indicate_hidden = yes 88 - 89 - # The transparency of the window. Range: [0; 100]. 90 - # This option will only work if a compositing window manager is 91 - # present (e.g. xcompmgr, compiz, etc.). (X11 only) 92 - transparency = 0 93 - 94 - # Draw a line of "separator_height" pixel height between two 95 - # notifications. 96 - # Set to 0 to disable. 97 - # If gap_size is greater than 0, this setting will be ignored. 98 - separator_height = 2 99 - 100 - # Padding between text and separator. 101 - padding = 8 102 - 103 - # Horizontal padding. 104 - horizontal_padding = 8 105 - 106 - # Padding between text and icon. 107 - text_icon_padding = 0 108 - 109 - # Defines width in pixels of frame around the notification window. 110 - # Set to 0 to disable. 111 - frame_width = 3 112 - 113 - # Defines color of the frame around the notification window. 114 - frame_color = "#84A98C" 115 - 116 - # Size of gap to display between notifications - requires a compositor. 117 - # If value is greater than 0, separator_height will be ignored and a border 118 - # of size frame_width will be drawn around each notification instead. 119 - # Click events on gaps do not currently propagate to applications below. 120 - gap_size = 0 121 - 122 - # Define a color for the separator. 123 - # possible values are: 124 - # * auto: dunst tries to find a color fitting to the background; 125 - # * foreground: use the same color as the foreground; 126 - # * frame: use the same color as the frame; 127 - # * anything else will be interpreted as a X color. 128 - separator_color = frame 129 - 130 - # Sort type. 131 - # possible values are: 132 - # * id: sort by id 133 - # * urgency_ascending: sort by urgency (low then normal then critical) 134 - # * urgency_descending: sort by urgency (critical then normal then low) 135 - # * update: sort by update (most recent always at the top) 136 - sort = yes 137 - 138 - # Don't remove messages, if the user is idle (no mouse or keyboard input) 139 - # for longer than idle_threshold seconds. 140 - # Set to 0 to disable. 141 - # A client can set the 'transient' hint to bypass this. See the rules 142 - # section for how to disable this if necessary 143 - # idle_threshold = 120 144 - 145 - ### Text ### 146 - 147 - font = Inter 12 148 - 149 - # The spacing between lines. If the height is smaller than the 150 - # font height, it will get raised to the font height. 151 - line_height = 16 152 - 153 - # Possible values are: 154 - # full: Allow a small subset of html markup in notifications: 155 - # <b>bold</b> 156 - # <i>italic</i> 157 - # <s>strikethrough</s> 158 - # <u>underline</u> 159 - # 160 - # For a complete reference see 161 - # <https://docs.gtk.org/Pango/pango_markup.html>. 162 - # 163 - # strip: This setting is provided for compatibility with some broken 164 - # clients that send markup even though it's not enabled on the 165 - # server. Dunst will try to strip the markup but the parsing is 166 - # simplistic so using this option outside of matching rules for 167 - # specific applications *IS GREATLY DISCOURAGED*. 168 - # 169 - # no: Disable markup parsing, incoming notifications will be treated as 170 - # plain text. Dunst will not advertise that it has the body-markup 171 - # capability if this is set as a global setting. 172 - # 173 - # It's important to note that markup inside the format option will be parsed 174 - # regardless of what this is set to. 175 - markup = full 176 - 177 - # The format of the message. Possible variables are: 178 - # %a appname 179 - # %s summary 180 - # %b body 181 - # %c category 182 - # %S stack_tag 183 - # %i iconname (including its path) 184 - # %I iconname (without its path) 185 - # %p progress value if set ([ 0%] to [100%]) or nothing 186 - # %n progress value if set without any extra characters 187 - # %% literal % 188 - # Markup is allowed 189 - format = "<b>%s</b>\n%b" 190 - 191 - # Alignment of message text. 192 - # Possible values are "left", "center" and "right". 193 - alignment = left 194 - 195 - # Vertical alignment of message text and icon. 196 - # Possible values are "top", "center" and "bottom". 197 - vertical_alignment = center 198 - 199 - # Show age of message if message is older than show_age_threshold 200 - # seconds. 201 - # Set to -1 to disable. 202 - show_age_threshold = 60 203 - 204 - # Specify where to make an ellipsis in long lines. 205 - # Possible values are "start", "middle" and "end". 206 - ellipsize = middle 207 - 208 - # Ignore newlines '\n' in notifications. 209 - ignore_newline = no 210 - 211 - # Stack together notifications with the same content 212 - stack_duplicates = true 213 - 214 - # Hide the count of stacked notifications with the same content 215 - hide_duplicate_count = false 216 - 217 - # Display indicators for URLs (U) and actions (A). 218 - show_indicators = yes 219 - 220 - ### Icons ### 221 - 222 - # Recursive icon lookup. You can set a single theme, instead of having to 223 - # define all lookup paths. 224 - enable_recursive_icon_lookup = true 225 - 226 - # Set icon theme (only used for recursive icon lookup) 227 - icon_theme = Adwaita 228 - # You can also set multiple icon themes, with the leftmost one being used first. 229 - # icon_theme = "Adwaita, breeze" 230 - 231 - # Align icons left/right/top/off 232 - icon_position = left 233 - 234 - # Scale small icons up to this size, set to 0 to disable. Helpful 235 - # for e.g. small files or high-dpi screens. In case of conflict, 236 - # max_icon_size takes precedence over this. 237 - min_icon_size = 32 238 - 239 - # Scale larger icons down to this size, set to 0 to disable 240 - max_icon_size = 128 241 - 242 - # Paths to default icons (only necessary when not using recursive icon lookup) 243 - icon_path = /usr/share/icons/gnome/16x16/status/:/usr/share/icons/gnome/16x16/devices/ 244 - 245 - ### History ### 246 - 247 - # Should a notification popped up from history be sticky or timeout 248 - # as if it would normally do. 249 - sticky_history = yes 250 - 251 - # Maximum amount of notifications kept in history 252 - history_length = 20 253 - 254 - ### Misc/Advanced ### 255 - 256 - # dmenu path. 257 - dmenu = /usr/bin/dmenu -p dunst: 258 - 259 - # Browser for opening urls in context menu. 260 - browser = /usr/bin/xdg-open 261 - 262 - # Always run rule-defined scripts, even if the notification is suppressed 263 - always_run_script = true 264 - 265 - # Define the title of the windows spawned by dunst (X11 only) 266 - title = Dunst 267 - 268 - # Define the class of the windows spawned by dunst (X11 only) 269 - class = Dunst 270 - 271 - # Define the corner radius of the notification window 272 - # in pixel size. If the radius is 0, you have no rounded 273 - # corners. 274 - # The radius will be automatically lowered if it exceeds half of the 275 - # notification height to avoid clipping text and/or icons. 276 - corner_radius = 0 277 - 278 - # Define which corners to round when drawing the window. If the corner radius 279 - # is set to 0 this option will be ignored. 280 - # 281 - # Comma-separated list of the corners. The accepted corner values are bottom-right, 282 - # bottom-left, top-right, top-left, top, bottom, left, right or all. 283 - corners = all 284 - 285 - # Ignore the dbus closeNotification message. 286 - # Useful to enforce the timeout set by dunst configuration. Without this 287 - # parameter, an application may close the notification sent before the 288 - # user defined timeout. 289 - ignore_dbusclose = false 290 - 291 - ### Wayland ### 292 - # These settings are Wayland-specific. They have no effect when using X11 293 - 294 - # Uncomment this if you want to let notifications appear under fullscreen 295 - # applications (default: overlay) 296 - # layer = top 297 - 298 - # Set this to true to use X11 output on Wayland. 299 - force_xwayland = false 300 - 301 - ### Legacy 302 - 303 - # Use the Xinerama extension instead of RandR for multi-monitor support. 304 - # This setting is provided for compatibility with older nVidia drivers that 305 - # do not support RandR and using it on systems that support RandR is highly 306 - # discouraged. 307 - # 308 - # By enabling this setting dunst will not be able to detect when a monitor 309 - # is connected or disconnected which might break follow mode if the screen 310 - # layout changes. 311 - force_xinerama = false 312 - 313 - ### mouse 314 - 315 - # Defines list of actions for each mouse event 316 - # Possible values are: 317 - # * none: Don't do anything. 318 - # * do_action: Invoke the action determined by the action_name rule. If there is no 319 - # such action, open the context menu. 320 - # * open_url: If the notification has exactly one url, open it. If there are multiple 321 - # ones, open the context menu. 322 - # * close_current: Close current notification. 323 - # * remove_current: Remove current notification from history. 324 - # * close_all: Close all notifications. 325 - # * context: Open context menu for the notification. 326 - # * context_all: Open context menu for all notifications. 327 - # These values can be strung together for each mouse event, and 328 - # will be executed in sequence. 329 - mouse_left_click = close_current 330 - mouse_middle_click = do_action, close_current 331 - mouse_right_click = close_all 332 - 333 - # Experimental features that may or may not work correctly. Do not expect them 334 - # to have a consistent behaviour across releases. 335 - [experimental] 336 - # Calculate the dpi to use on a per-monitor basis. 337 - # If this setting is enabled the Xft.dpi value will be ignored and instead 338 - # dunst will attempt to calculate an appropriate dpi value for each monitor 339 - # using the resolution and physical size. This might be useful in setups 340 - # where there are multiple screens with very different dpi values. 341 - per_monitor_dpi = false 342 - 343 - 344 - [urgency_low] 345 - # IMPORTANT: colors have to be defined in quotation marks. 346 - # Otherwise the "#" and following would be interpreted as a comment. 347 - background = "#2F3E46" 348 - foreground = "#888888" 349 - frame_color = "#52796F" 350 - timeout = 5 351 - # Icon for notifications with low urgency 352 - default_icon = dialog-information 353 - 354 - [urgency_normal] 355 - background = "#2F3E46" 356 - foreground = "#ffffff" 357 - timeout = 10 358 - override_pause_level = 30 359 - # Icon for notifications with normal urgency 360 - default_icon = dialog-information 361 - 362 - [urgency_critical] 363 - background = "#52796F" 364 - foreground = "#ffffff" 365 - frame_color = "#ff0000" 366 - timeout = 0 367 - override_pause_level = 60 368 - # Icon for notifications with critical urgency 369 - default_icon = dialog-warning 370 - 371 - # Every section that isn't one of the above is interpreted as a rules to 372 - # override settings for certain messages. 373 - # 374 - # Messages can be matched by 375 - # appname (discouraged, see desktop_entry) 376 - # body 377 - # category 378 - # desktop_entry 379 - # icon 380 - # match_transient 381 - # msg_urgency 382 - # stack_tag 383 - # summary 384 - # 385 - # and you can override the 386 - # background 387 - # foreground 388 - # format 389 - # frame_color 390 - # fullscreen 391 - # new_icon 392 - # set_stack_tag 393 - # set_transient 394 - # set_category 395 - # timeout 396 - # urgency 397 - # icon_position 398 - # skip_display 399 - # history_ignore 400 - # action_name 401 - # word_wrap 402 - # ellipsize 403 - # alignment 404 - # hide_text 405 - # override_pause_level 406 - # 407 - # Shell-like globbing will get expanded. 408 - # 409 - # Instead of the appname filter, it's recommended to use the desktop_entry filter. 410 - # GLib based applications export their desktop-entry name. In comparison to the appname, 411 - # the desktop-entry won't get localized. 412 - # 413 - # You can also allow a notification to appear even when paused. Notification will appear whenever notification's override_pause_level >= dunst's paused level. 414 - # This can be used to set partial pause modes, where more urgent notifications get through, but less urgent stay paused. To do that, you can override the following in the rules: 415 - # override_pause_level = X 416 - 417 - # SCRIPTING 418 - # You can specify a script that gets run when the rule matches by 419 - # setting the "script" option. 420 - # The script will be called as follows: 421 - # script appname summary body icon urgency 422 - # where urgency can be "LOW", "NORMAL" or "CRITICAL". 423 - # 424 - # NOTE: It might be helpful to run dunst -print in a terminal in order 425 - # to find fitting options for rules. 426 - 427 - # Disable the transient hint so that idle_threshold cannot be bypassed from the 428 - # client 429 - #[transient_disable] 430 - # match_transient = yes 431 - # set_transient = no 432 - # 433 - # Make the handling of transient notifications more strict by making them not 434 - # be placed in history. 435 - #[transient_history_ignore] 436 - # match_transient = yes 437 - # history_ignore = yes 438 - 439 - # fullscreen values 440 - # show: show the notifications, regardless if there is a fullscreen window opened 441 - # delay: displays the new notification, if there is no fullscreen window active 442 - # If the notification is already drawn, it won't get undrawn. 443 - # pushback: same as delay, but when switching into fullscreen, the notification will get 444 - # withdrawn from screen again and will get delayed like a new notification 445 - #[fullscreen_delay_everything] 446 - # fullscreen = delay 447 - #[fullscreen_show_critical] 448 - # msg_urgency = critical 449 - # fullscreen = show 450 - 451 - #[espeak] 452 - # summary = "*" 453 - # script = dunst_espeak.sh 454 - 455 - #[script-test] 456 - # summary = "*script*" 457 - # script = dunst_test.sh 458 - 459 - #[ignore] 460 - # # This notification will not be displayed 461 - # summary = "foobar" 462 - # skip_display = true 463 - 464 - #[history-ignore] 465 - # # This notification will not be saved in history 466 - # summary = "foobar" 467 - # history_ignore = yes 468 - 469 - #[skip-display] 470 - # # This notification will not be displayed, but will be included in the history 471 - # summary = "foobar" 472 - # skip_display = yes 473 - 474 - #[signed_on] 475 - # appname = Pidgin 476 - # summary = "*signed on*" 477 - # urgency = low 478 - # 479 - #[signed_off] 480 - # appname = Pidgin 481 - # summary = *signed off* 482 - # urgency = low 483 - # 484 - #[says] 485 - # appname = Pidgin 486 - # summary = *says* 487 - # urgency = critical 488 - # 489 - #[twitter] 490 - # appname = Pidgin 491 - # summary = *twitter.com* 492 - # urgency = normal 493 - # 494 - #[stack-volumes] 495 - # appname = "some_volume_notifiers" 496 - # set_stack_tag = "volume" 497 - # 498 - # vim: ft=cfg
+30
config/mako/config
··· 1 + sort=-time 2 + layer=overlay 3 + 4 + width=350 5 + height=96 6 + 7 + background-color=#2F3E46 8 + border-size=2 9 + border-color=#84A98C 10 + border-radius=0 11 + 12 + icons=1 13 + max-icon-size=96 14 + 15 + default-timeout=10000 16 + ignore-timeout=0 17 + 18 + font=Inter 12 19 + 20 + outer-margin=25 21 + margin=10 22 + padding=0,5,0,0 23 + 24 + [urgency=low] 25 + border-color=#52796F 26 + default-timeout=5000 27 + 28 + [urgency=critical] 29 + border-color=#bf616a 30 + default-timeout=0