16 lines
256 B
Bash
Executable File
16 lines
256 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "~> Installing mate"
|
|
pacstrap /mnt mate mate-extra
|
|
|
|
user=$(ls /mnt/home)
|
|
if [ "$user" == "" ]; then
|
|
path="/mnt/etc/skel/"
|
|
else
|
|
path="/mnt/home/$user/"
|
|
fi
|
|
|
|
echo "~> Creating .xinitrc"
|
|
echo "exec mate-session" > $path/.xinitrc
|
|
|
|
amf_return=0 |