Thank you.towwire wrote: Fri Apr 04, 2025 5:17 pmIf it only happens after an update you could change your script into a two steps (commands) to test.
Have your script open one window and then a short sleep before the command to open the other two windows.
I don't like it but I guess you are on the right track.
It seems the Firefox syntax is not reliable and it is better to let Linux handle it.
One of the computers was suddenly hit conical by the problem and that gave me a chance to do some testing.
This syntax for Terminal seems to be more reliable:
Code: Select all
firefox 'https://mxlinux.org/' & firefox 'https://mxlinux.org/wiki/system/iso-download-mirrors/#checksumsignatures' & firefox 'https://endoflife.date/mxlinux'
EDIT:
I go with this one and see what happens:
Code: Select all
firefox --new-window 'https://mxlinux.org/' & firefox --new-window 'https://mxlinux.org/wiki/system/iso-download-mirrors/#checksumsignatures' & firefox --new-window 'https://endoflife.date/mxlinux'