7 lines
141 B
Bash
7 lines
141 B
Bash
|
#!/usr/bin/env bash
|
||
|
if [ "$#" -ge 1 ]; then
|
||
|
exec "$(dirname "$0")"/gyroflow --open "$@"
|
||
|
else
|
||
|
exec "$(dirname "$0")"/gyroflow "$@"
|
||
|
fi
|