Skip to content

Instantly share code, notes, and snippets.

@deckerego
Created December 6, 2013 22:12
Show Gist options
  • Save deckerego/7833030 to your computer and use it in GitHub Desktop.
Save deckerego/7833030 to your computer and use it in GitHub Desktop.
Kill KDE file indexing collectors and controllers
#/bin/bash
NEPOMUK_PROCS=`qdbus | grep "nepomuk"`
for NEPOMUK_PROC in $NEPOMUK_PROCS; do
echo "Quitting $NEPOMUK_PROC"
qdbus $NEPOMUK_PROC /MainApplication quit
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment