You are not logged in.
How do you launch an app in a specific environment when multiple environments are running?
for instance, I have BSWM running on tty1 and Sway on tty2.
And If launch the ungoogled-chromium or Vivaldi browser from Sway, it gets launched in BSPWM, and I do not know why it happens. I want that to be opened in the same environment where I launch it. (in this case, I want it to open in Sway)
How do I do this?
Off-topic:
I need sway and BSPWM both because BSPWM is my main desktop environment, where I do my all work and stuff but I cannot run Waydroid on BSPWM because it requires Wayland, So I had to install Sway. (Weston is buggy)
Last edited by BlurryFlurry (2022-11-11 09:35:10)
Offline
If launch the ungoogled-chromium or Vivaldi browser from Sway, it gets launched in BSPWM
echo $DISPLAY
DISPLAY= ungoogled-chromium # there's an intentional blank behind the "="However, if there's already an instance running on bspwm, chromium won't start a new instance but just tell the master process (on bspwm) to spawn a new window.
You could try to convince it w/
ungoogled-chromium --ozone-platform=waylandOnline