mirror of
https://github.com/denisidoro/navi
synced 2024-11-10 14:04:17 +00:00
14 lines
228 B
Bash
Executable file
14 lines
228 B
Bash
Executable file
#!/bin/bash
|
|
|
|
source "${HOME}/.bashrc"
|
|
export PATH="/usr/local/bin:$PATH"
|
|
|
|
_hack() {
|
|
sed $'s,\x1b\\[[0-9;]*[a-zA-Z],,g'
|
|
}
|
|
|
|
if [ -n "${snippet:-}" ]; then
|
|
navi alfred suggestions | _hack
|
|
else
|
|
navi alfred start | _hack
|
|
fi
|