-
After closing fusion 360, it seems like several things in wine keep run running. What's the most effective way of closing them? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
If it works for you, then use the Flatpak, and then run the I've been experimenting with Flatpak packaging for Fusion, so I have a dedicated app ID, so I can kill the app with |
Beta Was this translation helpful? Give feedback.
If it works for you, then use the Flatpak, and then run the
flatpak kill
command.Fusion is actually not packaged as a Flatpak, but the installation script is making use of a Wine Flatpak app.
The means that if you have multiple desktop apps that running through this Wine Flatpak app, then you will need to figure out the instance ID of the Wine Flatpak session that runs Fusion using the
flatpak ps
command, and then kill it withflatpak kill INSTANCE_ID
.If Fusion is the only desktop app that's currently running by the Wine Flatpak app, then just kill it with
flatpak kill org.winehq.flatpak-wine
.I've been experimenting with Flatpak packaging for Fusion, so I have a dedicated app ID, so I …