Mein Ziel ist es, dass i3 einen Browser pro Monitor auf einem Dual-Monitor-Setup startet.
Ich kann nicht finden, wie ich einen Browser starten und auf den Zielmonitor verschieben kann.
Ich habe das Dokument durchgesehen und es in ~ / .i3 / config versucht
exec --no-startup-id i3-msg 'workspace 1 ; move workspace to output HDMI1 ; exec chromium --new-window "http://url/1" ; workspace 2 ; move workspace to output HDMI2 ; exec chromium --new-window "http://url/2"'
Beide Fenster werden jedoch auf dem ersten Monitor angezeigt, während das zweite leer bleibt.
Was habe ich verpasst ?
Xorg ist wie folgt konfiguriert:
Section "Monitor"
Identifier "HDMI1"
Option "Primary" "true"
EndSection
Section "Monitor"
Identifier "HDMI2"
Option "LeftOf" "HDMI1"
EndSection
BEARBEITEN:
Ich habe zu ~ / .i3 / config hinzugefügt
workspace 1 output HDMI1
workspace 2 output HDMI2
ich habe es versucht
exec --no-startup-id i3-msg 'workspace 1; exec xeyes'
exec --no-startup-id i3-msg 'workspace 2; exec xclock'
oder
exec --no-startup-id i3-msg 'workspace 1; exec xeyes; workspace 2; exec xeyes'
Immer das gleiche Ergebnis, beide Apps starten am zuletzt ausgewählten Arbeitsbereich.