vars.conf 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. #!/bin/sh
  2. ###
  3. # Shared variables
  4. ###
  5. MIRROR="https://cdn.openbsd.org/pub/OpenBSD"
  6. ARCH=amd64
  7. SIGNKEY=""
  8. VERSION="6.5"
  9. NAME="install${VERSION}${ARCH}"
  10. CWD=$(pwd)
  11. PKG_PATH="${MIRROR}/${VERSION}/packages/${ARCH}/"
  12. ###
  13. # Begin declaring the packages Hads is supposed to offer
  14. ###
  15. # Tools
  16. PKG_TOOLS="
  17. hotplug-diskmount
  18. nano
  19. ntfs_3g
  20. p7zip
  21. py-cryptography
  22. py-pip
  23. redshift
  24. "
  25. # Development assets
  26. PKG_DEV="
  27. emacs
  28. "
  29. # Network and internet tools
  30. PKG_NET="
  31. chromium
  32. curl
  33. tor
  34. wget
  35. "
  36. # Office suite
  37. PKG_OFFICE="
  38. libreoffice
  39. "
  40. # Media tools and players
  41. PKG_MEDIA="
  42. sox
  43. "
  44. PKG_GRAPHIC="
  45. "
  46. # Image editing
  47. PKG_GRAPHICEDIT="
  48. darktable
  49. gimp
  50. inkscape
  51. "
  52. # Fonts
  53. PKG_FONTS="
  54. liberation-fonts
  55. freefont-ttf
  56. noto-fonts
  57. noto-emoji
  58. roboto-fonts
  59. "
  60. PKG_PRINT="
  61. cups
  62. cups-filters-1.20.1
  63. cups-libs
  64. gutenprint
  65. foomatic-db
  66. system-config-printer
  67. gtk+2-cups
  68. gtk+3-cups
  69. hplip
  70. "
  71. # Desktop packages
  72. PKG_DESKTOP="
  73. slim
  74. slim-themes
  75. "
  76. PACKAGES="$(echo $PKG_DESKTOP $PKG_TOOLS $PKG_NET $PKG_MEDIA $PKG_GRAPHIC $PKG_DEV $PKG_OFFICE $PKG_FONTS $PKG_PRINT | tr ' ' '\n')"