You are not logged in.
Pages: 1
Hi
Star did install Urxvt. It is a good terminal. But the view of the text is very to small (generally: in the terminal as well as in terminal applications like nano, my prefered editor). Second problem is the choice of colors in nano (accentued, of course through the fact that the size of text is to small).
Is there a REALLY easy way to change that how to desinstall this (in my case not operable) application without benefit for me?
(actually, I log into an other console in using CTRL+ALT+F2 the size of those texts as well as the colors in nano are best for me! it would be enough to extend the settings of pure console to consoles in Xwindow! Why complexe if it would be so simple? The problem changing the console is that you can't compare two or 3 texts at the same time!)
Last edited by oui (2021-09-19 21:20:08)
Offline
Lxterminal and qterminal gives a selection of colors and text size.
Offline
May be that: configuring-urxvt
Offline
Hi
Star did install Urxvt. It is a good terminal. But the view of the text is very to small (generally: in the terminal as well as in terminal applications like nano, my prefered editor). Second problem is the choice of colors in nano (accentued, of course through the fact that the size of text is to small).
Is there a REALLY easy way to change that how to desinstall this (in my case not operable) application without benefit for me?
It is very easy. Just create file
.Xresources
in your home dir
nano .Xresources
and past this to that file
URxvt.font: xft:Monospace:size=10
URxvt.scrollBar: false
!Xterm
XTerm*faceName: Monospace
XTerm*faceSize: 11
XTerm*selectToClipboard: true
! Base16 Gruvbox dark, medium
! Scheme: Dawid Kurek (dawikur@gmail.com), morhetz (https://github.com/morhetz/gruvbox)
#define base00 #282828
#define base01 #3c3836
#define base02 #504945
#define base03 #665c54
#define base04 #bdae93
#define base05 #d5c4a1
#define base06 #ebdbb2
#define base07 #fbf1c7
#define base08 #fb4934
#define base09 #fe8019
#define base0A #fabd2f
#define base0B #b8bb26
#define base0C #8ec07c
#define base0D #83a598
#define base0E #d3869b
#define base0F #d65d0e
*.foreground: base05
#ifdef background_opacity
*.background: [background_opacity]base00
#else
*.background: base00
#endif
*.cursorColor: base05
*.color0: base00
*.color1: base08
*.color2: base0B
*.color3: base0A
*.color4: base0D
*.color5: base0E
*.color6: base0C
*.color7: base05
*.color8: base03
*.color9: base09
*.color10: base01
*.color11: base02
*.color12: base04
*.color13: base06
*.color14: base0F
*.color15: base07
!UXTerm
UXTerm*faceName: Monospace
UXTerm*faceSize: 10
What economists call over-production is but a production that is above the purchasing power of the worker, who is reduced to poverty by capital and state.
----+- Peter Kropotkin -+----
Offline
Note that rxvt-unicode will read ~/.Xdefaults if there are no resources set (ie, if ~/.Xresources does not exist). The file is read automatically on startup so there's no need to run xrdb --merge to apply any configuration changes.
The man pages are very good, especially section 7 (the configuration options).
Brianna Ghey — Rest In Power
Offline
Pages: 1