move all existing stuff to old/

This commit is contained in:
Mark Riedesel 2023-11-07 13:13:11 -06:00
parent c215878777
commit 35f5e8472b
49 changed files with 0 additions and 0 deletions

27
old/xinitrc Executable file
View file

@ -0,0 +1,27 @@
#!/bin/sh
cd $HOME
if [ -d /etc/X11/xinit/xinitrc.d ]; then
for f in /etc/X11/xinit/xinitrc.d/*; do
[ -x "$f" ] && . "$f"
done
unset f
fi
# Merge .Xresources
[[ -f ~/.Xresources ]] && xrdb -merge -I$HOME ~/.Xresources
# export ssh-user-agent variables
eval $(systemctl --user show-environment | grep SSH_AUTH_SOCK)
export SSH_AUTH_SOCK
# Per-host init
filepath=$(dirname $(readlink -f $0))
for f in "all" "$(hostname)"; do
f="${filepath}/_xinitrc/xinitrc.$f"
echo $f
[ -e "$f" ] && . "$f"
done
unset filepath
# Launch i3!
exec i3