diff options
Diffstat (limited to '.config')
| -rw-r--r-- | .config/dunst/dunstrc | 18 | ||||
| -rw-r--r-- | .config/zsh/knight | 2 |
2 files changed, 10 insertions, 10 deletions
diff --git a/.config/dunst/dunstrc b/.config/dunst/dunstrc index 5f0b827..01f3dc0 100644 --- a/.config/dunst/dunstrc +++ b/.config/dunst/dunstrc @@ -41,7 +41,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 @@ -61,10 +61,10 @@ # Defines width in pixels of frame around the notification window. # Set to 0 to disable. - frame_width = 1 + frame_width = 3 # Defines color of the frame around the notification window. - frame_color = "#547f62"" + frame_color = "#b1628688" # Define a color for the separator. # possible values are: @@ -213,7 +213,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 = 15 ### Legacy @@ -275,21 +275,21 @@ [urgency_low] # IMPORTANT: colors have to be defined in quotation marks. # Otherwise the "#" and following would be interpreted as a comment. - background = "#191919" - foreground = "#999999" + background = "#28282888" + foreground = "#ebdbb2" timeout = 10 # Icon for notifications with low urgency, uncomment to enable #icon = /path/to/icon [urgency_normal] - background = "#191919" - foreground = "#ffffff" + background = "#28282888" + foreground = "#ebdbb2" timeout = 10 # Icon for notifications with normal urgency, uncomment to enable #icon = /path/to/icon [urgency_critical] - background = "#fd4d4d" + background = "#cc241d88" foreground = "#ffffff" timeout = 0 # Icon for notifications with critical urgency, uncomment to enable diff --git a/.config/zsh/knight b/.config/zsh/knight index 2f30275..84f4ece 100644 --- a/.config/zsh/knight +++ b/.config/zsh/knight @@ -5,7 +5,7 @@ prompt_git_status() { sign="\ue725"; [[ -n "$(git status -s)" ]] && sign="\ufc1a"; git_branch=$(git branch); - echo "%F{5}%f%B%F{0}%K{5} ${sign} ${git_branch##*\* }%f%k%b"; + echo "%F{5}%f%F{0}%K{5}${sign} ${git_branch##*\* }%k%F{5}%k"; fi; } |