Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: cumulative update #80

Merged
merged 3 commits into from
Jul 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions icons/notification.xpm
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
/* XPM */
static char * notification_xpm[] = {
"13 16 2 1",
" c #1D1F21",
". c #C5C8C6",
" ",
".............",
".............",
".. ..",
".............",
".. ..",
".............",
".. ..",
".............",
".............",
" .... ",
" ... ",
" .. ",
" ",
" ",
" "};
1 change: 1 addition & 0 deletions neovim/lua/completion.lua
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,4 @@ lsp.gopls.setup({ on_attach = on_attach, capabilities = cap })
lsp.clangd.setup({ on_attach = on_attach, capabilities = cap })
lsp.helm_ls.setup({ on_attach = on_attach, capabilities = cap })
lsp.bashls.setup({ on_attach = on_attach, capabilities = cap })
lsp.ltex.setup({ on_attach = on_attach, capabilities = cap })
4 changes: 1 addition & 3 deletions stalonetray/stalonetrayrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
icon_size 16
geometry 1x1-171+1
geometry 1x1-205+1
max_geometry 0x0

background "#1d1f21"
Expand All @@ -23,5 +23,3 @@ window_layer normal
window_strut auto
window_type dock
xsync false

ignore_classes fcitx
7 changes: 5 additions & 2 deletions xmobar/xmobarrc
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,11 @@ Config
\<icon=.local/share/icons/xpm/mem.xpm/> %memory% \
\<icon=.local/share/icons/xpm/vbar.xpm/> \
\}%UnsafeStdinReader%{ \
\<action=`date-not`>\
\<icon=.local/share/icons/xpm/date.xpm/> %date% </action>"
\<icon=.local/share/icons/xpm/vbar.xpm/> \
\<icon=.local/share/icons/xpm/date.xpm/> %date% \
\<icon=.local/share/icons/xpm/vbar.xpm/> \
\<action=`kill -s USR1 $(pidof deadd-notification-center)`>\
\<icon=.local/share/icons/xpm/notification.xpm/> </action>"
}

-- vim: set filetype=haskell syntax=haskell :
3 changes: 3 additions & 0 deletions zsh/conf.d/00-environment.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,6 @@ path+=(
)

export PATH

# Make sure ~/.local/bin precedes everything else in PATH.
export PATH="$HOME/.local/bin:$PATH"