Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix wl-clipboard messing with the dock #2218

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dash.js
Original file line number Diff line number Diff line change
Expand Up @@ -824,7 +824,7 @@ export const DockDash = GObject.registerClass({

// Second: add the new apps
running.forEach(app => {
if (!showFavorites || !(app.get_id() in favorites))
if ((!showFavorites || !(app.get_id() in favorites)) && !(app.get_windows()[0].get_title() === 'wl-clipboard'))
newApps.push(app);
});
}
Expand Down
3 changes: 3 additions & 0 deletions intellihide.js
Original file line number Diff line number Diff line change
Expand Up @@ -317,6 +317,9 @@ export class Intellihide {
if (ignoreApps.includes(wmApp) && metaWindow.is_skip_taskbar())
return false;

if (metaWindow.get_title() === 'wl-clipboard')
return false;

// The DropDownTerminal extension uses the POPUP_MENU window type hint
// so we match its window by wm class instead
if (metaWindow.get_wm_class() === 'DropDownTerminalWindow')
Expand Down