aboutsummaryrefslogtreecommitdiff
path: root/scripts/LINARO/23-customize-lxqt.chroot
blob: 0a5d5571e668430c33f8e7b8fd80190c92dcf0d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
set -e

# Customize lxqt defaults
if [ -e $target/etc/xdg/lxqt/lxqt.conf ]; then
  sed -i "s|^theme=.*|theme=kde-plasma|" $target/etc/xdg/lxqt/lxqt.conf
  sed -i "s|^icon_theme=.*|icon_theme=breeze|" $target/etc/xdg/lxqt/lxqt.conf
  sed -i "s|^style=.*|style=Breeze|" $target/etc/xdg/lxqt/lxqt.conf
  sed -i "s|^window_manager=.*|window_manager=kwin|" $target/etc/xdg/lxqt/session.conf
  sed -i "s|^cursor_theme=.*|cursor_theme=breeze_cursors|" $target/etc/xdg/lxqt/session.conf
  sed -i "s|^Wallpaper=.*|Wallpaper=/usr/share/96boards/wallpapers/96boards-default-wallpaper.jpg|" $target/etc/xdg/pcmanfm-qt/lxqt/settings.conf
fi