]> git.earman.xyz Git - emacsinit.git/commitdiff
attempt to put the mod bar on the bottom in android
authorrush <iv@earman.xyz>
Thu, 11 Jun 2026 15:51:57 +0000 (11:51 -0400)
committerrush <iv@earman.xyz>
Thu, 11 Jun 2026 15:51:57 +0000 (11:51 -0400)
config.org

index 1e89042d5d13439b59cc5a356c3892b73a31f736..cf82cab80a0476599cda1eb3f73bda8f1e83d8ba 100644 (file)
@@ -1001,8 +1001,10 @@ Stolen from https://www.masteringemacs.org/article/fixing-mark-commands-transien
 (load-theme 'eng-paper t)
 
 (if (equal system-type 'android)
-    (progn (modifier-bar-mode 1)
-           (setq touch-screen-display-keyboard t))
+    (progn (setq touch-screen-display-keyboard t
+                 tool-bar-position 'bottom)
+           (modifier-bar-mode 1)
+           (tool-bar-mode 1))
   (progn (menu-bar-mode -1)
          (tool-bar-mode -1)))
 (set-scroll-bar-mode (if (eq system-type 'windows-nt) nil 'left))