2024-01-24 03:15:20 -05:00
|
|
|
#!/bin/bash
|
|
|
|
if [ ! -f $HOME/.cache/ml4w-welcome-autostart ] ;then
|
2024-05-23 09:47:31 -04:00
|
|
|
echo ":: Autostart of ML4W Welcome App enabled."
|
2024-01-24 03:15:20 -05:00
|
|
|
if [ -f $HOME/dotfiles/apps/ML4W_Welcome-x86_64.AppImage ] ;then
|
2024-05-23 09:47:31 -04:00
|
|
|
echo ":: Starting ML4W Welcome App ..."
|
2024-01-24 03:15:20 -05:00
|
|
|
sleep 2
|
|
|
|
$HOME/dotfiles/apps/ML4W_Welcome-x86_64.AppImage
|
|
|
|
else
|
2024-05-23 09:47:31 -04:00
|
|
|
echo ":: ML4W Welcome App not found."
|
2024-01-24 03:15:20 -05:00
|
|
|
fi
|
|
|
|
|
|
|
|
else
|
2024-05-23 09:47:31 -04:00
|
|
|
echo ":: Autostart of ML4W Welcome App disabled."
|
2024-01-24 03:15:20 -05:00
|
|
|
fi
|