10 lines
209 B
Bash
10 lines
209 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
RUNNING=$(pgrep todotxt-machine)
|
||
|
|
||
|
if [ "$RUNNING" ]; then
|
||
|
kill $RUNNING 2&>1 /dev/null
|
||
|
else
|
||
|
/usr/bin/xterm -e "/home/jpm/.local/bin/todotxt-machine /home/jpm/nextcloud/phone/todo.txt"
|
||
|
fi
|