* Include extras/* in ISO * build-wk modifies build.sh before it is called * NetworkManager is back * Switched to Numix-Square icons * Added remount-rw script * Accessible in Thunar as custom action * Readded mesa-demos to fix inxi message * Removed xorg-video-ati (conflicts with AMDGPU) * Swapping nvidia in for nouveau (attempt to fix X for newer macs) * Added mbpfan-git * Added Mac fans script (set all fans to auto/max) * Fixed issue where udevil would use /media/$USER/Name for the first call
17 lines
390 B
Bash
17 lines
390 B
Bash
#!/bin/bash
|
|
#
|
|
# Symlink all packages from ~/.cache/pacaur and rebuild repo database
|
|
|
|
pushd i686
|
|
rm *pkg.tar.xz
|
|
cp -ans $HOME/.cache/pacaur/*/*pkg.tar.xz ./
|
|
rm *x86_64*
|
|
for p in *pkg.tar.xz; do repo-add customrepo.db.tar.gz $p; done
|
|
popd
|
|
|
|
pushd x86_64
|
|
rm *pkg.tar.xz
|
|
cp -ans $HOME/.cache/pacaur/*/*pkg.tar.xz ./
|
|
rm *i686*
|
|
for p in *pkg.tar.xz; do repo-add customrepo.db.tar.gz $p; done
|
|
popd
|