Page 1 of 1

Startup - Send all tabs home

Posted: 02 Jan 2026 06:19
by Bulbizarre
I have several tabs with home zones locked in. Just wondering if there was a way to set them all to their home location when start XYplorer?

Re: Startup - Send all tabs home

Posted: 02 Jan 2026 08:21
by highend
Run a script on startup

Code: Select all

    while ($i++ < tab('get', 'c')) {
        $h = tab('get', 'home', $i);
        if ($h) { tab('relocate', $h, $i); }
    }