aboutsummaryrefslogtreecommitdiff
path: root/xinitrc-i3
blob: b08fd550c08b26515fa8c123ece1c575e8770943 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

scriptdir="$HOME/.xinitrc.d/"
if [ -d "$scriptdir" ]; then
  scripts=`/bin/ls -1 "$scriptdir"`
  for file in $scripts; do
    if [ -f $scriptdir/$file ]; then
      $scriptdir/$file
    fi
  done
fi

exec i3