web-dev-qa-db-ja.com

gnome-terminalと同様に動作するようにrxvt-unicodeを構成するにはどうすればよいですか? (またはxfce / mateからの他のもの)

Rxvt-unicodeを試してみると、(gnome-terminal/xfce4-terminal/roxterm/terminator)には非常に多くの違いがあり、慣れるのが難しいことがわかりました。

Gnomeターミナルと同様のデフォルトで始まる適切な最小構成は何ですか(または他の1つ、これを参照として使用しています)。

  • キーバインディング(コピーアンドペースト、新しいタブ?)
  • URLをクリックします
  • スクロール動作
  • フォントのスケーリング
  • 似たような色

他の人の構成全体を望まない人は、同様の基本をセットアップして、不快にならないようにしてください。

4
ideasman42

自分の質問に答えてみてください:黒地に灰色が設定されたgnome-Shellに一致します。

詳細:

  • URLを起動するRMB(通常の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
9
ideasman42