Adjust dunst

This commit is contained in:
Marco Thomas
2021-03-28 19:52:14 +02:00
parent d51278a715
commit ec904ffa7e
2 changed files with 12 additions and 14 deletions

View File

@@ -29,7 +29,7 @@
# the top and down respectively. # the top and down respectively.
# The width can be negative. In this case the actual width is the # The width can be negative. In this case the actual width is the
# screen width minus the width defined in within the geometry option. # screen width minus the width defined in within the geometry option.
geometry = "400x20-10+26" geometry = "400x20-15+35"
# Show how many messages are currently hidden (because of geometry). # Show how many messages are currently hidden (because of geometry).
indicate_hidden = yes indicate_hidden = yes
@@ -61,11 +61,10 @@
# Defines width in pixels of frame around the notification window. # Defines width in pixels of frame around the notification window.
# Set to 0 to disable. # Set to 0 to disable.
frame_width = 0 frame_width = 2
# Defines color of the frame around the notification window. # Defines color of the frame around the notification window.
#frame_color = "#e06c75" frame_color = "#D8DEE9"
frame_color = "#98c379"
# Define a color for the separator. # Define a color for the separator.
# possible values are: # possible values are:
@@ -203,7 +202,7 @@
# corners. # corners.
# The radius will be automatically lowered if it exceeds half of the # The radius will be automatically lowered if it exceeds half of the
# notification height to avoid clipping text and/or icons. # notification height to avoid clipping text and/or icons.
corner_radius = 0 corner_radius = 15
### Legacy ### Legacy
@@ -255,22 +254,22 @@
[urgency_low] [urgency_low]
# IMPORTANT: colors have to be defined in quotation marks. # IMPORTANT: colors have to be defined in quotation marks.
# Otherwise the "#" and following would be interpreted as a comment. # Otherwise the "#" and following would be interpreted as a comment.
background = "#1C1B1D" background = "#D8DEE9"
foreground = "#e5e9f0" foreground = "#2E3440"
timeout = 10 timeout = 10
# Icon for notifications with low urgency, uncomment to enable # Icon for notifications with low urgency, uncomment to enable
#icon = /path/to/icon #icon = /path/to/icon
[urgency_normal] [urgency_normal]
background = "#1C1B1D" background = "#D8DEE9"
foreground = "#e5e9f0" foreground = "#2E3440"
timeout = 10 timeout = 10
# Icon for notifications with normal urgency, uncomment to enable # Icon for notifications with normal urgency, uncomment to enable
#icon = /path/to/icon #icon = /path/to/icon
[urgency_critical] [urgency_critical]
background = "#1C1B1D" background = "#D8DEE9"
foreground = "#e5e9f0" foreground = "#2E3440"
timeout = 0 timeout = 0
# Icon for notifications with critical urgency, uncomment to enable # Icon for notifications with critical urgency, uncomment to enable
#icon = /path/to/icon #icon = /path/to/icon

View File

@@ -12,8 +12,7 @@ let mapleader = "\<Space>"
" ============================== vim-plug " ============================== vim-plug
call plug#begin() call plug#begin()
Plug 'joshdick/onedark.vim' " color scheme Plug 'arcticicestudio/nord-vim' " color scheme
Plug 'arcticicestudio/nord-vim'
Plug 'tpope/vim-sleuth' " heuristic file indendation Plug 'tpope/vim-sleuth' " heuristic file indendation
@@ -80,7 +79,7 @@ function! FileNameWithIcon() abort
return winwidth(0) > 70 ? WebDevIconsGetFileTypeSymbol() . ' ' . expand('%:T') : '' return winwidth(0) > 70 ? WebDevIconsGetFileTypeSymbol() . ' ' . expand('%:T') : ''
endfunction endfunction
let g:lightline = { 'colorscheme': 'one' } let g:lightline = { 'colorscheme': 'nord' }
let g:lightline.component_function = { 'gitstatus': 'GitStatus' } let g:lightline.component_function = { 'gitstatus': 'GitStatus' }
let g:lightline.component = { 'filename_with_icon': '%{FileNameWithIcon()}' } let g:lightline.component = { 'filename_with_icon': '%{FileNameWithIcon()}' }