From b9d6ce324f7a12fda28014853b9690258df1c37c Mon Sep 17 00:00:00 2001 From: Johan Malm Date: Mon, 1 Mar 2021 18:40:11 +0000 Subject: [PATCH] Set default A-F3 binding to bemenu instead of dmenu --- docs/labwc-config.5.md | 5 ++--- src/config/rcxml.c | 7 +++---- 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/docs/labwc-config.5.md b/docs/labwc-config.5.md index 9b0fa3cc..91e74641 100644 --- a/docs/labwc-config.5.md +++ b/docs/labwc-config.5.md @@ -88,7 +88,7 @@ Example: - dmenu_run + bemenu-run @@ -99,8 +99,7 @@ If no rc.xml file is found, the following default values will be used: - Alt+Escape: Exit labwc - Alt+Tab: Cycle windows -- Alt+F2: Cycle windows (if running on X11 and alt-tab bind already exists) -- Alt+F3: Launch dmenu +- Alt+F3: Launch bemenu # SEE ALSO diff --git a/src/config/rcxml.c b/src/config/rcxml.c index c308f97a..72950687 100644 --- a/src/config/rcxml.c +++ b/src/config/rcxml.c @@ -260,15 +260,14 @@ static void post_processing(void) { if (!wl_list_length(&rc.keybinds)) { - info("loading default key bindings"); + info("load default key bindings"); bind("A-Escape", "Exit", NULL); bind("A-Tab", "NextWindow", NULL); - bind("A-F2", "NextWindow", NULL); - bind("A-F3", "Execute", "dmenu_run"); + bind("A-F3", "Execute", "bemenu-run"); } if (!rc.theme_name) { - rc.theme_name = strdup("Clearlooks"); + rc.theme_name = strdup("Clearlooks-3.4"); } if (!rc.font_name_activewindow) { rc.font_name_activewindow = strdup("sans"); -- 2.52.0