dotfiles/.Xresources

60 lines
1.9 KiB
Plaintext

! ------------------ !
! ~/.Xresources !
! ------------------- !
!! URXVT {{{
! Ricing the terminal
! Remove the ugly scrollbar
URxvt.scrollBar: false
URxvt.scrollBar_right: false
URxvt.cursorBlink: true
URxvt*transparent: true
! Feels like a cheat but woks IMO (displays the underlying desktop background...
! so floating over a window won't show the underlying window but dig a hole in it)
! Useful to simply handle monocle and fullscreen terms though.
urxvt.highlightTextColor: rgb:E0/CE/91
urxvt.highlightColor: rgb:F0/84/54
! }}}
!! Colors {{{
! I keep my color themes in '.Xresources.d/colors', just use "#include '.Xresources.d/colors/yourColorTheme'"
! Note : the #include method requires a C preprocessor to work, you should be OK if you have gcc installed.
! Color themes can be browsed, created and downloaded from the amazing 'http://terminal.sexy'
!#include ".Xresources.d/colors/mocha"
#include ".Xresources.d/colors/seamless2"
! }}}
!! Fonts {{{
! Set up fonts, sizes and styles
xterm*faceName: DejaVu Sans Mono
xterm*faceSize: 9
xterm*renderFont: true
URxvt.letterSpace: -1
URxvt.font: xft:DejaVu Sans Mono:size=9,xft:Noto Emoji:pixelsize=9
URxvt.boldFont: xft:DejaVu Sans Mono:style=Bold:size=9
! }}}
!! Rofi {{{
! Rofi, the smart launcher, looks and feel
! 'bg' 'border' 'separator'
rofi.color-window: argb:c82d303b, #7c8389, argb:00000000
! State 'bg' 'fg' 'bg-alt' 'bg-hl' 'fg-hl'
rofi.color-normal: argb:00000000, #b6b9ba, argb:00000000, argb:00000000, #2cc2fa
rofi.color-urgent: argb:2c1d1f21, #cc6666, argb:e54b5160, #a54242, #f9f9f9
rofi.color-active: argb:2c1d1f21, #65acff, argb:e44b5160, #4491ed, #f9f9f9
rofi.width: 50
rofi.lines: 5
rofi.columns: 1
rofi.font: DejaVu Sans Mono 14
rofi.bw: 0
rofi.padding: 50
rofi.eh: 1
rofi.separator-style: solid
rofi.hide-scrollbar: true
! }}}
! vim:foldmethod=marker:foldlevel=0