Add 2 aliases and edit sxhkdrc
This commit is contained in:
parent
b2b6d92b9f
commit
f737ea338e
@ -25,7 +25,7 @@ super + r
|
|||||||
st -e vifm
|
st -e vifm
|
||||||
# fzf
|
# fzf
|
||||||
super + f
|
super + f
|
||||||
st -e zsh -c 'vifm "$(find ./* -type d | fzf)";'
|
st -e zsh -c 'vifm "$(find . -type d | fzf)";'
|
||||||
# rofi
|
# rofi
|
||||||
super + d
|
super + d
|
||||||
rofi -show drun
|
rofi -show drun
|
||||||
|
@ -25,7 +25,7 @@ super + r
|
|||||||
st -e vifm
|
st -e vifm
|
||||||
# fzf
|
# fzf
|
||||||
super + f
|
super + f
|
||||||
st -e zsh -c 'vifm "$(find ./* -type d | fzf)";'
|
st -e zsh -c 'vifm "$(find . -type d | fzf)";'
|
||||||
# rofi
|
# rofi
|
||||||
super + d
|
super + d
|
||||||
rofi -show drun
|
rofi -show drun
|
||||||
|
@ -50,7 +50,10 @@ alias gh-rv='gh repo view'
|
|||||||
# fzf
|
# fzf
|
||||||
ff() { find ./* -type f | fzf | xargs -r $EDITOR ;}
|
ff() { find ./* -type f | fzf | xargs -r $EDITOR ;}
|
||||||
fd() { vifm "$(find ./* -type d | fzf)" ; clear }
|
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 f='ff'
|
||||||
|
alias fa='fhf'
|
||||||
|
|
||||||
# other
|
# other
|
||||||
alias pass='keepassxc-cli clip ~/Passwords/keepass.kdbx'
|
alias pass='keepassxc-cli clip ~/Passwords/keepass.kdbx'
|
||||||
|
Loading…
x
Reference in New Issue
Block a user