Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Doesn't support FreeBSD #97

Open
duncan-bayne opened this issue Oct 12, 2024 · 2 comments
Open

Doesn't support FreeBSD #97

duncan-bayne opened this issue Oct 12, 2024 · 2 comments
Labels
enhancement *sigh* what now?

Comments

@duncan-bayne
Copy link

Thanks for emacs-everywhere ❤️ Just what I was looking for.

However, it currently doesn't support FreeBSD. I get:

*ERROR*: No app-info function is set, see ‘emacs-everywhere-app-info-function’

I'll raise a PR to add FreeBSD support shortly :)

@tecosaur
Copy link
Owner

PRs welcome 🙂

@tecosaur tecosaur added the enhancement *sigh* what now? label Oct 16, 2024
@eugeneandrienko
Copy link

I faced with the same problem and use the next hack to use emacs-everywhere in
FreeBSD (use-package involved):

(use-package emacs-everywhere
  :config
  (if (eq system-type 'berkeley-unix)
      (progn
        (setq emacs-everywhere--display-server 'x11)
        (setq emacs-everywhere-app-info-function #'emacs-everywhere--app-info-linux-x11)
        (setq emacs-everywhere-copy-command
              (list "xclip" "-selection" "clipboard" "%f"))
        (setq emacs-everywhere-paste-command
              (list "xdotool" "key" "--clearmodifiers" "Shift+Insert"))
        (setq emacs-everywhere-window-focus-command
              (list "xdotool" "windowactivate" "--sync" "%w")))))

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement *sigh* what now?
Projects
None yet
Development

No branches or pull requests

3 participants