Comment 5 for bug 1232107

Revision history for this message
Jörn Schönyan (joern-schoenyan) wrote :

I finally some time to look into it. At first, my distro is Kubuntu Raring at the very moment, the Onboard version is:
onboard (0.99.0~alpha1~tr1190-0ubuntu1) raring

The d-bus variant has no toggle feature (or I can't find it), so I need again a script for this. Just to mention, there is no delay for restarting, just the first start takes a second or so. I use this script: (maybe it is helpful for someone :D )

#!/bin/bash

if [ "$(pgrep -x onboard)" ]
then
  pkill -x onboard
else
  onboard
fi

exit 0