How do I programmaticaly force my Emacs X Window to get current user input focus?
I want to use this in the following Bash script
# Debug in Emacs using GDB
function emacs-gdb()
{
if [ -z $1 ]; then
echo -e "Usage: $FUNCNAME EXE EXE_ARGS...";
else
if (($# >= 2)); then
local ARGS="--args ${@:1:100}";
else
local ARGS="$1";
fi
emacsclient --eval "(gdb \"gdb -i=mi $ARGS\")"
fi
}
to make the Emacs window automatically get window focus.
I've had this copied from somewhere related to
org-protocol
. It should help you as well:This is in addition to @tungd's advice of calling
raise-frame
of course.