Fixed timeout

This commit is contained in:
Darkkal44
2023-05-09 12:08:30 +05:30
parent 7a8daf464a
commit 1b2839ef7e
6 changed files with 22 additions and 25 deletions
+3 -4
View File
@@ -86,12 +86,11 @@
### Text ###
font = Museo Sans 10
font = JetBrains Mono Bold 10
# 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 = 1
# Possible values are:
# full: Allow a small subset of html markup in notifications:
# <b>bold</b>
@@ -294,7 +293,7 @@
background = "#282738"
foreground = "#CAA9E0" #FDF1DB #f5bfd2 #ff8585 #ffdfd3 #fec8d8 #FDF1DB #8fbcbb
frame_color = "#282738"
timeout = 0
timeout = 10
# Icon for notifications with critical urgency, uncomment to enable
icon = ~/.config/dunst/images/notification.png
+3 -3
View File
@@ -86,11 +86,11 @@
### Text ###
font = Museo Sans 10
font = JetBrains Mono Bold 10
# 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 = 1
# Possible values are:
# full: Allow a small subset of html markup in notifications:
@@ -294,7 +294,7 @@
background = "#282738"
foreground = "#CAA9E0" #FDF1DB #f5bfd2 #ff8585 #ffdfd3 #fec8d8 #FDF1DB #8fbcbb
frame_color = "#282738"
timeout = 0
timeout = 10
# Icon for notifications with critical urgency, uncomment to enable
icon = ~/.config/dunst/images/notification.png
+3 -4
View File
@@ -85,12 +85,11 @@
idle_threshold = 120
### Text ###
font = Museo Sans 10
font = JetBrains Mono Bold 10
# 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 = 1
# Possible values are:
# full: Allow a small subset of html markup in notifications:
@@ -294,7 +293,7 @@
background = "#232A2E"
foreground = "#86918A"
frame_color = "#232A2E"
timeout = 0
timeout = 10
# Icon for notifications with critical urgency, uncomment to enable
icon = ~/.config/dunst/images/notification.png
+3 -3
View File
@@ -86,11 +86,11 @@
### Text ###
font = Museo Sans 10
font = JetBrains Mono Bold 10
# 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 = 1
# Possible values are:
# full: Allow a small subset of html markup in notifications:
@@ -294,7 +294,7 @@
background = "#0F1212"
foreground = "#607767" #FDF1DB #f5bfd2 #ff8585 #ffdfd3 #fec8d8 #FDF1DB #8fbcbb
frame_color = "#0F1212"
timeout = 0
timeout = 10
# Icon for notifications with critical urgency, uncomment to enable
icon = ~/.config/dunst/images/notification.png
+3 -4
View File
@@ -85,12 +85,11 @@
idle_threshold = 120
### Text ###
font = Museo Sans 10
font = JetBrains Mono Bold 10
# 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 = 1
# Possible values are:
# full: Allow a small subset of html markup in notifications:
@@ -294,7 +293,7 @@
background = "#282738"
foreground = "#ffd5cd" #FDF1DB #f5bfd2 #ff8585 #ffdfd3 #fec8d8 #FDF1DB #8fbcbb
frame_color = "#282738"
timeout = 0
timeout = 10
# Icon for notifications with critical urgency, uncomment to enable
icon = ~/.config/dunst/images/notification.png
@@ -1,3 +1,4 @@
local M = {}
M.base_30 = {
@@ -7,16 +8,16 @@ M.base_30 = {
black2 = "#353446",
one_bg = "#282738",
one_bg2 = "#3a4248",
one_bg3 = "#424a50",
one_bg3 = "#AF9295",
grey = "#a7a09f",
grey_fg = "#efe5e4",
grey_fg2 = "#DDD0B4",
light_grey = "#DDD0B4",
grey_fg2 = "#AA7489",
light_grey = "#E7DABE",
red = "#D5A8AC",
baby_pink = "#E5B9C6",
pink = "#FECDCE",
line = "#3a4248", -- for lines like vertsplit
green = "#A7C080",
green = "#AF9295",
vibrant_green = "#AF9295",
nord_blue = "#E4C7B4",
blue = "#E5B9C6",
@@ -37,7 +38,7 @@ M.base_16 = {
base00 = "#282738",
base01 = "#353446",
base02 = "#3a4248",
base03 = "#424a50",
base03 = "#AF9295",
base04 = "#4a5258",
base05 = "#efe5e4",
base06 = "#DDD0B4",
@@ -59,6 +60,5 @@ M.polish_hl = {
["@tag.delimiter"] = { fg = M.base_30.green },
}
M = require("base46").override_theme(M, "everforest")
return M