Is there any chance to implement "INSTANCE_NAME" to support definition of multiple named configurations ?
Displaying INSTANCE_NAME as an (optional) addition on the Window-Title would allow to distinguish instances by purpose (instead of sequence).
How to save 2 or 3 different Window Position?
Moderators: Hacker, petermad, Stefan2, white
batchman61,
You can start different TC instances from some batch file that will define some envvar like INSTANCE_ID, and you can set different icon sets for different instances using this envvar in IconLib parameter in wincmd.ini so your different instances will have different icons. Perhaps it will be even better than names in titles.
(totalcmd_foo.bat file in TC directory)
(wincmd.ini fragment)
You can start different TC instances from some batch file that will define some envvar like INSTANCE_ID, and you can set different icon sets for different instances using this envvar in IconLib parameter in wincmd.ini so your different instances will have different icons. Perhaps it will be even better than names in titles.
Code: Select all
@echo off
set INSTANCE_ID=foo
start "" "%~dp0\TOTALCMD.exe" %*
Code: Select all
[Configuration]
...
IconLib=%COMMANDER_PATH%\icons_%INSTANCE_ID%.icl
...