1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- #!/bin/sh
- ###
- # Shared variables
- ###
- MIRROR="https://cdn.openbsd.org/pub/OpenBSD"
- ARCH=amd64
- SIGNKEY=""
- VERSION="6.5"
- NAME="install${VERSION}${ARCH}"
- CWD=$(pwd)
- PKG_PATH="${MIRROR}/${VERSION}/packages/${ARCH}/"
- ###
- # Begin declaring the packages Hads is supposed to offer
- ###
- # Tools
- PKG_TOOLS="
- hotplug-diskmount
- nano
- ntfs_3g
- p7zip
- py-cryptography
- py-pip
- redshift
- "
- # Development assets
- PKG_DEV="
- emacs
- "
- # Network and internet tools
- PKG_NET="
- chromium
- curl
- tor
- wget
- "
- # Office suite
- PKG_OFFICE="
- libreoffice
- "
- # Media tools and players
- PKG_MEDIA="
- sox
- "
- PKG_GRAPHIC="
- "
- # Image editing
- PKG_GRAPHICEDIT="
- darktable
- gimp
- inkscape
- "
- # Fonts
- PKG_FONTS="
- liberation-fonts
- freefont-ttf
- noto-fonts
- noto-emoji
- roboto-fonts
- "
- PKG_PRINT="
- cups
- cups-filters-1.20.1
- cups-libs
- gutenprint
- foomatic-db
- system-config-printer
- gtk+2-cups
- gtk+3-cups
- hplip
- "
- # Desktop packages
- PKG_DESKTOP="
- slim
- slim-themes
- "
- PACKAGES="$(echo $PKG_DESKTOP $PKG_TOOLS $PKG_NET $PKG_MEDIA $PKG_GRAPHIC $PKG_DEV $PKG_OFFICE $PKG_FONTS $PKG_PRINT | tr ' ' '\n')"
|