Add 2 aliases and edit sxhkdrc

This commit is contained in:
Wiktor Zykubek 2020-03-18 11:23:00 +01:00
parent b2b6d92b9f
commit f737ea338e
3 changed files with 5 additions and 2 deletions

View File

@ -25,7 +25,7 @@ super + r
st -e vifm
# fzf
super + f
st -e zsh -c 'vifm "$(find ./* -type d | fzf)";'
st -e zsh -c 'vifm "$(find . -type d | fzf)";'
# rofi
super + d
rofi -show drun

View File

@ -25,7 +25,7 @@ super + r
st -e vifm
# fzf
super + f
st -e zsh -c 'vifm "$(find ./* -type d | fzf)";'
st -e zsh -c 'vifm "$(find . -type d | fzf)";'
# rofi
super + d
rofi -show drun

View File

@ -50,7 +50,10 @@ alias gh-rv='gh repo view'
# fzf
ff() { find ./* -type f | fzf | xargs -r $EDITOR ;}
fd() { vifm "$(find ./* -type d | fzf)" ; clear }
fhd() { find . -type d | fzf | xargs -r $EDITOR ; }
fhf() { find . -type f | fzf | xargs -r $EDITOR ; }
alias f='ff'
alias fa='fhf'
# other
alias pass='keepassxc-cli clip ~/Passwords/keepass.kdbx'