如何配置 rxvt-unicode 使其行为类似于 gnome-terminal?(或来自 xfce/mate 的其他内容)

如何配置 rxvt-unicode 使其行为类似于 gnome-terminal?(或来自 xfce/mate 的其他内容)

尝试 rxvt-unicode 后,我发现它与 (gnome-terminal / xfce4-terminal / roxterm / terminator) 有太多区别,很难习惯。

什么是一个好的最小配置,它以与 gnome 终端(或其他终端之一,我只是用它作为参考)类似的默认值启动。

  • 按键绑定(复制粘贴、新标签?)
  • 点击 URL
  • 滚动行为
  • 缩放字体
  • 相似颜色

对于不想使用他人整个配置的人来说,只需设置类似的基础配置,这样就不会感到不舒服。

答案1

尝试回答自己的问题:匹配 gnome-shell,并设置黑底灰色。

细节:

  • RMB 启动 URL(以允许常规 LMB/MMB 粘贴)。
  • Ctrl-Shift-C/V 用于复制粘贴。
  • Ctrl +/- 缩放字体,0 重置(需要插件)。
  • Ctrl-L 执行完全重置和清除。

配置:

! 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: \033[H
URxvt.keysym.End:  \033[F

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

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

! 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

相关内容