-
Notifications
You must be signed in to change notification settings - Fork 103
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
cinnamon-maximus@fmete Could not find XID for window with title #428
Comments
I have the same issue on Linux Mint 21.1. Gjs-Message: 12:04:34.915: JS LOG: [LookingGlass/info] [maximus] Could not find XID for window with title '${win.title} |
I just ran into the same issue for Evolution. Could it be because Evolution changes the window title to indicate the number of unread messages? The actual window title is: |
I solved my problem changed method to get window id with
function guessWindowXID(win) {
let id = null;
try {
id = win.get_xwindow();
if (id)
return id;
} catch (err) {
}
// debugging for when people find bugs.. always logging this message.
logMessage("Could not find XID for window with title '${win.title}", true);
return null;
} function guessWindowXID(win) {
let id = null;
try {
id = win.get_description();
if (id)
return id;
} catch (err) {
}
// debugging for when people find bugs.. always logging this message.
logMessage("Could not find XID for window with title '${win.title}", true);
return null;
} |
@femike Thanks, this helped me with some windows (konsole, sublime text) on Ubuntu 23.04. Now this extension works with all windows. |
Notify author of extension
@
Issue
cinnamon-maximus does not remove window decoration
Steps to reproduce
Press Alt-F10
Expected behaviour
Other information
The text was updated successfully, but these errors were encountered: