Displaying 1 result from an estimated 1 matches for "maximizedp".
Did you mean:
maximized
2007 Apr 25
0
Scheme extension language plugin.
...-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)))) #Shade window
(define amatch (make-match "type=normal|state=sticky")) #Define a
match for sticky windows or normal windows
(bind-key "s" #Bind the key ctrl+super+s
(lambda () #Define an anonymous function to be pass...