Hyprland-dotfiles/eww/scripts/launch_app.sh

12 lines
388 B
Bash
Raw Normal View History

2024-04-20 11:57:31 -04:00
#!/bin/bash
if [[ "$1" == "--welcome" ]]; then
2024-05-07 15:02:31 -04:00
$HOME/dotfiles/apps/ML4W_Welcome-x86_64.AppImage &
2024-04-20 11:57:31 -04:00
elif [[ "$1" == "--dotfiles" ]]; then
2024-05-07 15:02:31 -04:00
$HOME/dotfiles/apps/ML4W_Dotfiles_Settings-x86_64.AppImage &
2024-04-20 11:57:31 -04:00
elif [[ "$1" == "--hyprland" ]]; then
2024-05-07 15:02:31 -04:00
$HOME/dotfiles/apps/ML4W_Hyprland_Settings-x86_64.AppImage &
2024-04-20 11:57:31 -04:00
else
echo "ERROR: $1 not found"
fi
2024-05-07 15:02:31 -04:00
$HOME/dotfiles/eww/ml4w-sidebar/launch.sh &