diff options
Diffstat (limited to '.config/shell/aliasrc')
-rw-r--r-- | .config/shell/aliasrc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/shell/aliasrc b/.config/shell/aliasrc index 39a4a0d..64b5b7e 100644 --- a/.config/shell/aliasrc +++ b/.config/shell/aliasrc @@ -11,7 +11,7 @@ for command in mount umount dinitctl pacman updatedb su shutdown poweroff reboot done; unset command se() { - choice="$(fd . --base-directory=$HOME/.local/bin -t f --min-depth=1 | sk)" + choice="$(fd . --base-directory=$HOME/.local/bin -t f --min-depth=1 | fzf)" [ -f "$HOME/.local/bin/$choice" ] && $EDITOR "$HOME/.local/bin/$choice" } |