forked from extern/nix-config
meta: Update Arch Linux bootstrap process
Fixed some things which should make the entire process a bit more fluent.
This commit is contained in:
commit
ce8a2e54c7
@ -36,6 +36,18 @@ yarnconfig:
|
|||||||
@yarn config set -- --emoji true
|
@yarn config set -- --emoji true
|
||||||
@yarn config set prefix /usr/local
|
@yarn config set prefix /usr/local
|
||||||
|
|
||||||
|
.PHONY: rust
|
||||||
|
rust:
|
||||||
|
@rustup install stable
|
||||||
|
@rustup default stable
|
||||||
|
|
||||||
|
.PHONY: gnome
|
||||||
|
gnome:
|
||||||
|
@../gnome/.config/gnome/extensions.sh
|
||||||
|
@../gnome/.config/gnome/antialiasing.sh
|
||||||
|
@../gnome/.config/gnome/arc-dark-gtk-theme.sh
|
||||||
|
@../gnome/.config/gnome/breeze-cursor-theme.sh
|
||||||
|
|
||||||
.PHONY: clean
|
.PHONY: clean
|
||||||
clean:
|
clean:
|
||||||
@rm -fv PKGBUILDs/**/*.pkg.tar.xz
|
@rm -fv PKGBUILDs/**/*.pkg.tar.xz
|
||||||
|
@ -13,26 +13,31 @@ sudo -v
|
|||||||
# Source: https://gist.github.com/cowboy/3118588
|
# Source: https://gist.github.com/cowboy/3118588
|
||||||
while true; do sudo -n true; sleep 60; kill -0 "$$" || exit; done 2>/dev/null &
|
while true; do sudo -n true; sleep 60; kill -0 "$$" || exit; done 2>/dev/null &
|
||||||
|
|
||||||
# Install dependencies
|
# Refresh GPG keys before installing packages
|
||||||
sudo -n pacman -S stow
|
make refresh-keys
|
||||||
|
|
||||||
# Install PKGBUILDs
|
# Install PKGBUILDs
|
||||||
make package=tari-core
|
make package=tari-core
|
||||||
make package=bspwm-round-corners-git
|
|
||||||
make package=color-scripts
|
make package=color-scripts
|
||||||
make package=xeventbind
|
make package=xeventbind
|
||||||
|
|
||||||
# Install aur dependencies
|
# Install yay
|
||||||
make aur package=yay
|
make aur package=yay
|
||||||
make aur package=rtv
|
|
||||||
make aur package=polybar
|
# Install aur packages with yay
|
||||||
make aur package=shotgun
|
yay -S rtv
|
||||||
make aur package=ranger-git
|
yay -S polybar
|
||||||
|
yay -S shotgun
|
||||||
|
yay -S ranger-git
|
||||||
|
yay -S shantz-xwinwrap-bzr
|
||||||
|
|
||||||
# Additional settings
|
# Additional settings
|
||||||
make fontconfig
|
make fontconfig
|
||||||
make yarnconfig
|
make yarnconfig
|
||||||
|
|
||||||
|
# Enable the lightweight X11 display manager
|
||||||
|
systemctl enable --now lxdm.service
|
||||||
|
|
||||||
# Revoke privileges
|
# Revoke privileges
|
||||||
sudo -K
|
sudo -K
|
||||||
|
|
||||||
@ -42,5 +47,8 @@ make -C ..
|
|||||||
# Change the color scheme to a sane default
|
# Change the color scheme to a sane default
|
||||||
wal --theme base16-tomorrow-night
|
wal --theme base16-tomorrow-night
|
||||||
|
|
||||||
|
# Create the user's home directories
|
||||||
|
xdg-user-dirs-update
|
||||||
|
|
||||||
# Run vim for the first time (i.e. install plugins and exit)
|
# Run vim for the first time (i.e. install plugins and exit)
|
||||||
nvim
|
nvim
|
||||||
|
Loading…
Reference in New Issue
Block a user