Formatting the statusbar

Discussion related to "Everything" 1.5 Alpha.
Post Reply
vsub
Posts: 474
Joined: Sat Nov 12, 2011 11:51 am

Formatting the statusbar

Post by vsub »

I usually just keep the file path in the statusbar for ahk purposes but I was wondering if there is a way to display any other information that will be located at the far right of the statusbar(not right next to the file path)
Sort of like it is currently
Filepath then huge gap | size |search options | the active filter
I want to show the some other information that will be positioned right next to the "| Size |" part

Also is it possible to display specific information(lets say the dimentions)only for specific file extensions
void
Developer
Posts: 16665
Joined: Fri Oct 16, 2009 11:31 pm

Re: Formatting the statusbar

Post by void »

I usually just keep the file path in the statusbar for ahk purposes
Please consider using the hidden EVERYTHING_RESULT_LIST_FOCUS window instead.

ControlGetText, _ResultListFocus, EVERYTHING_RESULT_LIST_FOCUS1, A




but I was wondering if there is a way to display any other information that will be located at the far right of the statusbar(not right next to the file path)
Currently, no.
Some parts can be toggle under Tools -> Options -> Advanced -> statusbar_*


Also is it possible to display specific information(lets say the dimentions)only for specific file extensions
Yes, with a custom statusbar format.

Include the following in your statusbar_selected_item_format:

<if:<EXACT:<LOWER:$extension:>,"jpg">,$dimensions:>
Post Reply