gnome 3 panel and menu fonts are too small
up vote
4
down vote
favorite
Gnome 3 panel and menu fonts are way too small. (I like using menu's as long as I used mouse and keyboard. Touchscreen, now, that would be different) Is there a tool or extension or anything that can adjust those?
I did figure out one way to do it, after spending far too much time on this question. In gnome tweaks, font settings, first adjust (font) scaling until panel and menu fonts look good. Then set the rest of the fonts until whole desktop looks nice. But this is a clumsy way to do it. For one thing, you cannot change panel/menu font this way. Only size.
Is there any way to adjust those, short of patching gnome 3 sources and recompiling the whole desktop? As far as I can figure it out, that is the only other way...
gnome3
add a comment |
up vote
4
down vote
favorite
Gnome 3 panel and menu fonts are way too small. (I like using menu's as long as I used mouse and keyboard. Touchscreen, now, that would be different) Is there a tool or extension or anything that can adjust those?
I did figure out one way to do it, after spending far too much time on this question. In gnome tweaks, font settings, first adjust (font) scaling until panel and menu fonts look good. Then set the rest of the fonts until whole desktop looks nice. But this is a clumsy way to do it. For one thing, you cannot change panel/menu font this way. Only size.
Is there any way to adjust those, short of patching gnome 3 sources and recompiling the whole desktop? As far as I can figure it out, that is the only other way...
gnome3
add a comment |
up vote
4
down vote
favorite
up vote
4
down vote
favorite
Gnome 3 panel and menu fonts are way too small. (I like using menu's as long as I used mouse and keyboard. Touchscreen, now, that would be different) Is there a tool or extension or anything that can adjust those?
I did figure out one way to do it, after spending far too much time on this question. In gnome tweaks, font settings, first adjust (font) scaling until panel and menu fonts look good. Then set the rest of the fonts until whole desktop looks nice. But this is a clumsy way to do it. For one thing, you cannot change panel/menu font this way. Only size.
Is there any way to adjust those, short of patching gnome 3 sources and recompiling the whole desktop? As far as I can figure it out, that is the only other way...
gnome3
Gnome 3 panel and menu fonts are way too small. (I like using menu's as long as I used mouse and keyboard. Touchscreen, now, that would be different) Is there a tool or extension or anything that can adjust those?
I did figure out one way to do it, after spending far too much time on this question. In gnome tweaks, font settings, first adjust (font) scaling until panel and menu fonts look good. Then set the rest of the fonts until whole desktop looks nice. But this is a clumsy way to do it. For one thing, you cannot change panel/menu font this way. Only size.
Is there any way to adjust those, short of patching gnome 3 sources and recompiling the whole desktop? As far as I can figure it out, that is the only other way...
gnome3
gnome3
asked Jan 10 at 5:53
Juha Mäkinen
212
212
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
1
down vote
You may use (GNOME) Tweaks, previously known as (GNOME) Tweak Tool. It's a graphical interface for advanced GNOME 3 settings.
You should get what you're looking for in this tool:
(screenshot source)
You may create a custom CSS override for the shell theme in your home directory and load it from there to change the font of the top bar (which is controlled by the shell theme). To do that follow the steps below.
- Create a directory, say
MyTheme
in~/.themes
. - Create another directory inside
MyTheme
calledgnome-shell
. - Create an empty document in this
gnome-shell
directory and name itgnome-shell.css
.
Open this
gnome-shell.css
in a text editor and add the following lines
stage {
font-family: FONT_NAME, Sans-Serif;
font-size: 14pt;
color: #ffffff;
}
Replace
FONT_NAME
by a font of your choice and change thefont-size
to your liking (you may change colour too) and save the file.
Install and activate the User themes extension from here.
Go to Appearance section of Tweaks and click on the drop-down box next to "Shell theme". MyTheme should appear in the drop-down list. Select it.
Log out and log in again.
Indeed. Tweaks contains all fonts except menu and panel fonts. While you can use scaling factor to adjust them, there seems to be no other way to configure those. At least, since gnome-shell.css vanished somewhere...
– Juha Mäkinen
Jan 13 at 18:00
@JuhaMäkinen Please try the steps I added to my answer and report back.
– pomsky
Jan 14 at 0:56
So should'nt this custom theme enherit some other theme?! How can a single font setting be used as a theme?
– Basel Shishani
Aug 22 at 1:59
@BaselShishani It should inherit the default GNOME shell theme and override only its choice of font. You can add a@import url("/path/to/ThemeName/gnome-shell/gnome-shell.css");
at the beginning to inherit one specific GNOME shell theme.
– pomsky
Aug 22 at 6:34
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
You may use (GNOME) Tweaks, previously known as (GNOME) Tweak Tool. It's a graphical interface for advanced GNOME 3 settings.
You should get what you're looking for in this tool:
(screenshot source)
You may create a custom CSS override for the shell theme in your home directory and load it from there to change the font of the top bar (which is controlled by the shell theme). To do that follow the steps below.
- Create a directory, say
MyTheme
in~/.themes
. - Create another directory inside
MyTheme
calledgnome-shell
. - Create an empty document in this
gnome-shell
directory and name itgnome-shell.css
.
Open this
gnome-shell.css
in a text editor and add the following lines
stage {
font-family: FONT_NAME, Sans-Serif;
font-size: 14pt;
color: #ffffff;
}
Replace
FONT_NAME
by a font of your choice and change thefont-size
to your liking (you may change colour too) and save the file.
Install and activate the User themes extension from here.
Go to Appearance section of Tweaks and click on the drop-down box next to "Shell theme". MyTheme should appear in the drop-down list. Select it.
Log out and log in again.
Indeed. Tweaks contains all fonts except menu and panel fonts. While you can use scaling factor to adjust them, there seems to be no other way to configure those. At least, since gnome-shell.css vanished somewhere...
– Juha Mäkinen
Jan 13 at 18:00
@JuhaMäkinen Please try the steps I added to my answer and report back.
– pomsky
Jan 14 at 0:56
So should'nt this custom theme enherit some other theme?! How can a single font setting be used as a theme?
– Basel Shishani
Aug 22 at 1:59
@BaselShishani It should inherit the default GNOME shell theme and override only its choice of font. You can add a@import url("/path/to/ThemeName/gnome-shell/gnome-shell.css");
at the beginning to inherit one specific GNOME shell theme.
– pomsky
Aug 22 at 6:34
add a comment |
up vote
1
down vote
You may use (GNOME) Tweaks, previously known as (GNOME) Tweak Tool. It's a graphical interface for advanced GNOME 3 settings.
You should get what you're looking for in this tool:
(screenshot source)
You may create a custom CSS override for the shell theme in your home directory and load it from there to change the font of the top bar (which is controlled by the shell theme). To do that follow the steps below.
- Create a directory, say
MyTheme
in~/.themes
. - Create another directory inside
MyTheme
calledgnome-shell
. - Create an empty document in this
gnome-shell
directory and name itgnome-shell.css
.
Open this
gnome-shell.css
in a text editor and add the following lines
stage {
font-family: FONT_NAME, Sans-Serif;
font-size: 14pt;
color: #ffffff;
}
Replace
FONT_NAME
by a font of your choice and change thefont-size
to your liking (you may change colour too) and save the file.
Install and activate the User themes extension from here.
Go to Appearance section of Tweaks and click on the drop-down box next to "Shell theme". MyTheme should appear in the drop-down list. Select it.
Log out and log in again.
Indeed. Tweaks contains all fonts except menu and panel fonts. While you can use scaling factor to adjust them, there seems to be no other way to configure those. At least, since gnome-shell.css vanished somewhere...
– Juha Mäkinen
Jan 13 at 18:00
@JuhaMäkinen Please try the steps I added to my answer and report back.
– pomsky
Jan 14 at 0:56
So should'nt this custom theme enherit some other theme?! How can a single font setting be used as a theme?
– Basel Shishani
Aug 22 at 1:59
@BaselShishani It should inherit the default GNOME shell theme and override only its choice of font. You can add a@import url("/path/to/ThemeName/gnome-shell/gnome-shell.css");
at the beginning to inherit one specific GNOME shell theme.
– pomsky
Aug 22 at 6:34
add a comment |
up vote
1
down vote
up vote
1
down vote
You may use (GNOME) Tweaks, previously known as (GNOME) Tweak Tool. It's a graphical interface for advanced GNOME 3 settings.
You should get what you're looking for in this tool:
(screenshot source)
You may create a custom CSS override for the shell theme in your home directory and load it from there to change the font of the top bar (which is controlled by the shell theme). To do that follow the steps below.
- Create a directory, say
MyTheme
in~/.themes
. - Create another directory inside
MyTheme
calledgnome-shell
. - Create an empty document in this
gnome-shell
directory and name itgnome-shell.css
.
Open this
gnome-shell.css
in a text editor and add the following lines
stage {
font-family: FONT_NAME, Sans-Serif;
font-size: 14pt;
color: #ffffff;
}
Replace
FONT_NAME
by a font of your choice and change thefont-size
to your liking (you may change colour too) and save the file.
Install and activate the User themes extension from here.
Go to Appearance section of Tweaks and click on the drop-down box next to "Shell theme". MyTheme should appear in the drop-down list. Select it.
Log out and log in again.
You may use (GNOME) Tweaks, previously known as (GNOME) Tweak Tool. It's a graphical interface for advanced GNOME 3 settings.
You should get what you're looking for in this tool:
(screenshot source)
You may create a custom CSS override for the shell theme in your home directory and load it from there to change the font of the top bar (which is controlled by the shell theme). To do that follow the steps below.
- Create a directory, say
MyTheme
in~/.themes
. - Create another directory inside
MyTheme
calledgnome-shell
. - Create an empty document in this
gnome-shell
directory and name itgnome-shell.css
.
Open this
gnome-shell.css
in a text editor and add the following lines
stage {
font-family: FONT_NAME, Sans-Serif;
font-size: 14pt;
color: #ffffff;
}
Replace
FONT_NAME
by a font of your choice and change thefont-size
to your liking (you may change colour too) and save the file.
Install and activate the User themes extension from here.
Go to Appearance section of Tweaks and click on the drop-down box next to "Shell theme". MyTheme should appear in the drop-down list. Select it.
Log out and log in again.
edited Jan 14 at 0:55
answered Jan 11 at 16:24
pomsky
396210
396210
Indeed. Tweaks contains all fonts except menu and panel fonts. While you can use scaling factor to adjust them, there seems to be no other way to configure those. At least, since gnome-shell.css vanished somewhere...
– Juha Mäkinen
Jan 13 at 18:00
@JuhaMäkinen Please try the steps I added to my answer and report back.
– pomsky
Jan 14 at 0:56
So should'nt this custom theme enherit some other theme?! How can a single font setting be used as a theme?
– Basel Shishani
Aug 22 at 1:59
@BaselShishani It should inherit the default GNOME shell theme and override only its choice of font. You can add a@import url("/path/to/ThemeName/gnome-shell/gnome-shell.css");
at the beginning to inherit one specific GNOME shell theme.
– pomsky
Aug 22 at 6:34
add a comment |
Indeed. Tweaks contains all fonts except menu and panel fonts. While you can use scaling factor to adjust them, there seems to be no other way to configure those. At least, since gnome-shell.css vanished somewhere...
– Juha Mäkinen
Jan 13 at 18:00
@JuhaMäkinen Please try the steps I added to my answer and report back.
– pomsky
Jan 14 at 0:56
So should'nt this custom theme enherit some other theme?! How can a single font setting be used as a theme?
– Basel Shishani
Aug 22 at 1:59
@BaselShishani It should inherit the default GNOME shell theme and override only its choice of font. You can add a@import url("/path/to/ThemeName/gnome-shell/gnome-shell.css");
at the beginning to inherit one specific GNOME shell theme.
– pomsky
Aug 22 at 6:34
Indeed. Tweaks contains all fonts except menu and panel fonts. While you can use scaling factor to adjust them, there seems to be no other way to configure those. At least, since gnome-shell.css vanished somewhere...
– Juha Mäkinen
Jan 13 at 18:00
Indeed. Tweaks contains all fonts except menu and panel fonts. While you can use scaling factor to adjust them, there seems to be no other way to configure those. At least, since gnome-shell.css vanished somewhere...
– Juha Mäkinen
Jan 13 at 18:00
@JuhaMäkinen Please try the steps I added to my answer and report back.
– pomsky
Jan 14 at 0:56
@JuhaMäkinen Please try the steps I added to my answer and report back.
– pomsky
Jan 14 at 0:56
So should'nt this custom theme enherit some other theme?! How can a single font setting be used as a theme?
– Basel Shishani
Aug 22 at 1:59
So should'nt this custom theme enherit some other theme?! How can a single font setting be used as a theme?
– Basel Shishani
Aug 22 at 1:59
@BaselShishani It should inherit the default GNOME shell theme and override only its choice of font. You can add a
@import url("/path/to/ThemeName/gnome-shell/gnome-shell.css");
at the beginning to inherit one specific GNOME shell theme.– pomsky
Aug 22 at 6:34
@BaselShishani It should inherit the default GNOME shell theme and override only its choice of font. You can add a
@import url("/path/to/ThemeName/gnome-shell/gnome-shell.css");
at the beginning to inherit one specific GNOME shell theme.– pomsky
Aug 22 at 6:34
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f415983%2fgnome-3-panel-and-menu-fonts-are-too-small%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown