Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions clapper-appimage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,16 @@ export DEPLOY_OPENGL=1
export DEPLOY_GSTREAMER=1
export STARTUPWMCLASS=clapper # For Wayland, this is 'com.github.rafostar.Clapper', so this needs to be changed in desktop file manually by the user in that case until some potential automatic fix exists for this

sys_clapper_dir=$(echo /usr/lib/clapper-*)
if [ -d "$sys_clapper_dir" ]; then
export PATH_MAPPING="
$sys_clapper_dir:\${SHARUN_DIR}/lib/${sys_clapper_dir##*/}
"
else
>&2 echo "ERROR: Cannot find the clapper lib dir"
exit 1
fi

# DEPLOY ALL LIBS
wget --retry-connrefused --tries=30 "$SHARUN" -O ./quick-sharun
chmod +x ./quick-sharun
Expand Down
1 change: 1 addition & 0 deletions get-dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ pacman -Syu --noconfirm \
curl \
desktop-file-utils \
git \
gst-plugins-bad \
libxtst \
wget \
xorg-server-xvfb \
Expand Down