We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01a426e commit 4e708b0Copy full SHA for 4e708b0
1 file changed
editgraph
@@ -2,7 +2,11 @@
2
which open
3
if [ $? == 0 ]
4
then
5
- open -a 'Google Chrome' https://controlcore-project.github.io/concore-editor/
+ if [[ "$OSTYPE" =~ ^darwin ]]; then
6
+ open -a 'Google Chrome' https://controlcore-project.github.io/concore-editor/
7
+ elif [[ "$OSTYPE" =~ ^linux ]]; then
8
+ xdg-open https://controlcore-project.github.io/concore-editor/
9
+ fi
10
else
11
which xdg-open
12
0 commit comments