Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to change console font size in console in ATOM [email protected]

I am using ATOM for all my scripting. There is a package named "Script" where you can run your script from within ATOM by pressing Shift+Ctrl+Space. The command opens a console box at the bottom and shows you the script output. Does anyone know how to change the fontsizeenter image description here

like image 417
justZito Avatar asked Aug 06 '15 07:08

justZito


1 Answers

You can edit your stylesheet:
Edit -> Preferences -> Themes
And in your stylesheet write:

.script-view .line {
  font-size: 14px;
}

Then save it and reboot Atom

like image 116
Anton Novik Avatar answered Oct 05 '22 20:10

Anton Novik