mirror of
https://git.disroot.org/FollieHiyuki/dotfiles.git
synced 2024-11-26 01:08:52 -05:00
8 lines
188 B
Plaintext
8 lines
188 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
if command -v zoxide >/dev/null; then
|
||
|
zoxide query --list | fzf --no-multi
|
||
|
else
|
||
|
awk -F "|" '{print $1}' "$HOME/.local/share/zlua/zlua" | fzf --no-multi | awk '{$1=$1};1'
|
||
|
fi
|