#!/bin/sh echo "~> Installing i3" pacstrap /mnt i3 feh xcompmgr dmenu acpi user=$(ls /mnt/home) if [ "$user" == "" ]; then path="/mnt/etc/skel/" else path="/mnt/home/$user/" fi echo "~> Creating .xinitrc" echo "xcompmgr -c &" > $path/.xinitrc echo "feh --bg-fill /etc/wallpaper/\$\(ls /etc/wallpaper/ | shuf -n 1\)" >> $path/.xinitrc echo "exec i3" >> $path/.xinitrc amf_return=0