mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2024-08-14 22:46:53 +00:00
12 lines
234 B
Bash
Executable file
12 lines
234 B
Bash
Executable file
#!/bin/bash
|
|
|
|
source distrohopper.conf
|
|
|
|
NEWDIR="$(yad --file --directory --title="Where to save VMs?")"
|
|
VMS_DIR="$NEWDIR"
|
|
|
|
echo "VMS_DIR=\"$VMS_DIR\"
|
|
export \"VMS_DIR\"" >> distrohopper.conf
|
|
|
|
export VMS_DIR
|
|
echo "New dir is: $VMS_DIR"
|