Kyroic
Kyroic

Reputation: 1

How to keep my app running on background?

I have created an .exe file by pyinstaller. And I want it to run on background even if I close it and I want to be able to access it taskbar's arrow at the bottom-right corner. For example; when I close Discord, it disappears but I can access it from the taskbar's arrow at the bottom-right corner. I want to exact same thing to happen with my app, how can I do it?

Upvotes: 0

Views: 968

Answers (1)

IonutV
IonutV

Reputation: 31

try this pyinstaller -w --onefile "yourfile" you should be good

Upvotes: 2

Related Questions