dotfiles/install.sh

24 lines
530 B
Bash
Executable File

#!/bin/sh
echo -e "Creating the symlinks with stow..."
stow -t $HOME alacritty \
mako \
nvim \
scripts \
sway \
swaylock \
waybar
sleep 1
echo -e "Making scripts executable..."
chmod +x scripts/.local/bin/clear-clipboard.sh
chmod +x sway/.config/sway/autostart.sh
chmod +x waybar/.config/waybar/ivpn-status.sh
chmod +x waybar/.config/waybar/ivpn-reconnect.sh
chmod +x waybar/.config/waybar/mediaplayer.py
sleep 1
echo -e "Done!"