summaryrefslogtreecommitdiffstats
path: root/source/dialogs
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2017-07-13 08:21:15 +0200
committerDave Davenport <qball@gmpclient.org>2017-07-13 08:21:15 +0200
commitbca01f389ddedb5cf75930090dc440e22ccc943f (patch)
tree6a64f2c8fd81cf8ac99e1a2ddd11db2283e641d5 /source/dialogs
parent7b579852032857d2b58e8bd07954e154e2e33021 (diff)
[DMenu] make rofi obey the dmenu -w flag.
- This is a dirty hack that needs to be done better in next release.
Diffstat (limited to 'source/dialogs')
-rw-r--r--source/dialogs/dmenu.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/dialogs/dmenu.c b/source/dialogs/dmenu.c
index 3ded41b3..ab9e9f7c 100644
--- a/source/dialogs/dmenu.c
+++ b/source/dialogs/dmenu.c
@@ -656,6 +656,7 @@ int dmenu_switcher_dialog ( void )
MenuFlags menu_flags = MENU_NORMAL;
DmenuModePrivateData *pd = (DmenuModePrivateData *) dmenu_mode.private_data;
int async = TRUE;
+
// For now these only work in sync mode.
if ( find_arg ( "-sync" ) >= 0 || find_arg ( "-dump" ) >= 0 || find_arg ( "-select" ) >= 0
|| find_arg ( "-no-custom" ) >= 0 || find_arg ( "-only-match" ) >= 0 || config.auto_select ||
@@ -757,4 +758,5 @@ void print_dmenu_options ( void )
print_help_msg ( "-input", "[filename]", "Read input from file instead from standard input.", NULL, is_term );
print_help_msg ( "-sync", "", "Force dmenu to first read all input data, then show dialog.", NULL, is_term );
print_help_msg ( "-async-pre-read", "[number]", "Read several entries blocking before switching to async mode", "25", is_term );
+ print_help_msg ( "-w", "windowid", "Position over window with X11 windowid.", NULL, is_term );
}