【原创】大叔经验分享(119)rxvt

时间:2020-08-01
本文章向大家介绍【原创】大叔经验分享(119)rxvt,主要包括【原创】大叔经验分享(119)rxvt使用实例、应用技巧、基本知识点总结和需要注意事项,具有一定的参考价值,需要的朋友可以参考一下。

增加配置

cat ~/.Xresources
URxvt.title: rxvt
URxvt.preeditType: Root
!! Input Method
URxvt.inputMethod: fcitx
!! Display
URxvt.depth: 32
URxvt.transparent: True
URxvt.shading: 16
!! Colors (Based on Tomorrow Night Bright)
URxvt.foreground:   #EAEAEA
URxvt.background:   rgba:0000/0000/0000/cccc
URxvt.colorBD:      #FFFFFF
URxvt.colorUL:      #B9CA4A
! Black / Grey
URxvt.color0:       #000000
URxvt.color8:       #666666
! Red / Bright Red
URxvt.color1:       #D54E53
URxvt.color9:       #FF3334
! Green + Bright Green
URxvt.color2:       #B9CA4A
URxvt.color10:      #9EC400
! Yellow (Orange) + Bright Yellow (Yellow)
URxvt.color3:       #E78C45
URxvt.color11:      #E7C547
! Blue + Bright Blue
URxvt.color4:       #7AA6DA
URxvt.color12:      #7AA6DA
! MAGENTA (PURPLE) + BRIGHT MAGENTA
URxvt.color5:       #C397D8
URxvt.color13:      #B777E0
! Cyan (Aqua) + Bright Cyan
URxvt.color6:       #70C0B1
URxvt.color14:      #54CED6
! Light Grey (Selection) + White (Current Line)
URxvt.color7:       #424242
URxvt.color15:      #2A2A2A
!! URL Operations
URxvt.url-launcher: firefox
URxvt.matcher.button: 1
URxvt.perl-ext-common: default,tabbed,fullscreen,matcher
URxvt.keysym.F11: perl:fullscreen:switch
!! Scollbar
URxvt.scrollBar: True
URxvt.scrollBar_right: True
URxvt.scrollBar_floating: True
!! Scoll
URxvt.mouseWheelScrollPage: True
URxvt.scrollstyle: plain
URxvt.scrollTtyKeypress: True
URxvt.scrollTtyOutput: False
URxvt.scrollWithBuffer: True
URxvt.saveLines: 30000
!! Cursor
URxvt.cursorBlink: True
!! Border
URxvt.borderLess: False
!! Fonts
Xft.dpi: 96
!URxvt.letterSpace: -1
URxvt.font: xft:DejaVu Sans Mono:style=Regular:antialias=True:pixelsize=12,xft:WenQuanYi Micro Hei Mono:style=Regular:pixelsize=12
URxvt.boldFont: xft:DejaVu Sans Mono:style=Bold:antialias=True:pixelsize=12,xft:WenQuanYi Micro Hei Mono:style=Bold:pixelsize=12
!! copy & paste
URxvt.keysym.Shift-Control-V: eval:paste_clipboard
URxvt.keysym.Shift-Control-C: eval:selection_to_clipboard
URxvt.keysym.Control-Meta-c: builtin-string:
URxvt.keysym.Control-Meta-v: builtin-string:

配置生效

xrdb ~/.Xresources

参考:
https://linux.die.net/man/1/urxvt
https://wiki.archlinux.org/index.php/Rxvt-unicode

原文地址:https://www.cnblogs.com/barneywill/p/13412860.html