add prawn to lockscreen, app menu

This commit is contained in:
Hal Emmerich 2019-05-22 17:50:16 -05:00
parent b4dacfdeb0
commit 7d453ffe00
5 changed files with 8 additions and 3 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -1,6 +1,7 @@
[greeter]
background = /usr/share/images/desktop-base/default
theme-name = Numix
default-user-image = /etc/lightdm/icon.png
-xft-hintstyle =
icon-theme-name = Paper

View File

@ -26,6 +26,7 @@
<property name="plugin-1" type="string" value="applicationsmenu">
<property name="show-menu-icons" type="bool" value="true"/>
<property name="show-button-title" type="bool" value="true"/>
<property name="button-icon" type="string" value="/etc/lightdm/icon.png"/>
</property>
<property name="plugin-2" type="string" value="actions"/>
<property name="plugin-15" type="string" value="separator">

View File

@ -51,10 +51,11 @@ then
#Copy in xfce4 default settings
cp -f $DIR/xfce-config/xfce-perchannel-xml/* /etc/xdg/xfce4/xfconf/xfce-perchannel-xml/
cp -f $DIR/xfce-config/panel/* /etc/xdg/xfce4/panel/
#Copy in lightdm/light greeter settings
cp -f $DIR/icons/icon-small-noback.png /etc/lightdm/
cp -f $DIR/xfce-config/lightdm/* /etc/lightdm/
#Copy in wallpapers
rm /usr/share/images/desktop-base/default && cp $DIR/wallpapers/* /usr/share/images/desktop-base/

View File

@ -81,7 +81,7 @@ create_image() {
mount -o noatime ${2}p2 $5
}
# create a 3GB image with the Chrome OS partition layout
# create a 2GB image with the Chrome OS partition layout
create_image PrawnOS-Alpha-c201-libre-2GB.img-BASE $outdev 50M 40 $outmnt
# use default debootstrap mirror if none is specified
@ -99,6 +99,8 @@ chroot $outmnt passwd -d root
#Place the config files and installer script and give them the proper permissions
echo -n PrawnOS-Alpha > $outmnt/etc/hostname
cp -R $install_resources/ $outmnt/InstallResources/
# and the icons for the lockscreen and app menu
cp $build_resources/logo/icons/ $outmnt/InstallResources/
cp scripts/InstallScripts/* $outmnt/InstallResources/
cp scripts/InstallScripts/InstallToInternal.sh $outmnt/
chmod +x $outmnt/*.sh