We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1a69f8c + e25ba1c commit 7fe4b8cCopy full SHA for 7fe4b8c
scriptmodules/supplementary/raspbiantools.sh
@@ -34,8 +34,14 @@ function lxde_raspbiantools() {
34
aptInstall lxplug-volume
35
fi
36
37
+ # Firefox is supported starting with Bookworm, install it along with Chromium
38
+ [[ "$__os_debian_ver" -ge 12 ]] && aptInstall --no-install-recommends firefox rpi-firefox-mods
39
+
40
setConfigRoot "ports"
41
addPort "lxde" "lxde" "Desktop" "XINIT:startx"
42
+ if (isPlatform "rpi4" || isPlatform "rpi5") && [[ "$__os_debian_ver" -ge 12 ]]; then
43
+ addPort "wayfire" "wayfire" "Desktop (Wayland)" "wayfire-pi"
44
+ fi
45
enable_autostart
46
}
47
0 commit comments