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