summaryrefslogtreecommitdiffstats
path: root/ksysguard/gui/kpm.c
diff options
context:
space:
mode:
Diffstat (limited to 'ksysguard/gui/kpm.c')
-rw-r--r--ksysguard/gui/kpm.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/ksysguard/gui/kpm.c b/ksysguard/gui/kpm.c
new file mode 100644
index 000000000..5ce25516a
--- /dev/null
+++ b/ksysguard/gui/kpm.c
@@ -0,0 +1,8 @@
+/* A small wrapper to call ksysguard --showprocesses */
+
+#include <unistd.h>
+
+int main()
+{
+ return execlp( "ksysguard", "ksysguard", "--showprocesses", 0 );
+}