@@ 0,0 1,16 @@
+#!/bin/sh
+
+[ -f ~/.profile ] && . ~/.profile
+
+[ -f ~/.Xresources ] && xrdb ~/.Xresources
+
+autosct -l &
+
+if command -v xwallpaper && [ -f ~/.config/wallpaper ]; then
+ xwallpaper --zoom ~/.config/wallpaper
+fi
+
+for i in .xsession.d/*; do
+ [ -e "$i" ] || continue
+ . "$i"
+done