37 lines
910 B
Python
37 lines
910 B
Python
"""
|
|
* SPDX-FileCopyrightText: 2023-2025 PeppermintOS Team
|
|
* (peppermintosteam@proton.me)
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*
|
|
* These lists are used to install packages not in any common category
|
|
"""
|
|
ARTWORK_LIST = [
|
|
'pepermint-wallpapers'
|
|
]
|
|
|
|
|
|
PYTHON_LIST = ['python3-pip\n'
|
|
'python3-tk\n'
|
|
'python3-pil.imagetk\n'
|
|
]
|
|
|
|
|
|
CALAMARES_LIST = ['calamares\n'
|
|
'calamares-settings-debian'
|
|
]
|
|
|
|
|
|
GENERAL_LIST = ['dconf-editor\n'
|
|
'gnome-disk-utility\n'
|
|
'menulibre\n'
|
|
'synaptic\n'
|
|
'system-config-printer\n'
|
|
'gnome-system-tools\n'
|
|
'simple-scan\n'
|
|
'mugshot\n'
|
|
'spice-vdagent'
|
|
]
|
|
|
|
# Packages for ONLY 32bit builds for the flagship
|
|
FLAG_SPECIFIC_LIST_32=['luakit\n']
|