Skip to content

Commit

Permalink
Fix parsing window ID on Linux (#173)
Browse files Browse the repository at this point in the history
  • Loading branch information
jyboudreau committed Oct 17, 2023
1 parent 27221e5 commit 06dfba0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/linux.js
Expand Up @@ -90,7 +90,7 @@ async function getWindowInformation(windowId) {
]);

const data = parseLinux({
windowId,
activeWindowId: windowId,
boundsStdout,
stdout
});
Expand All @@ -108,7 +108,7 @@ function getWindowInformationSync(windowId) {
const boundsStdout = childProcess.execFileSync(xwininfoBin, [...xpropDetailsArgs, windowId], {encoding: 'utf8'});

const data = parseLinux({
windowId,
activeWindowId: windowId,
boundsStdout,
stdout
});
Expand Down

0 comments on commit 06dfba0

Please sign in to comment.