mirror of
https://github.com/Phantop/dotfiles
synced 2024-11-05 22:45:29 +00:00
22 lines
256 B
Bash
Executable file
22 lines
256 B
Bash
Executable file
#!/bin/bash
|
|
sudo eopkg it -c system.devel
|
|
sudo eopkg it fish mpv-devel neovim qutebrowser stow
|
|
|
|
cd ~/.dotfiles
|
|
for i in `fd -t d -H`
|
|
do
|
|
mkdir -p ~/$i
|
|
done
|
|
|
|
stow .
|
|
|
|
cd .config/mpv/scripts
|
|
for i in */
|
|
do
|
|
cd $i
|
|
make
|
|
cd ..
|
|
done
|
|
|
|
fish -c fisher
|