UbuntuBudgie / budgie-extras

Additional Budgie Desktop enhancements for user experience
https://ubuntubudgie.org
GNU General Public License v3.0
175 stars 34 forks source link

Fix displaying ShowTime applet on all monitors #478

Closed dtrunk90 closed 1 month ago

dtrunk90 commented 1 month ago

Fixes #477

Monitors are extending. Proof that the fix works: GTXDVaPWcAEQwEt

fossfreedom commented 1 month ago

Thanks for this - certainly helpful and pin-pointing when the change occurred was very useful.

I think the correct fix is to simply bump the arg used in the window name here: https://github.com/UbuntuBudgie/budgie-extras/blob/f61db0c0deba6812e9a4f3f535c3b5c2bc39a0ce/budgie-showtime/src/showtime_desktop/showtime_desktop.vala#L513

i.e. it should just be changed to:

winname = "Showtime".concat(args[2]);

dtrunk90 commented 1 month ago

Indeed it was enough to just have a unique window name.

fossfreedom commented 1 month ago

Much appreciated for helping us through finding and testing this.