Try to write a KWin Rule, is the window class written as “firefox firefox-developer-edition”? If so then add a property called “Desktop file name” set it to “Force” and the desktop filename to “firefox-developer-edition” that should fix it. Find out more here:
Sure!
You launch yad with your needed args:
yad --title="Backup" --text="Backup completed successfully." --button=OK
Notice how I removed --window-icon='dialog-information', that hint is ignored under Wayland.
Either press
Alt + F3 then M, W
OR
Right Click on the yad dialog titlebar then go Special Actions > Configure Special Window Settings...
Write a name/description for the rule, then for the Window title option either write the whole title or use a regular expression (in t…
I wrote 2 Window Rules for 2 reasons one is purely esthetic the 2nd one is for it to be easier to differentiate kitty with neovim from other kitty instances.
[Change icon back to kitty]
Description=Change icon to back to kitty
desktopfile=kitty
desktopfilerule=2
title=^(?!nvim)
titlematch=3
wmclass=kitty
wmclassmatch=1
[kitty - change icon to neovim]
Description=kitty - change icon to neovim
desktopfile=nvim
desktopfilerule=2
title=^nvim
titlematch=3
wmclass=kitty
wmclassmatch=1
If there’s a …