18 lines
514 B
Bash
Executable File
18 lines
514 B
Bash
Executable File
#!/bin/bash
|
|
|
|
source /opt/gfa/python 3.5
|
|
|
|
if [ "$#" -eq 0 ]; then
|
|
if [ "$(hostname)" = "saresb-cons-03.psi.ch" ]; then
|
|
pylauncher -m /sf/bernina/config/launcher/launcher_mapping --position -3520 -120 /sf/bernina/config/launcher/S_Bernina.json &
|
|
else
|
|
pylauncher -m /sf/bernina/config/launcher/launcher_mapping --position 80 -120 /sf/bernina/config/launcher/S_Bernina.json &
|
|
fi
|
|
|
|
else
|
|
pylauncher -m /sf/bernina/config/launcher/launcher_mapping $@ &
|
|
fi
|
|
sleep 2
|
|
wmctrl -r "SF-Bernina Launcher" -b add,above
|
|
|