UNPKG

record-desktop

Version:

Record gifs and take screenshots on linux, built with electron.

9 lines (7 loc) 211 B
import { exec } from '../utils'; export default function xrectsel() { return exec(`xrectsel`).then(res => { const [width, height, x, y] = res.split(/[\+x]+/); return { width, height, x, y }; }); };