9 lines
90 B
Bash
9 lines
90 B
Bash
#!/bin/sh
|
|
#
|
|
|
|
killall matchbox-keyboard
|
|
if [ ! $? -eq 0 ]
|
|
then
|
|
matchbox-keyboard &
|
|
fi
|