feat: format mako notifications

This commit is contained in:
max_richter 2022-01-19 14:15:58 +01:00
parent 3d32043a89
commit 7ba32f03f5
2 changed files with 96 additions and 87 deletions

View File

@ -2,20 +2,27 @@ sort=-time
layer=overlay layer=overlay
background-color=#ffffff background-color=#ffffff
width=300 width=300
height=110 height=300
border-color=#000000 border-color=#000000
border-radius=0 border-radius=2
icons=0 icons=0
max-icon-size=64 max-icon-size=64
default-timeout=5000 default-timeout=5000
ignore-timeout=1 ignore-timeout=1
font=monospace 14 font=FiraMono Nerd Font 14
text-color=#000000 text-color=#000000
margin=5
padding=0,20,20,10
border-size=5
[urgency=low] [urgency=low]
border-size=0
border-color=#000000 border-color=#000000
background-color=#ffffff99
[urgency=normal] [urgency=normal]
border-size=0
progress-color=over #ff0000
border-color=#d08770 border-color=#d08770
[urgency=high] [urgency=high]

View File

@ -1,5 +1,5 @@
return require("packer").startup(function() return require("packer").startup(
function()
-- Let packer manage itself -- Let packer manage itself
use "wbthomason/packer.nvim" use "wbthomason/packer.nvim"
@ -10,11 +10,11 @@ return require("packer").startup(function()
use "nathom/filetype.nvim" use "nathom/filetype.nvim"
use "alexghergh/nvim-tmux-navigation" use "alexghergh/nvim-tmux-navigation"
use 'lervag/vimtex' use "lervag/vimtex"
-- Theming Section -- Theming Section
-- use 'folke/tokyonight.nvim' -- use 'folke/tokyonight.nvim'
use 'EdenEast/nightfox.nvim' use "EdenEast/nightfox.nvim"
use "xiyaowong/nvim-transparent" use "xiyaowong/nvim-transparent"
-- Layout Plugins -- Layout Plugins
@ -35,6 +35,8 @@ return require("packer").startup(function()
use "junegunn/fzf" use "junegunn/fzf"
use "nvim-telescope/telescope.nvim" use "nvim-telescope/telescope.nvim"
use "sakhnik/nvim-gdb"
-- Postman like features -- Postman like features
use "NTBBloodbath/rest.nvim" use "NTBBloodbath/rest.nvim"
@ -75,8 +77,8 @@ return require("packer").startup(function()
use "windwp/nvim-autopairs" use "windwp/nvim-autopairs"
use "neoclide/jsonc.vim" use "neoclide/jsonc.vim"
use { use {
'nvim-treesitter/nvim-treesitter', "nvim-treesitter/nvim-treesitter",
run = ':TSUpdate' run = ":TSUpdate"
} }
-- Preview Markdown -- Preview Markdown
@ -92,5 +94,5 @@ return require("packer").startup(function()
-- Database Feature -- Database Feature
use "tpope/vim-dadbod" use "tpope/vim-dadbod"
use "kristijanhusak/vim-dadbod-ui" use "kristijanhusak/vim-dadbod-ui"
end
end) )