Startup - Send all tabs home

Please check the FAQ (https://www.xyplorer.com/faq.php) before posting a question...
Post Reply
Bulbizarre
Posts: 14
Joined: 06 May 2025 16:14

Startup - Send all tabs home

Post 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?

highend
Posts: 14923
Joined: 06 Feb 2011 00:33
Location: Win Server 2022 @100%

Re: Startup - Send all tabs home

Post 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); }
    }
One of my scripts helped you out? Please donate via Paypal

Post Reply