20 lines
431 B
Text
20 lines
431 B
Text
|
#!/bin/sh
|
||
|
|
||
|
if [[ -z "$@" ]]; then
|
||
|
echo "^f .*$"
|
||
|
elif [[ "$1" == "--hint" ]]; then
|
||
|
shift
|
||
|
elif [[ "$1" == "--complete" ]]; then
|
||
|
shift
|
||
|
echo "0 $@"
|
||
|
elif [[ "$1" == "--preview" ]]; then
|
||
|
shift
|
||
|
URL="$(echo "$@" | cut -d ' ' -f3-)"
|
||
|
echo "Will open '$URL' in firefox"
|
||
|
elif [[ "$1" == "--run" ]]; then
|
||
|
shift
|
||
|
URL="$(echo "$@" | cut -d ' ' -f3-)"
|
||
|
(nohup xdg-open "$URL" 2>/dev/null &)
|
||
|
sleep 0.01
|
||
|
fi
|