mirror of
https://github.com/Phantop/dotfiles
synced 2024-11-05 22:45:29 +00:00
24 lines
649 B
Bash
Executable file
24 lines
649 B
Bash
Executable file
#!/bin/bash
|
|
sudo eopkg it -c system.devel
|
|
sudo eopkg rm gnome-terminal libreoffice-common mate-terminal nautilus
|
|
|
|
desktop="keepassx kitty mpv qutebrowser rofi zathura"
|
|
terminal="aria2 autojump busybox fd fish git-extras jq most ncdu neovim solbuild-config-local-unstable stow"
|
|
sudo eopkg it $desktop $terminal
|
|
|
|
rm ~/.bashrc
|
|
cd ~/.dotfiles
|
|
for i in `fd -t d -H`
|
|
do
|
|
mkdir -p ~/$i
|
|
done
|
|
git submodule update --init
|
|
stow .
|
|
|
|
cd ~/.config/mpv/shaders
|
|
curl -fsSL $(curl -fsSL https://api.github.com/repos/bloc97/Anime4K/releases/latest | jq .assets[].browser_download_url | sed 's/"//g') | busybox unzip -
|
|
|
|
nvim +PlugUpdate +q +q
|
|
|
|
chsh -s /usr/bin/fish
|