From 828aaa5d409c12329a2659928eabafa618ca160e Mon Sep 17 00:00:00 2001 From: Drew Haven Date: Thu, 17 Apr 2025 11:57:57 -0700 Subject: [PATCH] [gaming] Add launch options for wowup --- home-manager/features/gaming.nix | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/home-manager/features/gaming.nix b/home-manager/features/gaming.nix index bdaabb0..afc2b02 100644 --- a/home-manager/features/gaming.nix +++ b/home-manager/features/gaming.nix @@ -15,4 +15,20 @@ # WoW addon updater wowup-cf ]; + + xdg.desktopEntries = { + # wowup needs options to work under wayland. + wowup-cf = { + name = "WowUp"; + # Custom options to reduce flickering under wayland. + exec = "wowup-cf --no-sandbox --enable-features=UseOzonePlatform --ozone-platform=wayland --disable-gpu %U"; + terminal = false; + type = "Application"; + icon = "wowup-cf"; + comment = "World of Warcraft addon updater"; + categories = [ + "Game" + ]; + }; + }; }