mirror of
https://github.com/denisidoro/navi
synced 2024-11-10 14:04:17 +00:00
10 lines
186 B
Bash
Executable file
10 lines
186 B
Bash
Executable file
#!/bin/bash
|
|
|
|
source "${HOME}/.bashrc"
|
|
export PATH="/usr/local/bin:$PATH"
|
|
|
|
if [ -n "${varname:-}" ]; then
|
|
echo -n "$(navi alfred transform)" | tr -d '\n'
|
|
else
|
|
echo -n "$snippet"
|
|
fi
|