mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-15 21:03:59 +01:00
522b92c9cd
Realistically, you'll be using neither termite nor urxvt if you have access to a desktop environment since those usually include their own terminal emulator that works out of the box anyway. Additionally, many of the benefits from termite and urxvt are not a necessity in other desktop environments.
51 lines
1.3 KiB
Plaintext
51 lines
1.3 KiB
Plaintext
! New Start: A modern Arch workflow built with an emphasis on functionality.
|
|
! Copyright (C) 2017-2018 Donovan Glover
|
|
|
|
! Use 1.875x (180/96) scaling for 4k (Effectively 2048x1152)
|
|
Xft.dpi: 180
|
|
|
|
! Make it easier to distinguish between letters (Required for dpi < 300)
|
|
Xft.hinting: true
|
|
|
|
! Make high resolution output look cleaner
|
|
Xft.antialias: true
|
|
|
|
! Only use hinting if the font provides it; do not attempt to autohint
|
|
Xft.autohint: false
|
|
|
|
! Reduce blur and other unwanted artifacts
|
|
Xft.lcdfilter: lcddefault
|
|
|
|
! Align the font fully to the grid (increases clarity)
|
|
Xft.hintstyle: hintfull
|
|
|
|
! Set the type of subpixel antialiasing to rgb
|
|
Xft.rgba: rgb
|
|
|
|
! Make letter spacing identical to termite
|
|
URxvt.letterSpace: 1
|
|
|
|
! urxvt settings
|
|
URxvt.font: xft:Hack:size=11
|
|
|
|
URxvt.scrollBar: false
|
|
URxvt.internalBorder: 30
|
|
URxvt.cursorBlink: true
|
|
URxvt.pointerBlank: true
|
|
|
|
! https://wiki.gentoo.org/wiki/Rxvt-unicode
|
|
URxvt.perl-ext-common: default,selection-to-clipboard,pasta,matcher,keyboard-select
|
|
URxvt.keysym.M-u: perl:url-select:select_next
|
|
URxvt.url-launcher: /usr/bin/firefox
|
|
URxvt.underlineURLs: true
|
|
URxvt.matcher.button: 1
|
|
URxvt.keysym.M-Escape:perl:keyboard-select:activate
|
|
URxvt.keysym.Control-Shift-V: perl:pasta:paste
|
|
URxvt.clipboard.autocopy: true
|
|
|
|
! Disable default ctrl shift behavior of urxvt
|
|
URxvt.iso14755: false
|
|
URxvt.iso14755_52: false
|
|
|
|
! vim:ft=xdefaults
|