I showed you my source code, pls respond
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
819 B

4 years ago
4 years ago
  1. #+TITLE: Termux
  2. #+AUTHOR: Christopher James Hayward
  3. #+EMAIL: chris@chrishayward.xyz
  4. #+PROPERTY: header-args:emacs-lisp :tangle localhost.el :comments org
  5. #+PROPERTY: header-args :results silent :eval no-export :comments org
  6. #+OPTIONS: num:nil toc:nil todo:nil tasks:nil tags:nil
  7. #+OPTIONS: skip:nil author:nil email:nil creator:nil timestamp:nil
  8. Emacs on Android via Termux[fn:1].
  9. * Config
  10. Increase the default font size to accomodate the smaller screen size.
  11. #+begin_src emacs-lisp
  12. (setq dotfiles/font-size 132)
  13. #+end_src
  14. ** Disable modules
  15. Many modules simply do not run under Termux[fn:1].
  16. #+begin_src emacs-lisp
  17. (delete 'x11 dotfiles/modules) ;; TODO Create VNC module.
  18. (delete 'exwm dotfiles/modules) ;; Cannot run EXWM without X11.
  19. #+end_src
  20. * Footnotes
  21. [fn:1] https://wiki.termux.com