.xsessionrc

Tue, 30 Aug 2016 18:15:03 -0400

author
Meredith Howard <mhoward@roomag.org>
date
Tue, 30 Aug 2016 18:15:03 -0400
changeset 378
e13ba40f4533
parent 282
f6890bef382e
child 379
3ea340bffa35
permissions
-rw-r--r--

Break i3 and i3status configs into component files, to make local mods easier maybe

#!/bin/bash

if [ "$(uname -s)" = "OpenBSD" ]; then
  PATH="/usr/X11R6/bin:$PATH"
fi

xcompmgr -n &>/dev/null </dev/null &

xmodmap ~/.xmodmaprc

if [ -r ~/.Xdefaults.local ]; then
  xrdb -quiet -merge -DUSE_LOCAL ~/.Xdefaults
fi

urxvtd -q -o -f

make -C ~/.i3

if [ -r ~/.xsessionrc.local ]; then
  . ~/.xsessionrc.local
fi

mercurial