>>108164358
>So my understanding is that you can name and organize your folders however you want, as long as each directory is properly listed and described in index.theme
Yes, that is correct.
>MinSize=32 and MaxSize=256 expecting that for sizes smaller than 32 it would fallback to the Breeze icon, but that doesn't happen.
That's not how it works, the MinSize and MaxSize determine the minimum and maximum size your Icon will scale to, if a program wants a 16x16 scalable icon then it will get 32x32 icon because that's your MinSize.
Icons can either be Fixed (.png) or Scalable (.svg), if you use a scalable icon, then it will be used in all places that use it, on the other hand you can specify different images for different sizes with png icons.
So instead of
[actions/additional]
Size=96
MinSize=32
MaxSize=256
Type=Scalable
Context=Actions
Remove that and write something like this
[actions/additional/32l]
Size=32
Type=Fixed
Context=Actions
[actions/additional/48]
Size=48
Type=Fixed
Context=Actions
[actions/additional/64]
Size=64
Type=Fixed
Context=Actions
...etc
Of course you would need to create the appropriate directories and create the appropriately sized icons. Yes it's annoying, I know.