fe84baef03
as those are definitely not to be handled by kdedglobalaccel besides delivering the event, only KWin can keep track of those. Also add a kconf_update script to dump all the possibly previously created shortcuts that'd block actually using them. svn path=/branches/KDE/4.1/kdebase/workspace/; revision=880850
10 lines
329 B
Bash
10 lines
329 B
Bash
#! /bin/sh
|
|
# remove <number>=<shortcuts> lines for per-window shortcuts that are not supposed to be saved
|
|
while read line; do
|
|
if echo "$line" | grep '^[0-9]\+=' >/dev/null 2>/dev/null; then
|
|
key=`echo "$line" | sed 's/^\([0-9]\+\)=.*$/\1/'`
|
|
echo '# DELETE [kwin]'$key
|
|
else
|
|
echo "$line"
|
|
fi
|
|
done
|