You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi there
there is issue on detect apps in linux
for example for tilda app it return always undefined
maybe this module can help in this case https://github.com/nullxx/electron-active-window
it return app name tilda
The text was updated successfully, but these errors were encountered:
i solved my issue by change this line lib/linux.js from
title: JSON.parse(result['_NET_WM_NAME(UTF8_STRING)'] || result['WM_NAME(STRING)']) || null,
to
title: JSON.parse(result['_NET_WM_NAME(UTF8_STRING)'] || result['WM_NAME(STRING)'] || result['WM_CLASS(STRING)'].split(',').pop()) || null,
and comment this lines
//if (!activeWindowId) {
// return;
//}
Hi there
there is issue on detect apps in linux
for example for tilda app it return always undefined
maybe this module can help in this case
https://github.com/nullxx/electron-active-window
it return app name tilda
The text was updated successfully, but these errors were encountered: