mirror of
https://github.com/Phantop/dotfiles
synced 2024-11-14 02:42:46 +00:00
30 lines
1.3 KiB
Bash
Executable file
30 lines
1.3 KiB
Bash
Executable file
#!/bin/bash
|
|
sudo eopkg up
|
|
sudo eopkg it -c system.devel
|
|
sudo eopkg rm celluloid gnome-mpv gnome-terminal hexchat libreoffice-common mate-terminal nautilus onboard rhythmbox
|
|
|
|
desktop="audacity bleachbit caja engrampa feh gmic-gimp goverlay keepassx kitty libstrangle mpv quodlibet qutebrowser rofi spek viewnior zathura-poppler"
|
|
terminal="advancecomp aria2 autojump busybox fd fish git-extras innoextract jq libva-utils most ncdu neovim p7zip pip ripgrep solbuild-config-local-unstable speedtest-cli stow tmux"
|
|
sudo eopkg it $desktop $terminal
|
|
sudo pip3 install --upgrade qutebrowser breadability
|
|
|
|
rm ~/.bashrc
|
|
cd ~/.dotfiles
|
|
for i in `fd -E .git -t d -H`; do
|
|
mkdir -p ~/$i
|
|
done
|
|
stow .
|
|
|
|
mkdir -p ~/.config/mpv/shaders; 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 -
|
|
|
|
curl -fLo ~/.config/nvim/autoload/plug.vim --create-dirs https://github.com/junegunn/vim-plug/raw/master/plug.vim
|
|
nvim +PlugUpdate +q +q
|
|
|
|
curl -fsSL https://starship.rs/install.sh | sudo bash -s -- -b /usr/bin -y
|
|
|
|
chsh -s /usr/bin/fish
|
|
|
|
systemctl --user mask tracker-store.service tracker-miner-fs.service tracker-miner-rss.service tracker-extract.service tracker-miner-apps.service tracker-writeback.service
|
|
tracker reset --hard
|