11 lines
472 B
Bash
Executable File
11 lines
472 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
# Enable xcompmgr
|
|
on_chroot << EOF
|
|
raspi-config nonint do_xcompmgr 0
|
|
EOF
|
|
|
|
# Pi-Apps (this is a bash script that installs pi-apps when the user runs it, then gets overwritten by the actual pi-apps)
|
|
install -m 755 files/pi-apps "${ROOTFS_DIR}/usr/bin/pi-apps"
|
|
install -m 755 files/pi-apps.desktop "${ROOTFS_DIR}/usr/share/applications/pi-apps.desktop"
|
|
install -m 644 files/pi-apps-logo.png "${ROOTFS_DIR}/usr/share/icons/hicolor/256x256/apps/pi-apps.png" |