|
@ -21,7 +21,7 @@ My workflow includes launching the window manager with *Xinit*[fn:3], without th |
|
|
exec dbus-launch --exit-with-session emacs -mm --debug-init |
|
|
exec dbus-launch --exit-with-session emacs -mm --debug-init |
|
|
#+end_src |
|
|
#+end_src |
|
|
|
|
|
|
|
|
** Create a symbolic link |
|
|
|
|
|
|
|
|
** Create a symbolic link(s) |
|
|
|
|
|
|
|
|
*Xinit*[fn:3] reads its configuration from ~~/.xinitrc~. Override this location with a link to the custom configuration. |
|
|
*Xinit*[fn:3] reads its configuration from ~~/.xinitrc~. Override this location with a link to the custom configuration. |
|
|
|
|
|
|
|
@ -30,6 +30,13 @@ exec dbus-launch --exit-with-session emacs -mm --debug-init |
|
|
"~/.xinitrc") |
|
|
"~/.xinitrc") |
|
|
#+end_src |
|
|
#+end_src |
|
|
|
|
|
|
|
|
|
|
|
*VNCServer*[fn:4] reads the configuration from ~~/.vnc/xstartup~. Override this location with a link to the custom configuration. |
|
|
|
|
|
|
|
|
|
|
|
#+begin_src emacs-lisp |
|
|
|
|
|
(dotfiles/symlink "~/.emacs.d/config/xinitrc" |
|
|
|
|
|
"~/.vnc/xstartup") |
|
|
|
|
|
#+end_src |
|
|
|
|
|
|
|
|
* Browser integration |
|
|
* Browser integration |
|
|
|
|
|
|
|
|
Write out the ~$BROWSER~ variable so other applications can pick up the custom browser. |
|
|
Write out the ~$BROWSER~ variable so other applications can pick up the custom browser. |
|
@ -123,3 +130,4 @@ Connect our custom hooks and configure the input keys, a custom layer for key ca |
|
|
[fn:1] https://github.com/ch11ng/exwm |
|
|
[fn:1] https://github.com/ch11ng/exwm |
|
|
[fn:2] https://en.wikipedia.org/wiki/X_Window_System |
|
|
[fn:2] https://en.wikipedia.org/wiki/X_Window_System |
|
|
[fn:3] https://en.wikipedia.org/wiki/Xinit |
|
|
[fn:3] https://en.wikipedia.org/wiki/Xinit |
|
|
|
|
|
[fn:4] https://wiki.termux.com/wiki/Graphical_Environment |