pentest-distro-builder/modules/live-build-config/kali-config/variant-e17/hooks/live/tweak-enlightenment-config.chroot
Kaj Forney 6a02a17902 Initial commit.
Former-commit-id: e62f136f3677cb73bfa2d22f9ff10e8c0745bcc3
2018-09-05 17:06:30 -06:00

11 lines
614 B
Bash
Executable file

#!/bin/sh
# Inject default background in e17 configuration (for all known profiles)
for profile in mobile standard; do
dpkg-divert --local --add /usr/share/enlightenment/data/config/$profile/e.cfg
eet -d /usr/share/enlightenment/data/config/$profile/e.cfg config /tmp/e.src
awk '/value "desktop_default_name"/ {print " value \"desktop_default_background\" string: \"/usr/share/enlightenment/data/backgrounds/kali-wallpaper_1920x1200.edj\";"}; {print}' /tmp/e.src >/tmp/e2.src
eet -e /usr/share/enlightenment/data/config/$profile/e.cfg config /tmp/e2.src 1
rm -f /tmp/e.src /tmp/e2.src
done