Replies: 3 comments 2 replies
-
|
I'm OK. (I have not tried the package.) In general, I think that bringing various EXWM packages into the emacs-exwm organization would enable better discovery. |
Beta Was this translation helpful? Give feedback.
-
|
Sounds good from my side! Some of the launcher code could maybe even land in EXWM directly to make it a more complete desktop environment. I have this in my config: (defun +exwm-autostart ()
"Auto start XDG applications."
;; (call-process-shell-command "dex --autostart --environment exwm" nil 0)
(dolist (dir (delete-dups `(,@(xdg-config-dirs) ,(xdg-config-home))))
(dolist (file (file-expand-wildcards (file-name-concat dir "autostart/*.desktop")))
(when-let ((hash (xdg-desktop-read-file file))
(exec (gethash "Exec" hash))
((string-search "EXWM" (gethash "OnlyShowIn" hash "EXWM")))
((not (string-search "exwm" (gethash "NotShowIn" hash ""))))
((executable-find (gethash "TryExec" hash "yes")))
(default-directory (or (gethash "Path" hash) (expand-file-name "~/"))))
(call-process-shell-command exec nil 0))))) |
Beta Was this translation helpful? Give feedback.
-
|
I've moved it to https://github.com/emacs-exwm/xdg-launcher but haven't published it yet (want to give upstream a heads-up first SebastienWae/app-launcher#15). |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
There are a several Linux "app launchers" usable(ish) with EXWM:
I'm trying to make this a bit less of a thorny mess for users trying to pick an app launcher. My current plan is to:
xdg-launcherfork under this org (assuming the other EXWM maintainers @minad and @medranocalvo are OK with that). I'll probably rename it toxdg-launcher, or something.My fork has a few "works for me"-isms and I'd like to fix the outstanding bugs before continuing.
Thoughts @minad, @medranocalvo, @sarg (who submitted a bunch of fixes to my app-launcher fork)?
Beta Was this translation helpful? Give feedback.
All reactions