application focus of emacsclient frame
Solution 1:
Here is what I do :
(server-start)
(defun px-raise-frame-and-give-focus ()
(when window-system
(raise-frame)
(x-focus-frame (selected-frame))
(set-mouse-pixel-position (selected-frame) 4 4)
))
(add-hook 'server-switch-hook 'px-raise-frame-and-give-focus)