1: Attempting to override lmstudio desktop entry so it always launches in wayland mode and uses a better icon

This commit is contained in:
uzy lol 2025-01-13 08:16:45 -08:00
parent 20c80a2e66
commit 101f40748e
3 changed files with 9 additions and 0 deletions

View File

@ -2,5 +2,6 @@
imports = [
./edge.nix
./spotify.nix
./lmstudio.nix
];
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

View File

@ -0,0 +1,8 @@
{
# Override LM Studio entry to always launch with Wayland
xdg.desktopEntries.lmstudio = {
name = "LM Studio";
exec = "lmstudio --enable-features=UseOzonePlatform --ozone-platform=wayland %U";
icon = "./icons/lmstudio.png";
};
}