From 78f7be4e4b6501b15b5fefc9f7824bbadf0daf2a Mon Sep 17 00:00:00 2001 From: Weitian LI Date: Fri, 13 Jun 2014 21:12:21 +0800 Subject: Added various dotfiles. * Xresources * profile, xprofile, xinitrc * bash (aliases, logout, profile, rc, completion) * gitconfig * gtkrc and gtk-bookmarks * i3 configs (with py3status configs) * i3status.conf * lftp/rc * tmux.conf * xbindkeysrc * mpdconf * ncmpcpp (config and keys) * sbclrc * vifm (vifmrc, colors) * urxvt (perl extensions) * conkyrc (and conky/cronograph configs) --- .xinitrc | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .xinitrc (limited to '.xinitrc') diff --git a/.xinitrc b/.xinitrc new file mode 100644 index 0000000..bfeb0a2 --- /dev/null +++ b/.xinitrc @@ -0,0 +1,15 @@ +#!/bin/sh + +# Run all system xinitrc shell scripts. +xinitdir="/etc/X11/xinit/xinitrc.d" +if [ -d "$xinitdir" ]; then + for script in $xinitdir/*; do + echo "Loading xinit script $script" + if [ -x "$script" -a ! -d "$script" ]; then + . "$script" + fi + done +fi + +[ -f ~/.Xresources ] && xrdb -merge ~/.Xresources + -- cgit v1.2.2