diff --git a/path/wdvn-automake b/path/wdvn-automake new file mode 100755 index 0000000..f412777 --- /dev/null +++ b/path/wdvn-automake @@ -0,0 +1,14 @@ +#!/bin/bash +set -e +if [ -d "output" ]; then + rm -rf "output" +fi + +wdvn-make output base hardware hardware-proprietary graphical graphical-xfce4 live finish +wdvn-image-iso output "$(wdvn-name).iso" +rm -rf "output" + +source wdvn-env-amd64 +wdvn-make output base hardware hardware-proprietary graphical graphical-xfce4 live finish +wdvn-image-iso output "$(wdvn-name).iso" +rm -rf "output" \ No newline at end of file diff --git a/path/wdvn-name b/path/wdvn-name new file mode 100755 index 0000000..9d39693 --- /dev/null +++ b/path/wdvn-name @@ -0,0 +1,2 @@ +#!/bin/sh +echo "${WDVN_NAME}-${WDVN_ARCH}_${WDVN_VER}_${WDVN_DATE}" \ No newline at end of file diff --git a/shell b/shell index dab84a7..5151e83 100644 --- a/shell +++ b/shell @@ -8,4 +8,5 @@ export WDVN_KERNEL="linux-image-686" export WDVN_DATE="$(date --utc "+%Y.%m.%d-%H.%M.%S")" export WDVN_PID="$BASHPID" export PATH="$(dirname "$(realpath -s "$BASH_SOURCE")")/path:$PATH" -export PS1="\[\033[0;35m\]\$WDVN_NAME-\${WDVN_ARCH}_\${WDVN_VER}_\$WDVN_DATE\[\033[0m\]:\[\033[0;37m\]\$(basename -- \$PWD)\[\033[0m\]> " \ No newline at end of file +export WDVN_FULLNAME= +export PS1="\[\033[0;35m\]\$(wdvn-name)\[\033[0m\]:\[\033[0;37m\]\$(basename -- \$PWD)\[\033[0m\]> " \ No newline at end of file