15 lines
481 B
Bash
15 lines
481 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
SERVICE="syncthing"
|
||
|
if pgrep -x "$SERVICE" >/dev/null
|
||
|
then
|
||
|
notify-send -a $SERVICE -h "string:desktop-entry:org.kde.konsole" "We're already up and running" --icon=dialog-information
|
||
|
|
||
|
else
|
||
|
## notify user that syncthing is restarting
|
||
|
notify-send -a $SERVICE -h "string:desktop-entry:org.kde.konsole" "Starting up because power is back!" --icon=dialog-information
|
||
|
## start syncthing
|
||
|
/usr/bin/syncthing serve --no-browser --logfile=default
|
||
|
fi
|
||
|
|