dotfiles/config/Xresources/urxvt

62 lines
1.5 KiB
Plaintext
Raw Normal View History

2018-04-15 14:29:27 +00:00
! Scrollback position
2018-05-21 08:57:19 +00:00
! TODO Does not work
2018-04-15 14:29:27 +00:00
! do not scroll with output
URxvt*scrollTtyOutput: false
! scroll in relation to buffer (with mouse scroll or Shift+Page Up)
URxvt*scrollWithBuffer: true
! scroll back to the bottom on keypress
URxvt*scrollTtyKeypress: true
! Scrollback buffer in secondary screen
2018-05-21 08:57:19 +00:00
! TODO Does not work
2018-04-15 14:29:27 +00:00
URxvt.secondaryScreen: 1
URxvt.secondaryScroll: 0
2018-05-21 08:57:19 +00:00
! No scroll bar
2020-10-17 21:47:48 +00:00
URxvt*scrollBar: false
2018-05-21 08:57:19 +00:00
2018-04-15 14:29:27 +00:00
! Font declaration
2021-07-04 07:52:16 +00:00
URxvt.font: xft:DejaVuSansMono Nerd Font Mono:size=12:antialias=true,xft:Twemoji:size=12:antialias=true,xft:symbola:size=12:minspace=False
2018-04-15 14:29:27 +00:00
! Font spacing
URxvt.letterSpace: 0
! Disable Ctrl+Shift default bindings
URxvt.iso14755: false
URxvt.iso14755_52: false
! Copy/Paste CLIPBOARD selection with Ctrl+Shift+C/V
URxvt.keysym.C-S-C: eval:selection_to_clipboard
URxvt.keysym.C-S-V: eval:paste_clipboard
! Extensions
2019-05-08 15:25:23 +00:00
URxvt.perl-ext-common: resize-font,bell-command,readline,selection
2018-04-15 14:29:27 +00:00
! Changing font size on the fly (extension: resize-font, package: urxvt-resize-font-git)
URxvt.keysym.C-KP_Subtract: resize-font:smaller
URxvt.keysym.C-KP_Add: resize-font:bigger
! Fake transparency (without compositing manager)
urxvt*transparent: true
urxvt*shading: 30
! True transparency (with compositing manager)
!urxvt*depth: 32
!urxvt*background: rgba:2700/2800/2200/c800
2018-05-21 08:57:19 +00:00
! Bell command (extension: bell-command)
URxvt.bell-command: play -n synth sine C5 sine E4 remix 1-2 fade 0.1 0.2 0.1 &> /dev/null
2018-11-24 12:45:14 +00:00
! Open URL in browser (extension: matcher)
2019-05-08 15:25:23 +00:00
! URxvt.url-launcher: o
! URxvt.matcher.button: 1
! URxvt.matcher.rend.0: Uline Bold fg5
2018-11-24 12:45:14 +00:00