4

Has somebody tried change the font size of top bar in Ubuntu 20.04? It looks like approach to modifying has been changed compare to Ubuntu 18.04. I've done recommendations from this question. I've changed font-size in stage section, but looks like this is applied only to logon screen.

/* Global Values */
stage {
  font-size: 9pt;
  color: #3D3D3D; }

So, it looks correct on logon screen:

logon

But nothing change in user session:

session

If somebody has ideas how to change font size of top bar in Ubuntu 20.04, then please share. Thanks!

Pavel
  • 53

1 Answers1

3

follow this post to bring the default yaru shell theme to local https://askubuntu.com/a/1231311/739431

and then edit the required content as you wish like below;

/* Top Bar */
#panel {
  background-color: rgba(0,0,0,0.4);
  font-weight: bold;
  height: 1.86em;
  font-feature-settings: "tnum";
  font-family: Arial, Helvetica, sans-serif; /* added this line */
  font-size: 22px; } /* added this line */

enter image description here