fix: dwm script name + rootfs

This commit is contained in:
AngeD 2023-11-09 15:39:30 +01:00
parent 9b5997ed4f
commit 62f2d170b0
6 changed files with 2 additions and 18 deletions

4
config
View File

@ -1,8 +1,6 @@
# User Variables
# Comment to disable
set -a
swapfile=auto # auto|MB
username=ange
@ -50,6 +48,4 @@ laptop_pkg=(
tlp
)
set +a
# vim: ft=sh

View File

@ -1,8 +1,6 @@
# User Variables
# Comment to disable
set -a
pkg=(
alacritty
dunst
@ -31,6 +29,4 @@ flatpakpkg=(
org.mozilla.firefox
)
set +a
# vim: ft=sh

View File

@ -1,8 +1,6 @@
# User Variables
# Comment to disable
set -a
pkg=(
autorandr
i3lock xss-lock
@ -10,6 +8,4 @@ pkg=(
xorg-{server,xinit,xrandr,xsetroot} xclip
)
set +a
# vim: ft=sh

View File

@ -1,4 +1,6 @@
#!/bin/bash -e
cd "$(dirname "$0")"
cp -rfT rootfs/ /mnt/
cat config ../../src/lib.sh src/install.sh | arch-chroot /mnt/ bash -ex

View File

@ -14,8 +14,6 @@ case "$(lspci -k | grep -A3 -E '(VGA|3D)')" in
esac
pac "${pkg[@]}"
cp -rfT rootfs /
git clone https://git.maby.dev/ange/suckless.git /tmp/suckless/
cd /tmp/suckless
./update.sh

View File

@ -1,7 +1,5 @@
#!/bin/bash
set -a
if [ -t 1 ]; then
NORMAL='\e[0m'
BOLD='\e[1m'
@ -11,5 +9,3 @@ fi
function pac() {
yes | pacman --needed -Syu "$@"
}
set +a