diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.xyz> | 2022-08-02 12:50:36 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.xyz> | 2022-08-02 12:50:36 +0530 |
commit | de5de7ab6358603bfb2c798cf5c2e44a06079aa7 (patch) | |
tree | d97a8acf2c235843e7381bf6847b9d488e16de2f /.config | |
parent | 40c90b49605a33e8e4be378ea78ac264e9f9577d (diff) |
moved dunst notifications to center
Diffstat (limited to '.config')
-rw-r--r-- | .config/dunst/dunstrc | 50 |
1 files changed, 30 insertions, 20 deletions
diff --git a/.config/dunst/dunstrc b/.config/dunst/dunstrc index a12e77e..8982176 100644 --- a/.config/dunst/dunstrc +++ b/.config/dunst/dunstrc @@ -29,14 +29,23 @@ # 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 = "400x500+1890+1060" + + # width = 350 + # height = 300 + # origin = top-left + # offset = 40x40 + + width = 700 + height = 300 + origin = top-center # Turn on the progess bar - progress_bar = true + progress_bar = false # Set the progress bar height. This includes the frame, so make sure # it's at least twice as big as the frame width. - progress_bar_heiht = 10 ## is this a typo? + progress_bar_height = 10 # Set the frame width of the progress bar progress_bar_frame_width = 1 @@ -58,7 +67,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 = 10 # The height of the entire notification. If the height is smaller # than the font height and padding combined, it will be raised @@ -106,11 +115,11 @@ ### Text ### - font = Hack:style=Regular 10 + font = SauceCodePro:style=Regular 11 # The spacing between lines. If the height is smaller than the # font height, it will get raised to the font height. - line_height = 0 + line_height = 3 # Possible values are: # full: Allow a small subset of html markup in notifications: @@ -150,11 +159,11 @@ # Alignment of message text. # Possible values are "left", "center" and "right". - alignment = left + alignment = center # Vertical alignment of message text and icon. # Possible values are "top", "center" and "bottom". - vertical_alignment = center + vertical_alignment = top # Show age of message if message is older than show_age_threshold # seconds. @@ -242,7 +251,7 @@ # corners. # The radius will be automatically lowered if it exceeds half of the # notification height to avoid clipping text and/or icons. - corner_radius = 0 + corner_radius = 10 # Ignore the dbus closeNotification message. # Useful to enforce the timeout set by dunst configuration. Without this @@ -315,7 +324,7 @@ # Close all notifications. Equivalent dunstctl command: # dunstctl close-all # close_all = mod4+shift+n - close_all = mod4+n + # close_all = mod4+n # Redisplay last message(s). Equivalent dunstctl command: # dunstctl history-pop @@ -330,26 +339,27 @@ # Otherwise the "#" and following would be interpreted as a comment. # background = "#FF0032" # foreground = "#FFFFFF" - background = "#232627" - foreground = "#5B76B7" + background = "#0a0b0b" + foreground = "#DFDFDF" timeout = 8 - frame_color = "#FFFFFF" + frame_color = "#b034c2" # Icon for notifications with low urgency, uncomment to enable #icon = /path/to/icon [urgency_normal] - background = "#232627" - foreground = "#5B76B7" + background = "#0a0b0b" + foreground = "#DFDFDF" timeout = 8 - frame_color = "#FFFFFF" + frame_color = "#b034c2" # Icon for notifications with normal urgency, uncomment to enable #icon = /path/to/icon [urgency_critical] - background = "#232627" - foreground = "#5B76B7" - timeout = 0 - frame_color = "#FFFFFF" + background = "#0a0b0b" + foreground = "#FFFFFF" + timeout = 20 + # frame_color = "#f4269c" + frame_color = "#27f5c7" # Icon for notifications with critical urgency, uncomment to enable #icon = /path/to/icon |