I've got three SSDs and one HDD in my desktop. The HDD is only used for storage and less-frequently required files, so I've told it to go to sleep after a while. When it's asleep, opening a new lister causes the drive to wake up, but the lister won't appear until after the drive is back up to speed (I can hear it spinning up, so I'm confident that it's the reason the lister is delayed).
My default lister opens to the root of one of the SSDs, but one of the default toolbars contains a button for direct access to the HDD. The button has a couple of manually created links to specific directories and one using the Opus "recent" command. I'm guessing that one or all of these require the HDD to be awake before the button is ready, and that the lister won't appear until the button is ready. (I do have some other buttons that might also require the drive to wake up, I guess, like the "My Computer" button with the command "Go /mycomputer", but my assumption is that since they're not dynamic, they don't care that the drive's asleep.)
So other than taking that button off of the toolbar (which I'm going to test later) or stopping the drive from sleeping, is there anything I can do to lessen the delay before the lister opens? Code of that button is below, in case it's relevant.
Thanks.
<?xml version="1.0"?>
<button display="icon" label_pos="left" min_width="yes" popout="bottom" separate="yes" type="three_button">
<label>F</label>
<icon1>#NJM_MiscIcon:HDD-F</icon1>
<button display="icon" label_pos="left">
<label>F</label>
<icon1>#NJM_MiscIcon:HDD-F</icon1>
<function type="normal">
<instruction>go F:\</instruction>
</function>
</button>
<button display="icon" popout="bottom" type="menu">
<label>F</label>
<tip>Go to fixed/recent directories</tip>
<icon1>46</icon1>
<button display="both">
<label>F:</label>
<icon1>#NJM_MiscIcon:HDD-F</icon1>
<function type="normal">
<instruction>go F:\</instruction>
</function>
</button>
<button display="both">
<label>Archives</label>
<icon1>109</icon1>
<function type="normal">
<instruction>go f:\archives</instruction>
</function>
</button>
<button display="both" separate="yes">
<label>WoW Archive</label>
<icon1>F:\World of Warcraft\Wow.exe,0</icon1>
<function type="normal">
<instruction>Go "F:\Archives\Games\WoW"</instruction>
</function>
</button>
<button display="both">
<label>Recent dirs</label>
<icon1>49</icon1>
<function type="normal">
<instruction>recent F:</instruction>
</function>
</button>
</button>
</button>