No, i3 does not offer anything like that. However, you can use xdotool
to do that. Check out man xdotool
for behave_screen_edge
. Excerpt:
Examples:
# Activate google-chrome when you move the mouse to the bottom-left corner:
xdotool behave_screen_edge bottom-left \
search --class google-chrome windowactivate
# Go to the next workspace (right). Known to work in GNOME (metacity and compiz)
xdotool behave_screen_edge --delay 500 bottom-right key XF86Forward
# Activate firefox and do a web search in a new tab for text in your clipboard
xdotool behave_screen_edge --delay 1000 top-left \
search --classname Navigator \
windowactivate --sync key --delay 250 ctrl+t ctrl+k ctrl+v Return
Note that this only works on the corners of the root window, so if you use multiple outputs, it may not be quite as useful depending on your setup.