Add 2 aliases and edit sxhkdrc
This commit is contained in:
parent
f9843cc6f8
commit
58497f45be
@ -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
|
||||
|
@ -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
|
||||
|
@ -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'
|
||||
|
Loading…
x
Reference in New Issue
Block a user