diff options
Diffstat (limited to '.config/awesome/ui/statusbar/panel/widgets/notifs/consts.lua')
| -rw-r--r-- | .config/awesome/ui/statusbar/panel/widgets/notifs/consts.lua | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.config/awesome/ui/statusbar/panel/widgets/notifs/consts.lua b/.config/awesome/ui/statusbar/panel/widgets/notifs/consts.lua new file mode 100644 index 0000000..c864483 --- /dev/null +++ b/.config/awesome/ui/statusbar/panel/widgets/notifs/consts.lua @@ -0,0 +1,13 @@ +local qcolor = require "quarrel.color" + +local C = {} + +C.NOTIF_TIMEOUT = 3 +C.LEVEL_COLORS = { + debug = qcolor.palette.purple(), + info = qcolor.palette.blue(), + warn = qcolor.palette.orange(), + error = qcolor.palette.red(), +} + +return C |
