diff options
-rwxr-xr-x | emacs.org | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -8,6 +8,7 @@ Check the ~$HOSTNAME~ to set a variable for different devices #+begin_src emacs-lisp (defvar is-zeus (equal (system-name) "zeus")) (defvar is-hermes (equal (system-name) "hermes")) + (defvar is-phone (equal (system-name) "localhost")) #+end_src Setup default browser as ~mullvad-browser~ #+begin_src emacs-lisp @@ -131,10 +132,12 @@ Fonts and basic appearance settings (display-battery-mode 0) (display-battery-mode 1)) - (scroll-bar-mode -1) + (when (equal is-phone nil) + (scroll-bar-mode -1) + (set-fringe-mode 10)) + (tool-bar-mode -1) (tooltip-mode -1) - (set-fringe-mode 10) (menu-bar-mode -1) (which-key-mode 1) (blink-cursor-mode -1) |