diff options
Diffstat (limited to '')
| -rw-r--r-- | Xresources | 25 | ||||
| -rwxr-xr-x[-rw-r--r--] | xsession | 9 |
2 files changed, 33 insertions, 1 deletions
@@ -1,3 +1,26 @@ -Xft.dpi: 192 +Emacs*toolBar: 0 +Emacs*menuBar: 0 +Emacs*verticalScrollBars: off +URxvt.jumpScroll: true +URxvt.skipScroll: true +URxvt.saveLines: 32768 +URxvt.scrollBar: false +URxvt.internalBorder: 1 +URxvt.cursorBlink: 0 +URxvt.visualBell: off +URxvt.perl-ext: selection,mark-yank-urls,cwd-spawn,selection-to-clipboard +URxvt.scrollstyle: next URxvt.font: xft:Bitstream Vera Sans Mono:size=10 + +Xft.dpi: 192 +Xft.autohint: 0 +Xft.lcdfilter: lcddefault +Xft.hintstyle: hintslight +Xft.hinting: 1 +Xft.antialias: 1 +Xft.rgba: rgb + +XTerm.vt100.termName: xterm-256color + + @@ -1,3 +1,12 @@ +#!/usr/bin/bash + +xrdb $HOME/.Xresources + +# Run redshift, but don’t fail if it’s not (yet) available +if command -V redshift >/dev/null 2>&1; then + redshift -m randr -l 47.31:8.50 -t 6000:5300 -b 0.8 & +fi + # set the background to something less aggressive than black xsetroot -solid "#333333" -cursor_name left_ptr |
