13 lines
350 B
Bash
Executable file
13 lines
350 B
Bash
Executable file
#!/bin/bash -e
|
|
|
|
#
|
|
# Run this to update the launcher file with the current path to the application icon
|
|
#
|
|
|
|
APPDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
if [ -w "$APPDIR"/zotero.desktop ]; then
|
|
sed -i -e "s@^Icon=.*@Icon=$APPDIR/icons/icon128.png@" "$APPDIR"/zotero.desktop
|
|
else
|
|
echo "$APPDIR"/zotero.desktop is not writable
|
|
exit 1
|
|
fi
|