Skip to content

Commit e25ba1c

Browse files
committed
raspbiantools: bookworm updates
Some changes prompted by the new RaspiOS Bookworm features: - added Firefox as a browser, since it's supported now - mimic the RaspiOS defaults and on Pi4/5 platforms add an additional entry for starting the Wayland based desktop, using the `wayfire` compositor.
1 parent a1f0dbd commit e25ba1c

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

scriptmodules/supplementary/raspbiantools.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,14 @@ function lxde_raspbiantools() {
3434
aptInstall lxplug-volume
3535
fi
3636

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+
3740
setConfigRoot "ports"
3841
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
3945
enable_autostart
4046
}
4147

0 commit comments

Comments
 (0)