diff options
author | Thanos Apollo <[email protected]> | 2023-09-03 17:08:28 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-09-03 17:08:28 +0300 |
commit | 328aac89b712ef28afe23914722b6e4ddc71fa8a (patch) | |
tree | b15f786fa2c23cfc3fe298d501fb2adbcb4ed207 | |
parent | 8efa6f3f1db166d30a4eb38780f6c47855c51439 (diff) |
stumpwm: start emacs without daemon
Starting emacs normally and then 'server-start' seems a better option
to avoid any bugs with pinentry launching via sutmpwm
-rw-r--r-- | .stumpwm.d/commands.lisp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.stumpwm.d/commands.lisp b/.stumpwm.d/commands.lisp index 1976e9d..57dca87 100644 --- a/.stumpwm.d/commands.lisp +++ b/.stumpwm.d/commands.lisp @@ -49,7 +49,7 @@ (when *initializing* (mapc #'stumpwm:run-shell-command - '("emacs --daemon" + '("emacs" "picom" "transmission-daemon" "xsetroot -cursor_name left_ptr")) |