You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there away to increase fonts in the Sidebar?
As part of Nemo settings?
Gemini Result
To increase the font size in Nemo's sidebar, you can adjust the default font size or the text scaling factor in your system's font settings. You can also explore customizing Nemo's CSS files for more precise control.
Here's a more detailed breakdown:
1. System Font Settings:
Navigate to "System Settings" then "Fonts".
Under "Font Selection," you can increase the size of the "Default font".
Alternatively, in "Font Settings," you can increase the "Text scaling factor".
2. Nemo CSS Customization:
Nemo utilizes GTK+ CSS files to define its appearance.
Create a .themes folder in your home directory if it doesn't exist.
Place a custom theme folder within the .themes directory.
Inside your theme, create a gtk-3.0 folder, then an apps folder, and finally a nemo.css file.
Add CSS rules to nemo.css to target specific elements in the sidebar and adjust their font sizes.
Add @import url("apps/nemo.css") to your gtk-3.0/gtk.css file to apply your custom rules.
Example CSS Rule for Sidebar Text:
#sidebar-panel, .sidebar-label { /* Target sidebar panel and labels */font-size:14px; /* Adjust the desired font size */
}
Note: You might need to restart Nemo or log out and back in for changes to take effect.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
Is there away to increase fonts in the Sidebar?
As part of Nemo settings?
Gemini Result
To increase the font size in Nemo's sidebar, you can adjust the default font size or the text scaling factor in your system's font settings. You can also explore customizing Nemo's CSS files for more precise control.
Here's a more detailed breakdown:
1. System Font Settings:
2. Nemo CSS Customization:
.themes
folder in your home directory if it doesn't exist..themes
directory.gtk-3.0
folder, then anapps
folder, and finally anemo.css
file.nemo.css
to target specific elements in the sidebar and adjust their font sizes.@import url("apps/nemo.css")
to yourgtk-3.0/gtk.css
file to apply your custom rules.Example CSS Rule for Sidebar Text:
Note: You might need to restart Nemo or log out and back in for changes to take effect.
Beta Was this translation helpful? Give feedback.
All reactions