activitywatch icon indicating copy to clipboard operation
activitywatch copied to clipboard

Create AppImage - script attached

Open guysoft opened this issue 3 years ago • 2 comments

Hey, I have managed to create an appimage. I can provide a script here for you to build one. However, I tried adding it to CI. But I can't test here because mac fails to build because of no devkeys set.

#!/bin/bash
wget https://github.com/ActivityWatch/activitywatch/releases/download/v0.11.0/activitywatch-v0.11.0-linux-x86_64.zip
unzip activitywatch-v0.11.0-linux-x86_64.zip

pushd activitywatch
  wget https://raw.githubusercontent.com/guysoft/activitywatch/appimage/AppRun
  chmod 755 AppRun
  cp ./aw-server/aw_server/static/static/logo.png ./activitywatch.png
popd

wget https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage
chmod 755 appimagetool-x86_64.AppImage
./appimagetool-x86_64.AppImage activitywatch

ls -l *.AppImage

echo "output should be at: appimagetool-x86_64.AppImage"

Relaed #10

  • [x] I have searched the issues of this repo and believe that this is not a duplicate.
  • [x] I have searched the documentation and believe that my question is not covered.

guysoft avatar Mar 25 '22 17:03 guysoft

Hi there! As you're new to this repo, please make sure you've used an appropriate issue template and searched for duplicates (it helps us focus on actual development!). We'd also like to suggest that you read our contribution guidelines and our code of conduct. Thanks a bunch for opening your first issue! 🙏

github-actions[bot] avatar Mar 25 '22 17:03 github-actions[bot]

I think AppImage would be very useful for this app.

pktiuk avatar Apr 11 '22 18:04 pktiuk