The following codes let you pad the width of sections to align with various Lister elements. For example, you can pad a section to align with the edge of the folder tree, so that no matter how wide the tree is the section will always be the same width. This is particularly useful in dual-display Listers, where you can define the status bar to show information for both file displays at once - in this instance, you would want to pad the section for the right file display to always align with it.
Code | Description |
---|---|
{pad X(#)} |
Pad to percentage of total space X is a value from 1 to 100. For example, {pad50} pads the section to 50% of the width of the Lister. |
{rpad X(#)} |
Pad to percentage of remaining space X is a value from 1 to 100. For example, {pad25} pads the section to 25% of the remaining space. |
{wtree} |
Pad to width of folder tree |
{wtree2} |
Pad to width of second folder tree\\ The section will be padded to the same width as the second folder tree in a dual-display Lister. This code has no effect if the second folder tree is not visible. |
{rtree} |
Pad to right edge of folder tree |
{rtree-} |
Pad to right edge of folder tree, right-justify contents |
{rtree2} |
Pad to right edge of second folder tree |
{rtree2-} |
Pad to right edge of second folder tree, right-justify contents |
{wleft} |
Pad to width of left file display |
{rleft} |
Pad to right edge of left file display |
{rleft-} |
Pad to right edge of left file display, right-justify contents |
{width X(#)} |
Absolute width, scale with DPI X is the desired width. For example, {width240} pads the section to 240 pixels wide at standard DPI and 480 pixels wide at 200% DPI. |
{width- X(#)} |
Absolute width X is the desired width. For example, {width-240} pads the section to 240 pixels wide regardless of system DPI. |