From 9da004504fb2e9b520fcf23de05bb134e5c11995 Mon Sep 17 00:00:00 2001 From: samedamci Date: Sat, 19 Oct 2019 15:50:41 +0200 Subject: [PATCH] Remove installer --- installer.py | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100755 installer.py diff --git a/installer.py b/installer.py deleted file mode 100755 index c89ece7..0000000 --- a/installer.py +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/python3 - -import os - -os.system('yay -Sy --noconfirm python-pip git polybar ttf-dejavu-ib wget curl neovim qutebrowser') -os.system('sh -c "$(wget -O- https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"') -os.system('git clone https://github.com/zsh-users/zsh-syntax-highlighting.git $HOME/.oh-my-zsh/plugins') -os.system('cp .zshrc $HOME && cp -r .config $HOME') -os.system('curl -fLo ~/.local/share/nvim/site/autoload/plug.vim --create-dirs \ - https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim') -os.system('pip3 install --user neovim') -os.system('nvim --headless -c PlugInstall -c q -c q') -os.system('git clone https://github.com/samedamci/st-fork.git $HOME/.st') -os.system('cd $HOME/.st && make && sudo make clean install && rm -rf $HOME/.st && clear') - -print("Done.")