34 lines
1.1 KiB
Bash
34 lines
1.1 KiB
Bash
#!/bin/sh
|
|
|
|
SDE_URL="https://git.brz9.dev/ed/sde.git"
|
|
DOT_URL="https://git.brz9.dev/ed/dot.git"
|
|
WGT_URL="https://git.brz9.dev/ed/waterfox.git"
|
|
|
|
SRCPATH=/usr/local/src
|
|
|
|
git clone $SDE_URL $SRCPATH/sde
|
|
git clone $WGT_URL $SRCPATH/waterfox
|
|
git clone $DOT_URL $SRCPATH/dot
|
|
|
|
#dependencies
|
|
xbps-install -Sy libX11-devel libXft-devel libXinerama-devel imlib2-devel libexif-devel giflib-devel libXt-devel libXfixes-devel libXi-devel go ncurses-devel nfs-utils acpi font-awesome dejavu-fonts-ttf
|
|
|
|
#hp print and scan
|
|
#xbps-install -Sy sane hplip
|
|
|
|
#fonts
|
|
#xbps-install -Sy freefont-ttf font-fira-ttf font-firacode font-go-ttf font-hack-ttf font-ibm-plex-ttf font-ionicons-ttf font-iosevka font-libertine-ttf font-mplus-ttf
|
|
|
|
#waterfox deps
|
|
xbps-install -Sy gtk+3-devel dbus-glib-devel adwaita-icon-theme
|
|
|
|
xbps-install -Sy fzf mpv cmus cmus-flac mupdf ffmpeg scrot picom dunst trash-cli unar xwallpaper gnupg2 ghostscript htop
|
|
|
|
make install -C $SRCPATH/sde/
|
|
make install -C $SRCPATH/waterfox/
|
|
make install -C $SRCPATH/dot
|
|
|
|
#font-fix
|
|
ln -s /usr/share/fontconfig/conf.avail/70-no-bitmaps.conf /etc/fonts/conf.d/
|
|
|