You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For automation purposes I hacked my local binary to allow to run SnakeTail maximized and with vertical tiling of tabs. I think these might be useful for others too, possibly extended and/or cleaned up ;)
I changed MainForm.MainForm_Shown to have these additional branches for command line parsing:
else if (commandLineArgs[i] == "-maximize")
{
base.WindowState = FormWindowState.Maximized;
}
else if (commandLineArgs[i] == "-tile-vertically")
{
this.tileWindowsVerticallyToolStripMenuItem_Click(null, null);
}
The text was updated successfully, but these errors were encountered:
For automation purposes I hacked my local binary to allow to run SnakeTail maximized and with vertical tiling of tabs. I think these might be useful for others too, possibly extended and/or cleaned up ;)
I changed MainForm.MainForm_Shown to have these additional branches for command line parsing:
The text was updated successfully, but these errors were encountered: