diff --git a/apps/ML4W_Welcome-x86_64.AppImage b/apps/ML4W_Welcome-x86_64.AppImage index 845b2ef..fed6f31 100755 Binary files a/apps/ML4W_Welcome-x86_64.AppImage and b/apps/ML4W_Welcome-x86_64.AppImage differ diff --git a/hypr/conf/autostart.conf b/hypr/conf/autostart.conf index 1f3facb..b780a61 100644 --- a/hypr/conf/autostart.conf +++ b/hypr/conf/autostart.conf @@ -30,3 +30,6 @@ exec-once = swww query || swww init # Load last wallpaper and waybar with pywal colors exec-once = ~/dotfiles/hypr/scripts/wallpaper.sh init + +# Start ML4W Welcome App +exec-once = ~/dotfiles/hypr/scripts/ml4w-welcome-autostart.sh diff --git a/hypr/scripts/ml4w-welcome-autostart.sh b/hypr/scripts/ml4w-welcome-autostart.sh new file mode 100755 index 0000000..c607c70 --- /dev/null +++ b/hypr/scripts/ml4w-welcome-autostart.sh @@ -0,0 +1,14 @@ +#!/bin/bash +if [ ! -f $HOME/.cache/ml4w-welcome-autostart ] ;then + echo "Autostart of ML4W Welcome App enabled." + if [ -f $HOME/dotfiles/apps/ML4W_Welcome-x86_64.AppImage ] ;then + echo "Starting ML4W Welcome App ..." + sleep 2 + $HOME/dotfiles/apps/ML4W_Welcome-x86_64.AppImage + else + echo "ML4W Welcome App not found." + fi + +else + echo "Autostart of ML4W Welcome App disabled." +fi \ No newline at end of file