package_lists.sh 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. #!/bin/bash
  2. # This file is part of PrawnOS (http://www.prawnos.com)
  3. # Copyright (c) 2018 Hal Emmerich <hal@halemmerich.com>
  4. # PrawnOS is free software: you can redistribute it and/or modify
  5. # it under the terms of the GNU General Public License version 2
  6. # as published by the Free Software Foundation.
  7. # PrawnOS is distributed in the hope that it will be useful,
  8. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. # GNU General Public License for more details.
  11. # You should have received a copy of the GNU General Public License
  12. # along with PrawnOS. If not, see <https://www.gnu.org/licenses/>.
  13. # ======================================== Package Lists =========================================
  14. # ================================ KEEP THESE LISTS ALPHABETIZED! ================================
  15. base_debs_install=(
  16. alsa-utils
  17. apt-utils
  18. bash-completion
  19. busybox-static
  20. bzip2
  21. ca-certificates
  22. cgpt
  23. cryptsetup
  24. e2fsprogs-l10n
  25. gdisk
  26. git
  27. ifupdown
  28. inetutils-ping
  29. iproute2
  30. isc-dhcp-client
  31. iw
  32. kmod
  33. kpartx
  34. laptop-detect
  35. less
  36. libatm1
  37. libgpg-error-l10n
  38. libnss-systemd
  39. libpam-cap nftables
  40. nano
  41. net-tools
  42. netcat-openbsd
  43. parted
  44. psmisc
  45. rsync
  46. traceroute
  47. udev
  48. uuid-runtime
  49. vim
  50. wpasupplicant
  51. xz-utils
  52. )
  53. base_debs_download=(
  54. acpi-support
  55. alsa-utils
  56. anacron
  57. avahi-daemon
  58. bluetooth
  59. chromium
  60. crda
  61. dbus-user-session
  62. dpkg
  63. dtrx
  64. eject
  65. emacs
  66. firefox-esr
  67. iw
  68. libnss-mdns
  69. librsvg2-common
  70. libutempter0
  71. lightdm
  72. mousepad
  73. sudo
  74. sysfsutils
  75. tasksel
  76. vlc
  77. xdg-utils
  78. xorg
  79. xorg
  80. xserver-xorg-input-libinput
  81. )
  82. mesa_debs_download=(
  83. libegl-mesa0
  84. libegl1-mesa
  85. libgl1-mesa-dri
  86. libglapi-mesa
  87. libglu1-mesa
  88. libglx-mesa0
  89. )
  90. xfce_debs_download=(
  91. accountsservice
  92. dbus-user-session
  93. dconf-cli
  94. dconf-editor
  95. network-manager-gnome
  96. network-manager-openvpn
  97. network-manager-openvpn-gnome
  98. numix-gtk-theme
  99. papirus-icon-theme
  100. plank
  101. system-config-printer
  102. tango-icon-theme
  103. xfce4
  104. xfce4-goodies
  105. xfce4-power-manager
  106. xfce4-terminal
  107. )
  108. lxqt_debs_download=(
  109. lightdm
  110. lxqt
  111. network-manager-gnome
  112. network-manager-openvpn
  113. network-manager-openvpn-gnome
  114. pavucontrol-qt
  115. )
  116. gnome_debs_download=(
  117. dbus-user-session
  118. dconf-cli
  119. dconf-editor
  120. eog
  121. epiphany-browser
  122. evince
  123. file-roller
  124. fonts-cantarell
  125. gdm3
  126. gedit
  127. gir1.2-peas-1.0
  128. gnome-clocks
  129. gnome-disk-utility
  130. gnome-logs
  131. gnome-session
  132. gnome-shell-extensions
  133. gnome-software
  134. gnome-software-plugin-flatpak
  135. gnome-system-monitor
  136. gnome-terminal
  137. gnome-tweaks
  138. libgtk3-perl
  139. libpeas-1.0-0
  140. lightdm
  141. lxqt
  142. materia-gtk-theme
  143. nautilus
  144. nautilus-admin
  145. network-manager-gnome
  146. network-manager-gnome
  147. network-manager-openvpn
  148. network-manager-openvpn
  149. network-manager-openvpn-gnome
  150. network-manager-openvpn-gnome
  151. pavucontrol-qt
  152. seahorse
  153. )
  154. # ====================================== END Package Lists =======================================