Replace "bashism" with POSIX syntax.
This commit is contained in:
parent
9770b2eee2
commit
d458369f1d
|
@ -114,7 +114,7 @@ fi
|
||||||
if test x"$action" = x'reset'; then
|
if test x"$action" = x'reset'; then
|
||||||
xwininfo -root -tree \
|
xwininfo -root -tree \
|
||||||
| sed -n 's/^ \(0x[[:xdigit:]]*\).*/\1/p' \
|
| sed -n 's/^ \(0x[[:xdigit:]]*\).*/\1/p' \
|
||||||
| while IFS=$'\n' read wid; do
|
| while IFS=$(printf '\n') read wid; do
|
||||||
xprop -id "$wid" -remove _NET_WM_WINDOW_OPACITY
|
xprop -id "$wid" -remove _NET_WM_WINDOW_OPACITY
|
||||||
done
|
done
|
||||||
exit 0
|
exit 0
|
||||||
|
|
Loading…
Reference in New Issue