summaryrefslogtreecommitdiffstats
path: root/scripts/kdekillall
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/kdekillall')
-rwxr-xr-xscripts/kdekillall6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/kdekillall b/scripts/kdekillall
index c08b2ad8..69c39c4f 100755
--- a/scripts/kdekillall
+++ b/scripts/kdekillall
@@ -5,7 +5,7 @@ case $1 in
esac
if [ $# = 0 ]; then
echo "Usage: $0 [-<signal>] <process>"
- echo 'Kills the process "kdeinit: <process> with signal <signal>"'
+ echo 'Kills the process "tdeinit: <process> with signal <signal>"'
echo "if <signal> is not specified, it defaults to SIGTERM,"
echo "see kill -l for a list of possible Q_SIGNALS"
else
@@ -13,11 +13,11 @@ else
if test -z "$list"; then
# on newer Linux kernels (>= 2.6.10) KDE is able to use
# prctl(PR_SET_NAME) to change the process name...
- list=$(ps auwx | grep $USER | awk "/\[kdeinit\] $1/ {print \$2}")
+ list=$(ps auwx | grep $USER | awk "/\[tdeinit\] $1/ {print \$2}")
fi
if test -z "$list"; then
# with KDE 3.4 we changed the view again...
- list=$(ps auwx | grep $USER | awk "/$1 \[kdeinit\]/ {print \$2}")
+ list=$(ps auwx | grep $USER | awk "/$1 \[tdeinit\]/ {print \$2}")
fi
if test -n "$list"; then
kill $signal $list