mirror of
https://github.com/frebib/dotfiles.git
synced 2024-06-14 12:57:23 +00:00
parent
2f07de8047
commit
9add5a7c99
@ -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`
|
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:
|
To link all the configuration files, run the init-dotfiles script:
|
||||||
|
|
||||||
**Be warned that this will destroy your current configs without warning**
|
**Be warned that this will destroy your current configs without warning**
|
||||||
|
|
||||||
scripts/init-dotfiles.sh
|
scripts/init-dotfiles.sh
|
||||||
|
|
||||||
|
To install all of my packages & programs, check out my other repo <https://github.com/frebib/arch-install/> and the [`userinstall`](https://github.com/frebib/arch-install/blob/master/userinstall) script
|
||||||
|
@ -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
|
|
@ -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
|
|
Loading…
Reference in New Issue
Block a user