Here's a small AHK script for easy toggling the FARR win width between two sizes. Very convenient if you like me prefer a small FARR win as default but still often need to increase the width to see long file names.
; AHK (Autohotkey) script for easy FARR win resize, by nod5
^CapsLock::
WinGetPos, , ,w,H,A
WinGet, active_p, ProcessName, A
if active_p = FindAndRunRobot.exe
{
if (W != 258)
WinMove, A, , , , 258,
else
WinMove, A, , , , 450,
}
Return
Things you can tweak: The widths 258 and 450. The hotkey (but control + capslock is pretty handy!)