render icon only for visible window #1876
-
I have a script like bellow:
I am using it as fsearch / search everything alternative. It is very fast. After first load, it takes maximum 2/3 seconds to load. My issue is I would like to have icons. If I use the following code:
Instead of:
It gives me icons. Here
The problem is there are 4,00,000+ files in my machine. If I render icons for each calling Is there any way I only render icon for visible window. I mean I can see ~40 rows. I would like to render icon for them only. If i use a search term. Then there will be new rows. I will only render icon for them. Just to clarify, there can be less than ~40 rows based on search term. Is it possible? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 8 replies
-
rofi does not render icons that are not visible, icons are lazy loaded in the background. In git there is 'recursive browser' this kinda does something similar and should be fast (its native in rofi), you could give that try. |
Beta Was this translation helpful? Give feedback.
rofi does not render icons that are not visible, icons are lazy loaded in the background.
In git there is 'recursive browser' this kinda does something similar and should be fast (its native in rofi), you could give that try.