Updating for alpine 3.17 - bootstrap - Bootstrap script for my alpine linux desktop.
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
---
(DIR) commit dbd4be23b215ee6ada85b3e1f5b1e330966e5ba0
(DIR) parent af93178a4afe84496bd0168c9f0ee9a2610dfdb1
(HTM) Author: Jay Scott <me@jay.scot>
Date: Sun, 1 Jan 2023 14:47:40 +0000
Updating for alpine 3.17
Diffstat:
M install.sh | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
---
(DIR) diff --git a/install.sh b/install.sh
@@ -3,6 +3,7 @@
user="jay"
src="/home/$user/src"
+dots="https://git.sr.ht/~jayscott/dotfiles"
echo "── enable community repo"
sed -i '/v3\..*\/community/s/^#//g' /etc/apk/repositories
@@ -13,13 +14,13 @@ apk upgrade -a
echo "── installing cli essentials"
apk add alpine-sdk curl doas wget git vim tar zip gzip p7zip bzip2 rsync \
- build-base less
+ build-base less tmux
echo "── installing wayland"
apk add wlsunset wl-clipboard mesa-dri-gallium eudev font-hack seatd \
sway foot bemenu xwayland
-setup-udev
+setup-devd udev
echo "── installing tools"
apk add urlview shfmt shellcheck openssh gemget yt-dlp pass fzf mpv \
@@ -47,6 +48,8 @@ if [ ! -d "/home/$user" ]; then
adduser "$user" rtkit
mkdir "/home/$user/.config"
mkdir "$src"
+ git clone "$dots" src/dotfiles
+ cd src/dotfiles && sh bootstrap.sh link
fi
if [ ! -e /home/$user/bin/fdm ]; then