-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdebian-12-desktop.toml
55 lines (51 loc) · 2.65 KB
/
debian-12-desktop.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
include = [
"xserver-xorg-core", "xserver-xorg-input-libinput",
"xfce4-session", "xfwm4", "xfdesktop4", "xfce4-panel", "thunar", "galculator",
"xdm",
# https://wiki.debian.org/PipeWire#Debian_12
# FIXME: do we need/want vlc-plugin-pipewire?
"pipewire-audio", "xfce4-pulseaudio-plugin", "pavucontrol",
"xfce4-xkb-plugin", # basic foreign language input (e.g. Russian, but not Japanese)
"xdg-user-dirs-gtk", # Thunar sidebar gets Documents, Music &c
"gvfs", "thunar-volman", "eject", # Thunar trash://, DVD autoplay, DVD eject
"xfce4-notifyd", # xfce4-panel notification popups
"xfce4-places-plugin",
"eog", # chromium cant flip between 1000 photos quickly
"usermode", # password reset tool
"librsvg2-common", # SVG icons in GTK3 apps
"gnome-themes-extra", "adwaita-qt", # theming
# FIXME: Right now, vlc is always installed and is Qt5. --twb, July 2024
# When vlc is Qt6, or we add some other Qt6 apps,
# install "adwaita-qt6" here, and audit the Qt6 libraries properly.
"at-spi2-core", "gnome-accessibility-themes",
"plymouth-themes",
# Accelerated graphics drivers for several libraries & GPU families
"vdpau-driver-all", # VA/AMD, free
"mesa-vulkan-drivers", # Intel/AMD/Nvidia, free
"va-driver-all", # Intel/AMD/Nvidia, free
"i965-va-driver-shaders", # Intel, non-free, 2013-2017
"intel-media-va-driver-non-free", # Intel, non-free, 2017+
# Seen on H81 and H110 Pioneer AIOs.
# Not NEEDED, just makes journalctl -p4' quieter.
# FIXME: firmware-realtek includes bt/wifi firmware.
# We should remove that in delete-bad-files...
"firmware-realtek", "firmware-misc-nonfree",
"firmware-intel-graphics",
"firmware-intel-misc",
# <twb> Anyone have an opinion about whether
# I should proactively install non-free intel sound card firmware?
# (firmware-intel-sound, ~5MB)
# In theory it only ever applies to SoC boards, but
# AMC managed to buy some of those.
# <mike> I've no objection to doing so with PrisonPC SOEs.
"firmware-intel-sound",
"firmware-sof-signed",
# At update-initramfs time:
# W: Possible missing firmware /lib/firmware/i915/kbl_dmc_ver1_04.bin for module i915
# At boot time:
# kernel: [ 2.325252] i915 0000:00:02.0: firmware: failed to load i915/kbl_dmc_ver1_04.bin (-2)
# <twb> I'm thinking about "fixing" this.
# <twb> include firmware-misc-nonfree, and then dpkg path-exclude=/lib/firmware/badthings.
"firmware-linux-free",
"firmware-misc-nonfree",
]