diff options
Diffstat (limited to 'src/actions.c')
-rw-r--r-- | src/actions.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/actions.c b/src/actions.c index f7f3163..1ea65ad 100644 --- a/src/actions.c +++ b/src/actions.c @@ -159,6 +159,7 @@ user_command user_commands[] = {"focus", cmd_next_frame, arg_VOID}, {"only", cmd_only, arg_VOID}, {"remove", cmd_remove, arg_VOID}, + {"banish", cmd_banish, arg_VOID}, /* the following screen commands may or may not be able to be implemented. See the screen documentation for what should be @@ -847,3 +848,14 @@ cmd_remove (void *data) set_active_window (find_window_other()); } } + +/* banish the rat pointer */ +void +cmd_banish (void *data) +{ + screen_info *s; + + s = current_screen (); + + XWarpPointer (dpy, None, s->root, 0, 0, 0, 0, s->root_attr.width - 2, s->root_attr.height - 2); +} |