You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdebase/twin/data/twin_focus1.sh

14 lines
345 B

#! /bin/sh
was=
while read line; do
if echo "$line" | grep '^IgnoreFocusStealingClasses=' >/dev/null 2>/dev/null; then
echo "$line" | sed 's/\(^IgnoreFocusStealingClasses=.*$\)/\1,tdeio_uiserver/'
was=1
else
echo "$line"
fi
done
if test -z "$was"; then
echo "IgnoreFocusStealingClasses=tdeio_uiserver"
fi