Nemo Terminal - option to change font color #779
sameerdenzi
started this conversation in
Ideas
Replies: 3 comments 7 replies
-
I'm not sure what terminal app you are talking about. The Terminal app on Linux Mint is Gnome-Terminal by default, and it has an option in the preferences for adjust the font colors. |
Beta Was this translation helpful? Give feedback.
4 replies
-
I was unable to find any section named "Administration" in the preferences section of Nemo.
FYI - Screen shots of the Nemo Terminal Extension as well as its place in the Preferences section


OS is Linix Mint 22.1 Cinnamon
Nemo Version is 6.4.4
Command to install Terminal Extension: sudo apt install nemo-terminal
|
Beta Was this translation helpful? Give feedback.
3 replies
-
I moved the file nemo_terminal.py from /usr/share/nemo-python/extensions to ~/.local/share/nemo-python/extensions (so that it is not changed in an update) added Pango to imports from gi.repository import GObject, Nemo, Gtk, Gdk, Vte, GLib, Gio, Pango` and add after the line 87 self.term = Vte.Terminal() ###################start theming##############################
self.term.set_font(Pango.FontDescription.from_string("Noto Mono, 9"))
self.term.set_scroll_on_output(True)
self.term.set_scroll_on_keystroke(True)
palette = [Gdk.RGBA(0.4, 0.8, 0.8, 1.0)] * 16
self.term.set_colors(Gdk.RGBA(1.0, 1.0, 1.0, 1.0), Gdk.RGBA(0.2, 0.2, 0.2, 1.0), palette)
self.term.set_color_highlight(Gdk.RGBA(0.3, 0.3, 0.9, 1.0))
self.term.set_color_highlight_foreground(Gdk.RGBA(0.8, 0.8, 0.8, 1.0))
###################end theming############################## Now it looks better. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
Love the Nemo app, The Terminal extension is my default terminal as I hate cd-ing to navigate through folders. I have a request to improve the user experience.
Beta Was this translation helpful? Give feedback.
All reactions