mirror of
https://github.com/denisidoro/navi
synced 2024-11-22 19:43:06 +00:00
10 lines
168 B
Bash
Executable file
10 lines
168 B
Bash
Executable file
#!/bin/bash
|
|
|
|
source "${HOME}/.bashrc"
|
|
export PATH="/usr/local/bin:$PATH"
|
|
|
|
if [ -n "${snippet:-}" ]; then
|
|
echo -n "$(navi alfred check)"
|
|
else
|
|
echo -n "__start"
|
|
fi
|