summaryrefslogtreecommitdiffstats
path: root/twin/data/twin_focus1.sh
blob: afb05acac4a46c3f423d406a4fe91529c2d8b195 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#! /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