9 lines
107 B
Bash
Executable file
9 lines
107 B
Bash
Executable file
#!/bin/bash
|
|
|
|
ID=$(pgrep oxidash-gtk)
|
|
|
|
if [ "$ID" != "" ]; then
|
|
killall oxidash-gtk
|
|
else
|
|
oxidash-gtk
|
|
fi
|