You can move xwem minibuffer interactively, evaluate this:
(xwem-local-set-key (xwem-kbd "C-<button1>") 'xwem-client-imove
(xwem-minib-cl xwem-minibuffer))
Then use Control and mouse to drag the minibuffer. It is convinient
to use when using xwem-rooticon and some icons are obscured by
xwem minibuffer.
To use it in xwemrc, you must evaluate it in `xwem-after-init-hook'.
By the way, it is pretty convinient to separate xwemrc to two files -
one that set some variables, second - setups xwem after
initialization. Like this:
------- [ xwemrc.el ]-------------------------
;;; xwemrc.el --- xwem config pre init.
[...]
(add-hook 'xwem-after-init-hook
(lambda ()
(load-file "after-init-xwemrc.el" xwem-dir)))
;;; xwemrc.el ends here
----------------------------------------------
------- [ after-init-xwemrc.el ]--------------
(xwem-time)
(xwem-worklog-start-dockapp)
[...]
(xwem-local-set-key (xwem-kbd "C-<button1>") 'xwem-client-imove
(xwem-minib-cl xwem-minibuffer))
;;; after-init-xwemrc.el ends here
----------------------------------------------
Thanks!
--
lg
|