kdeconnect-kde/letsgo.sh

22 lines
393 B
Bash
Raw Normal View History

2013-06-17 11:23:08 +01:00
#!/bin/bash
2013-06-06 04:57:06 +01:00
2013-06-25 17:08:34 +01:00
#Source bashrc to define kdebuild and environment variables
2013-06-06 13:26:53 +01:00
#http://techbase.kde.org/Getting_Started/Build/Environment
2013-06-06 04:57:06 +01:00
. ~/.bashrc
KDE_BUILD_CONFIRMATION=false
if kdebuild; then
killall kded4
while killall -9 kded4; do
true
done
2013-06-25 17:08:34 +01:00
2013-06-06 04:57:06 +01:00
#qdbus org.kde.kded /kded unloadModule androidshine
#qdbus org.kde.kded /kded loadModule androidshine
kded4 2>&1 | grep -v "^kded(" &
fi