diff options
| author | Dana Jansens <danakj@orodu.net> | 2002-08-22 00:57:29 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2002-08-22 00:57:29 +0000 |
| commit | 8a48fff773dea20ab93ee8f22b281e852b51242e (patch) | |
| tree | 16d26f76e49b2d38d110fac88b244a105272f821 /util | |
| parent | f44e3ed9a7232a38b454e293daee2f3e7009ad54 (diff) | |
support for showing the root and workspace menu with epist
Diffstat (limited to 'util')
| -rw-r--r-- | util/epist/screen.cc | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/util/epist/screen.cc b/util/epist/screen.cc index 31a90233..8f48a783 100644 --- a/util/epist/screen.cc +++ b/util/epist/screen.cc @@ -242,6 +242,16 @@ void screen::handleKeypress(const XEvent &e) { execCommand(it->string()); return; + case Action::showRootMenu: + _xatom->sendClientMessage(rootWindow(), XAtom::openbox_show_root_menu, + None); + return; + + case Action::showWorkspaceMenu: + _xatom->sendClientMessage(rootWindow(), XAtom::openbox_show_workspace_menu, + None); + return; + default: break; } |
