Como configurar o rxvt-unicode para se comportar como o gnome-terminal? (ou outro do xfce / mate)

2

Experimentando o rxvt-unicode, descobri que existem muitas diferenças para (gnome-terminal / xfce4-terminal / roxterm / terminator) que é difícil se acostumar.

O que é uma boa configuração mínima que começa com padrões semelhantes ao terminal gnome (ou um dos outros, estou apenas usando isso como referência).

  • Ligações de teclas (copiar e colar, nova guia?)
  • Clique no URL
  • Comportamento de rolagem
  • Redimensionando fontes
  • Cores semelhantes

Para quem não quer a configuração completa de outra pessoa, basta configurar o básico para que não seja desconfortável.

    
por ideasman42 04.09.2017 / 17:12

1 resposta

5

Tentativa de responder à própria pergunta: Corresponde ao gnomo-shell, com cinza no conjunto de cores preto.

Detalhes:

  • RMB para iniciar o URL (para permitir a colagem regular de LMB / MMB).
  • Ctrl-Shift-C / V para copiar e colar.
  • Ctrl +/- para ampliar as fontes, 0 redefinir (requer plug-in).
  • Ctrl-L executa a redefinição completa e limpa.

Configuração:

! Extensions
! ==========
!
! - matcher,selection-to-clipboard: for clicking on URLs
! - font-size: for scaling fonts
!   https://github.com/majutsushi/urxvt-font-size/blob/master/font-size
!
URxvt.perl-ext-common: default,matcher,selection-to-clipboard,font-size


! Fonts
! =====
URxvt.font: xft:Monospace:size=12
URxvt.allow_bold: true


! Scrolling
! =========
URxvt.saveLines: 10000
URxvt.scrollBar: true
URxvt.scrollstyle: rxvt
URxvt.scrollBar_floating: true
URxvt.scrollColor: #aaaaaa
URxvt.scrollBar_right: true
URxvt.thickness: 12

! Scroll locking
URxvt.scrollTtyOutput:      false
URxvt.scrollWithBuffer:     true
URxvt.scrollTtyKeypress:    true


! Interaction
! ===========

! allow filepaths to select as one, otherwise delimit
URxvt.cutchars: "\"(),<>[]{}|''"

! For clickable urls (RMB), not an exact match to gnome-shell.
URxvt.url-launcher: xdg-open
URxvt.matcher.button: 3


! Key Bindings
! ============

! Copy/Paste, same keys as gnome-terminal
! https://stackoverflow.com/questions/39884093
! Disable ISO 14755 unicode input so we can use Ctrl-Shift bindings
URxvt.iso14755:        false
URxvt.iso14755_52:     false
! Disable Ctrl-Alt-c & Ctrl-Alt-v bindings (optional)
URxvt.keysym.C-M-c:    builtin-string:
URxvt.keysym.C-M-v:    builtin-string:
! Bind Ctrl-Shift-c & Ctrl-Shift-v to copy and paste
! I dont know why, but I needed to use hex keysym values to get it to work
URxvt.keysym.C-S-0x43: eval:selection_to_clipboard
URxvt.keysym.C-S-0x56: eval:paste_clipboard

URxvt.keysym.Home: 3[H
URxvt.keysym.End:  3[F

! match vte/xterm
URxvt.keysym.Control-Up:    3[1;5A
URxvt.keysym.Control-Down:  3[1;5B
URxvt.keysym.Control-Left:  3[1;5D
URxvt.keysym.Control-Right: 3[1;5C

! clear the scrollback
URxvt.keysym.Control-l: command:3c

! scale fonts
URxvt.keysym.C-S-plus: font-size:increase
URxvt.keysym.C-KP_Add: font-size:increase
URxvt.keysym.C-S-underscore: font-size:decrease
URxvt.keysym.C-KP_Subtract: font-size:decrease
URxvt.keysym.C-0: font-size:reset
URxvt.keysym.C-KP_0: font-size:reset


! Theme/Colors
! ============

URxvt.fading: 0

URxvt.cursorColor: #AAAAAA
URxvt.cursorBlink: 1
URxvt.cursorUnderline: 1

URxvt.background: black
URxvt.foreground: gray

!! Tango Colors
!
!! black dark/light
URxvt.color0: #171A1B
URxvt.color8: #555753

!! red dark/light
URxvt.color1: #CC0000
URxvt.color9: #FF0000

!! green dark/light
URxvt.color2: #00DD00
URxvt.color10: #00FF00

!! yellow dark/light
URxvt.color3: #DDDD00
URxvt.color11: #FFFF00

!! blue dark/light
URxvt.color4: #8888FF
URxvt.color12: #AAAAFF

!! magenta dark/light
URxvt.color5: #75507B
URxvt.color13: #AD7FA8

!! cyan dark/light
URxvt.color6: #06989A
URxvt.color14: #34E2E2

!! white dark/light
URxvt.color7: #D3D7CF
URxvt.color15: #EEEEEC
    
por 04.09.2017 / 18:00

Tags