#!/bin/sh
#Ihave absolutley no fucking idea how this works. It shouldn't work.
#Usage: click on widow you wanna resize, and draw it again.
WIN_ID=$(xwininfo | awk '/Window id:/ {print $4}') 
set -e
slop -o | tr 'x+' ' ' | {
	read w h x y
	exec wtp ${x} ${y} ${w} ${h} $WIN_ID &
}
