23 lines
359 B
Bash
23 lines
359 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
echo -e "Creating the symlinks with stow..."
|
||
|
|
||
|
stow -t $HOME alacritty \
|
||
|
autostart \
|
||
|
mako \
|
||
|
nvim \
|
||
|
sway \
|
||
|
swaylock \
|
||
|
waybar
|
||
|
|
||
|
sleep 1
|
||
|
echo -e "Making scripts executable..."
|
||
|
|
||
|
chmod +x autostart/.scripts/autostart.sh
|
||
|
chmod +x waybar/.config/waybar/pvpn.sh
|
||
|
chmod +x waybar/.config/waybar/mediaplayer.py
|
||
|
|
||
|
sleep 1
|
||
|
echo -e "Done!"
|
||
|
|