Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disable the toolbar from aquamacs in my init file

Tags:

emacs

aquamacs

I want to permanently disable the GUI toolbar (the little buttons for "New" "Open", etc.) from aquamacs in my .emacs file. I have seen suggestions that you disable it in the gui and the go to Options >> Appearance >> Adopt Face and Frame as Default and then set that to permanent, but that is not working for me. I was hoping for something I could add to my .emacs that will disable it.

like image 378
seans Avatar asked Oct 03 '11 03:10

seans


1 Answers

Try putting the following in your ~/.emacs file:

(tool-bar-mode 0)
like image 175
Thomas Avatar answered Oct 27 '22 02:10

Thomas