move configure higher

This commit is contained in:
Tobias Powalowski 2022-05-23 10:17:14 +02:00
parent 7e307e3c65
commit 7b504de831

View file

@ -11,12 +11,6 @@ _install_xfce() {
fi
}
_start_xfce() {
echo -e "Launching XFCE now, logging is done on \033[1m/dev/tty8\033[0m ..."
startxfce4 >/dev/tty8 2>&1
echo -e "To relaunch XFCE desktop use: \033[92mstartxfce4\033[0m"
}
_configure_xfce() {
echo "Configuring xfce panel ..."
cat << EOF >/etc/xdg/xfce4/panel/default.xml
@ -252,3 +246,9 @@ Categories=X-Xfce-Toplevel;
EOF
cp /etc/xdg/autostart/archboot.desktop /usr/share/applications/
}
_start_xfce() {
echo -e "Launching XFCE now, logging is done on \033[1m/dev/tty8\033[0m ..."
startxfce4 >/dev/tty8 2>&1
echo -e "To relaunch XFCE desktop use: \033[92mstartxfce4\033[0m"
}