# HG changeset patch # User Meredith Howard # Date 1402846116 14400 # Node ID d18a4be6db77a1a3706c95bbf81585006a968ff8 # Parent 7171e2a98c17d8895491c60ae177c7d5f22d5249 Copy .Xdefaults.local setup from default diff --git a/.Xdefaults b/.Xdefaults --- a/.Xdefaults +++ b/.Xdefaults @@ -2,7 +2,6 @@ URxvt.foreground: white URxvt.background: #070707 URxvt.font: xft:monospace-10 -URxvt.letterSpace: -1 URxvt.scrollstyle: plain URxvt.scrollBar_right: true @@ -16,3 +15,6 @@ URxvt.saveLines: 1000 URxvt.iso14755: false URxvt.iso14755_52: false +#ifdef USE_LOCAL +#include ".Xdefaults.local" +#endif diff --git a/.xsessionrc b/.xsessionrc --- a/.xsessionrc +++ b/.xsessionrc @@ -24,6 +24,10 @@ if [ -x /usr/bin/xcompmgr ]; then fi +if [ -r ~/.Xdefaults.local ]; then + /usr/bin/xrdb -quiet -merge -cpp /usr/bin/cpp -DUSE_LOCAL ~/.Xdefaults +fi + if [ -r ~/.xsessionrc.local ]; then . ~/.xsessionrc.local fi