Hyprland-dotfiles/eww/scripts/launch_app.sh

12 lines
388 B
Bash
Raw Normal View History

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