diff options
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/builtins.py | 2 | ||||
| -rw-r--r-- | scripts/config.py | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/scripts/builtins.py b/scripts/builtins.py index b783fd63..e3424001 100644 --- a/scripts/builtins.py +++ b/scripts/builtins.py @@ -262,7 +262,7 @@ def setup_window_clicks(): def setup_window_buttons(): """Sets up the default behaviors for the buttons in the window titlebar.""" - mbind("Left", MC_StickyButton, MouseClick, toggle_all_desktops) + mbind("Left", MC_AllDesktopsButton, MouseClick, toggle_all_desktops) mbind("Left", MC_CloseButton, MouseClick, close) def setup_scroll(): diff --git a/scripts/config.py b/scripts/config.py index 1320c581..292ae2af 100644 --- a/scripts/config.py +++ b/scripts/config.py @@ -14,10 +14,10 @@ theme = "/usr/local/share/openbox/styles/fieron2" # titlebar_layout - the layout of the buttons/label on client titlebars, can be # made up of the following: # I - iconify button, L - text label, M - maximize button, -# S - sticky button, C - close button +# D - all-desktops button, C - close button # If no 'L' is included in the string, one will be added to # the end by Openbox. -titlebar_layout = "ILMC" +titlebar_layout = "DILMC" # double_click_delay - the number of milliseconds in which 2 clicks are # perceived as a double-click. |
