diff --git a/launcher/pling-store b/launcher/pling-store
index 8e97700a7d94c4883234d54506229159996a06eb..4ca3813338a003b1556ad204bd74805b6a278eb6 100644
--- a/launcher/pling-store
+++ b/launcher/pling-store
@@ -9,6 +9,8 @@ if [ ${APPIMAGE} ]; then
     export PATH=${PREFIX}/usr/local/bin:${PREFIX}/usr/bin:${PATH}
 fi
 
+HOME=${PREFIX}/usr/share/imwheel ocs-imwheel
+
 if [ -f "${PREFIX}/pling-store-linux-x64/pling-store" ]; then
     ${PREFIX}/pling-store-linux-x64/pling-store
 elif [ -f "${PREFIX}/usr/local/lib/pling-store-linux-x64/pling-store" ]; then
@@ -18,5 +20,8 @@ elif [ -f "${PREFIX}/usr/lib/pling-store-linux-x64/pling-store" ]; then
 elif [ -f "${PREFIX}/../lib/pling-store-linux-x64/pling-store" ]; then
     ${PREFIX}/../lib/pling-store-linux-x64/pling-store
 else
+    pkill ocs-imwheel
     exit 1
 fi
+
+pkill ocs-imwheel
\ No newline at end of file
diff --git a/pkg/appimage/appimagebuild b/pkg/appimage/appimagebuild
index 0fdeabbc6adea663a39f3d4c3f05a0e744b9ff27..92e961c71a6933ab6df04c238ff3b650ce2ded9c 100755
--- a/pkg/appimage/appimagebuild
+++ b/pkg/appimage/appimagebuild
@@ -22,6 +22,10 @@ install -D -m 755 /usr/lib/x86_64-linux-gnu/libgnome-keyring.so.0 ${APPDIR}/usr/
 curl -fsSL -o ocs-manager https://git.opendesktop.org/akiraohgaki/ocs-manager/uploads/d3dc42436b82d11360ebc96b38d4aaf4/ocs-manager-0.8.1-1-x86_64.AppImage
 install -D -m 755 ocs-manager ${APPDIR}/usr/bin/ocs-manager
 
+IMWHEEL_PATH=`which imwheel`
+install -D -m 755 ${IMWHEEL_PATH} ${APPDIR}/usr/bin/ocs-imwheel
+install -D -m 644 imwheel.conf ${APPDIR}/usr/share/imwheel/.imwheelrc
+
 curl -fsSL -o appimagetool https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage
 chmod 755 appimagetool
 ./appimagetool --appimage-extract
diff --git a/pkg/appimage/imwheel.conf b/pkg/appimage/imwheel.conf
new file mode 100644
index 0000000000000000000000000000000000000000..e788b0d8fa49120beff3e4271930f0694a934291
--- /dev/null
+++ b/pkg/appimage/imwheel.conf
@@ -0,0 +1,3 @@
+"^pling-store$"
+    None, Up, Button4, 2
+    None, Down, Button5, 2
diff --git a/scripts/package b/scripts/package
index 895b12e8148c45997996ca05b40925f79086a8e0..e47b46bae4d3c30bc6ba2b0e4be3f2b39a15abd2 100755
--- a/scripts/package
+++ b/scripts/package
@@ -23,7 +23,7 @@ install_build_deps_appimage() {
     git clone https://github.com/tj/n.git -b master --single-branch --depth=1 "${PROJDIR}/n"
     (cd "${PROJDIR}/n" && make install && n lts)
     rm -rf "${PROJDIR}/n"
-    apt -y install libgconf-2-4 libxss1 libcanberra-gtk-module libgnome-keyring0
+    apt -y install libgconf-2-4 libxss1 libcanberra-gtk-module libgnome-keyring0 imwheel
 }
 
 build_appimage() {
@@ -32,6 +32,7 @@ build_appimage() {
     export_srcarchive "${BUILDDIR}/${PKGNAME}.tar.gz"
     tar -xzf "${BUILDDIR}/${PKGNAME}.tar.gz" -C "${BUILDDIR}"
     cp "${PROJDIR}/pkg/appimage/appimagebuild" "${BUILDDIR}/${PKGNAME}"
+    cp "${PROJDIR}/pkg/appimage/imwheel.conf" "${BUILDDIR}/${PKGNAME}"
     cd "${BUILDDIR}/${PKGNAME}"
     ./appimagebuild
 }