scope shootSystemWindow.

// Constants for Peppermint Linux
static int #mysteriousConstant1 = -24;
static int #mysteriousConstant2 = 26;
static int #mysteriousConstant3 = 4;

static BufferedImage shootSystemWindow(wmctrl_Entry e) {
  activateSystemWindow(e);
  sleepSeconds(1);
  ret shootScreenArea(
    growRectLeft(mysteriousConstant3,
    growRectUpwards(mysteriousConstant2,
      translateRectY(e.bounds, mysteriousConstant1))));
}

end scope