diff --git a/config/1stRun.desktop b/config/1stRun.desktop new file mode 100644 index 0000000..33964c2 --- /dev/null +++ b/config/1stRun.desktop @@ -0,0 +1,6 @@ +[Desktop Entry] +Type=Application +Name=Renew VMs +Exec=sakura -h renew.sh +Icon=/home/zen/.config/distrohopper/vms_icons/tux.svg +Categories=System;Virtualization;Settings; diff --git a/config/1stRun.sh b/config/1stRun.sh new file mode 100755 index 0000000..434be36 --- /dev/null +++ b/config/1stRun.sh @@ -0,0 +1,28 @@ +#!/bin/bash +source distrohopper.conf + +# distrohopper first run +CONFIG_DIR="$HOME/.config/distrohopper" + +# create default dirs +rm -r "$CONFIG_DIR" +mkdir -p "$CONFIG_DIR" "$CONFIG_DIR/vms_ready" "$CONFIG_DIR/vms_supported" "$CONFIG_DIR/vms_icons" + +# copy icons +#cp -r vms_icons "$CONFIG_DIR/" +# copy everything to config dir +cp -r * "$CONFIG_DIR/" + +# install prerequisities (Void linux) + + + +# Install distrohopper to all users +sudo cp ../dh ../quickgui ../quicktui ../quickget ../quickemu /usr/bin/ + +# Renew VMs +"$CONFIG_DIR/renew.sh" +# Set VMs dir +"$CONFIG_DIR/set_dir.sh" + +echo "Done"