Code:
  
alias testmove {
  if $isid { 
    if (%w.x != $window(-3).x) || (%w.y != $window(-3).y) {
      return $true
    }
    else { return $false } 
    set %w.x $window(-3).x
    set %w.y $window(-3).y
  }
}

$testmove will return $true if the window has moved since the last time the alias was called. you could use this with a timer and trigger a /signal or an alias, whatever you prefer. smile


$maybe