From 9add5a7c99c5e40272f1472b0354faa43ba0354f Mon Sep 17 00:00:00 2001 From: Joseph Groocock Date: Wed, 6 Jul 2016 09:00:19 +0100 Subject: [PATCH] Update readme and links to scripts Fixes #1 --- README.md | 6 ++---- scripts/configsetup | 18 ------------------ scripts/install-pacaur | 25 ------------------------- 3 files changed, 2 insertions(+), 47 deletions(-) delete mode 100755 scripts/configsetup delete mode 100755 scripts/install-pacaur diff --git a/README.md b/README.md index 512792b..2c6dac9 100644 --- a/README.md +++ b/README.md @@ -8,12 +8,10 @@ To quickly get started, clone this repo and run the setup scripts. You can put the `dotfiles` directory anywhere, just be sure to update the `$DOTFILES` envvar in `.profile` -To install all of my packages & programs, run the setup script: - - scripts/setup.sh - To link all the configuration files, run the init-dotfiles script: **Be warned that this will destroy your current configs without warning** scripts/init-dotfiles.sh + +To install all of my packages & programs, check out my other repo and the [`userinstall`](https://github.com/frebib/arch-install/blob/master/userinstall) script diff --git a/scripts/configsetup b/scripts/configsetup deleted file mode 100755 index ef10026..0000000 --- a/scripts/configsetup +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/sh - -./install-pacaur.sh - -pacaur -S ../packages - -# Update AUR completions for zsh -aurtab - -xdg-user-dirs-update - -curl https://d13yacurqjgara.cloudfront.net/users/13449/screenshots/1816328/attachments/332811/Lakeside_Sunrise_3840x2160.jpg > ~/pictures/lakesidesunrise.jpg - -sudo ln -s /usr/bin/vim /usr/bin/vi - -systemctl enable lightdm.service -systemctl enable bluetooth.service --now -systemctl enable NetworkManager.service --now diff --git a/scripts/install-pacaur b/scripts/install-pacaur deleted file mode 100755 index 438922e..0000000 --- a/scripts/install-pacaur +++ /dev/null @@ -1,25 +0,0 @@ -if [[ $EUID -eq 0 ]]; then - echo "You cannot run makepkg as root." - echo "Please run this script again as a non-elevated user" - exit 1 -fi - -# Install dependencies -sudo pacman -S --asdeps git curl yajl gnupg - -mkdir cower && cd cower - -# Get PGP keys so it builds -gpg --recv-keys --keyserver hkp://pgp.mit.edu 1EB2638FF56C0C53 - -# Fetch, build and install cower -curl https://aur.archlinux.org/cgit/aur.git/plain/PKGBUILD?h=cower > PKGBUILD -makepkg -sri - -# Fetch, build and install pacaur -cd .. && mkdir pacaur && cd pacaur -curl https://aur.archlinux.org/cgit/aur.git/plain/PKGBUILD?h=pacaur > PKGBUILD -makepkg -sri - -cd .. -rm -rf cower pacaur