diff --git a/flavours/mate.flavour/install.sh b/flavours/mate.flavour/install.sh new file mode 100755 index 0000000..398774b --- /dev/null +++ b/flavours/mate.flavour/install.sh @@ -0,0 +1,16 @@ +#!/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 \ No newline at end of file