Add pywal automatic setting on restart
This commit is contained in:
parent
3d1438f657
commit
36fc3e7245
2 changed files with 9 additions and 1 deletions
|
@ -657,8 +657,12 @@ noremap <leader>s :FzfBuffers<cr>
|
|||
noremap <leader>S :FzfHistory<cr>
|
||||
noremap <leader>f :FzfFiles<cr>
|
||||
|
||||
" use wiki.vim to look through document outlines in fzf (only for note
|
||||
" directory atm)
|
||||
nnoremap <leader>l :WikiFzfToc<cr>
|
||||
|
||||
" FZF general full-text search in cwd with rg
|
||||
noremap <C-F> :FzfRg<cr>
|
||||
noremap <leader>F :FzfRg<cr>
|
||||
" FZF note full-text search with notational-velocity like functions (in wiki
|
||||
" directory)
|
||||
noremap <leader>n :NV<cr>
|
||||
|
|
4
.xinitrc
4
.xinitrc
|
@ -65,6 +65,10 @@ type sxhkd >/dev/null 2>&1 && sxhkd &
|
|||
# if greenclip - a clipboard manager, integrated with rofi, is installed, start it up
|
||||
type greenclip >/dev/null 2>&1 && greenclip daemon &
|
||||
|
||||
# if pywal is installed,
|
||||
# -R restores the last colorscheme that was in use.
|
||||
type wal >/dev/null 2>&1 && wal -R &
|
||||
|
||||
# additional config options for Touchpad devices ONLY
|
||||
if [ $(dmesg | grep -c "Touchpad") -gt 0 ]; then
|
||||
# enable touch tapping for XPS13 touchpad - for different devices get the touchpad name with xinput list-prop <TAB>
|
||||
|
|
Loading…
Reference in a new issue