From ebeacab54079812fcc1d96f9194c4df90e6a78aa Mon Sep 17 00:00:00 2001 From: Christopher James Hayward Date: Thu, 4 Feb 2021 22:27:23 -0500 Subject: [PATCH] Add laptop host machine --- README.org | 17 +++++++++++++++++ hosts/acernitro.el | 3 +++ 2 files changed, 20 insertions(+) create mode 100644 hosts/acernitro.el diff --git a/README.org b/README.org index 7b45c11..2e1f872 100644 --- a/README.org +++ b/README.org @@ -186,6 +186,23 @@ Remove the ~desktop~ module, since we're running on android. (delete 'desktop dotfiles/modules) #+end_src +** Laptop (acernitro) +:PROPERTIES: +:header-args: :tangle hosts/acernitro.el +:END: + +Use ~firefox~ as a web browser. + +#+begin_src emacs-lisp +(setq dotfiles/browser "firefox") +#+end_src + +This machine has a screen with a very high =DPI=, requiring modification to ~dotfiles/font-size~. + +#+begin_src emacs-lisp +(setq dotfiles/font-size 196) +#+end_src + * Modules Breaking down the project into logical units or chapters to keep the code more maintainable and organized. This is also a fundemental requirement to achieve the goal of modularity. Incorporating just the =core= module on a build server to build literate programming projects is just one example of what can be achieved. diff --git a/hosts/acernitro.el b/hosts/acernitro.el new file mode 100644 index 0000000..455bfff --- /dev/null +++ b/hosts/acernitro.el @@ -0,0 +1,3 @@ +(setq dotfiles/browser "firefox") + +(setq dotfiles/font-size 196)