The officially official Devuan Forum!

You are not logged in.

#1 2021-09-19 21:18:28

oui
Member
Registered: 2017-09-02
Posts: 300  

urxvt

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

#2 2021-09-19 22:26:01

macondo123
Member
From: Panama
Registered: 2017-09-23
Posts: 26  

Re: urxvt

Lxterminal and qterminal gives a selection of colors and text size.

Offline

#3 2021-09-20 08:56:24

PedroReina
Member
From: Madrid, Spain
Registered: 2019-01-13
Posts: 267  
Website

Re: urxvt

May be that: configuring-urxvt

Offline

#4 2021-09-20 15:33:03

Ogis1975
Member
Registered: 2017-04-21
Posts: 307  
Website

Re: urxvt

oui wrote:

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

#5 2021-09-20 15:56:32

Head_on_a_Stick
Member
From: London
Registered: 2019-03-24
Posts: 3,125  
Website

Re: urxvt

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

Board footer