steamdeck_startup_animations/install.sh

21 lines
676 B
Bash
Raw Normal View History

2022-08-01 19:02:25 +02:00
#!/usr/bin/env bash
# Create required directories
mkdir -p "$HOME/homebrew"
mkdir -p "$HOME/.config/systemd/user"
# Clone the startup animations repository
if [[ ! -d "$HOME/homebrew/startup_animations" ]]; then
git clone https://github.com/kageurufu/steamdeck_startup_animations "$HOME/homebrew/startup_animations"
cd "$HOME/homebrew/startup_animations"
else
cd "$HOME/homebrew/startup_animations"
git pull
2022-08-01 19:02:25 +02:00
fi
# Install the service file
ln -sf "$HOME/homebrew/startup_animations/randomize_deck_startup.service" "$HOME/.config/systemd/user/randomize_deck_startup.service"
systemctl --user daemon-reload
systemctl --user enable --now randomize_deck_startup.service