Browse Source

Add support for vnc server

main
parent
commit
b72595f638
  1. 4
      config/xinitrc
  2. BIN
      docs/daily/2021-03-13.org.gpg
  3. 10
      modules/desktop.org

4
config/xinitrc

@ -1,9 +1,9 @@
# Window manager
# Initialization
# :PROPERTIES: # :PROPERTIES:
# :header-args: :tangle ../config/xinitrc :comments org # :header-args: :tangle ../config/xinitrc :comments org
# :END: # :END:
# My workflow includes launching the window manager with *Xinit*[fn:3], without the use of a display manager. Everything is controlled within Emacs.
# My workflow includes launching the window manager with *Xinit*[fn:3], without the use of a display manager, controlling *everything* within Emacs.
exec dbus-launch --exit-with-session emacs -mm --debug-init exec dbus-launch --exit-with-session emacs -mm --debug-init

BIN
docs/daily/2021-03-13.org.gpg

10
modules/desktop.org

@ -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
Loading…
Cancel
Save