diff --git a/recipes-graphics/wayland/files/weston.ini b/recipes-graphics/wayland/files/weston.ini index efe02da..f52a6d5 100644 --- a/recipes-graphics/wayland/files/weston.ini +++ b/recipes-graphics/wayland/files/weston.ini @@ -23,21 +23,13 @@ require-input=false #homescreen=/usr/share/backgrounds/gnome/Blinds.jpg #animation=fade -#[launcher] -#icon=/usr/share/icons/gnome/24x24/apps/utilities-terminal.png -#path=/usr/bin/gnome-terminal +[launcher] +icon=/usr/share/weston/terminal.png +path=/usr/bin/weston-terminal -#[launcher] -#icon=/usr/share/icons/gnome/24x24/apps/utilities-terminal.png -#path=/usr/bin/weston-terminal - -#[launcher] -#icon=/usr/share/icons/hicolor/24x24/apps/google-chrome.png -#path=/usr/bin/google-chrome - -#[launcher] -#icon=/usr/share/icons/gnome/24x24/apps/arts.png -#path=/build/weston-0lEgCh/weston-1.11.0/weston-flower +[launcher] +icon=/usr/share/icons/hicolor/48x48/apps/jpos-weather.png +path=SLINT_FULLSCREEN=1 /usr/bin/jpos-weather #[input-method] #path=/usr/libexec/weston-keyboard diff --git a/recipes-jpos/jpos-weather/icons/192x192/jpos-weather.png b/recipes-jpos/jpos-weather/icons/192x192/jpos-weather.png new file mode 100644 index 0000000..f9d8871 Binary files /dev/null and b/recipes-jpos/jpos-weather/icons/192x192/jpos-weather.png differ diff --git a/recipes-jpos/jpos-weather/icons/48x48/jpos-weather.png b/recipes-jpos/jpos-weather/icons/48x48/jpos-weather.png new file mode 100644 index 0000000..3a92555 Binary files /dev/null and b/recipes-jpos/jpos-weather/icons/48x48/jpos-weather.png differ diff --git a/recipes-jpos/jpos-weather/jpos-weather_git.bb b/recipes-jpos/jpos-weather/jpos-weather_git.bb index edebc3c..d6d13cd 100644 --- a/recipes-jpos/jpos-weather/jpos-weather_git.bb +++ b/recipes-jpos/jpos-weather/jpos-weather_git.bb @@ -15,3 +15,20 @@ LIC_FILES_CHKSUM = "file://LICENSES/GPL-3.0-only.txt;md5=75d892af193fd5a298f724c DEPENDS = "\ openssl \ " + +FILESEXTRAPATHS:prepend := "${THISDIR}/icons:" +SRC_URI:append = "\ + file://48x48/jpos-weather.png \ + file://192x192/jpos-weather.png \ +" +FILES:${PN}:append = "\ + ${datadir}/icons/hicolor/48x48/apps/jpos-weather.png \ + ${datadir}/icons/hicolor/192x192/apps/jpos-weather.png \ +" +do_install:append() { + install -d ${D}${datadir}/icons/hicolor/48x48/apps + install ${WORKDIR}/48x48/jpos-weather.png ${D}${datadir}/icons/hicolor/48x48/apps + + install -d ${D}${datadir}/icons/hicolor/192x192/apps + install ${WORKDIR}/192x192/jpos-weather.png ${D}${datadir}/icons/hicolor/192x192/apps +}