Displaying 1 result from an estimated 1 matches for "dropdownp".
Did you mean:
dropdown
2007 Apr 25
0
Scheme extension language plugin.
...your
Compiz and share these new behaviors with other people.
Following are a few examples:
#Following snippet gives you transparent dropdown menus.
(window-rule #Define a window rule
(make-rule #Make a rule passed in
(set-opacity-when # Set opacity of a window when
(window-is dropdownp) # The window is a dropdown menu
0.75))) # Set to 0.75
#Following snippet shades maximized windows when you grab them.
(grab-rule # Define a window grab rule.
(make-rule # Make a rule passed to grab-rule
(if (maximizedp w) # If window maximized.
(toggle-shaded w)))) #Sha...