Results 98 comments of Mahmoud Gomaa

@HuyHung1408 This feature is being worked on and will be available in the next update.

> Thers is command transparency = 90 tip { enabled = 1 opacity = 100 but changing values does nothing. How does it work? @yatoya The transparency option for items...

Hi @kronuschan, Thank you for your interest in Shell `@icon.` These are predefined identifiers and most of them are for system items. One of them has two colors and the...

There is only one function at the moment that returns the value of Accent Color `color.accent`. Yes, the functions of the theme will be extended to cover all issues.

New additions to colors ``` color.invert(#f00) color.accent_light1 color.accent_light2 color.accent_light3 color.accent_dark1 color.accent_dark2 color.accent_dark3 ```

Yes, static and dynamic items are combined through the parent property. The following code shows how to combine ``` shell { static { item(find='HashMyFiles' parent="File Manage") item(find='File Manage' image=#f00 pos=top...

It is also possible to move several items at once through the following code ``` item(find='HashMyFiles|"copy long name"|copy long path|"path copy"' parent="File Manage") ```

The two entries appeared because you did not add the parent property to the dynamic item. ``` dynamic { menu(title="File Manage from dynamic" parent="File Manage") { ... } } ```...

Moving static items directly to dynamic items is not currently supported

It's not about the order of writing static and dynamic. But I will make it easier in the future.