Skip to content

Commit

Permalink
Added tray support
Browse files Browse the repository at this point in the history
  • Loading branch information
Fmstrat committed Mar 31, 2021
1 parent d45cd4d commit c8bcd96
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions makeApps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,21 +18,21 @@ chmod a+rw binaries -R
cd compile

# Linux
docker run -v "${PWD}":/target nativefier --name Pushover -p linux https://client.pushover.net /target/
docker run -v "${PWD}":/target nativefier --name Pushover --tray -p linux https://client.pushover.net /target/
sudo chown $(id -u):$(id -g) . -R
mv Pushover-linux-x64 pushover
tar cvfz pushover-linux.tgz pushover
mv pushover-linux.tgz ../binaries

# Windows
docker run -v "${PWD}":/target nativefier --name Pushover -i /target/icon.png -p windows https://client.pushover.net /target/
docker run -v "${PWD}":/target nativefier --name Pushover --tray -i /target/icon.png -p windows https://client.pushover.net /target/
sudo chown $(id -u):$(id -g) . -R
mv Pushover-win32-x64 Pushover
zip -r Pushover-win.zip Pushover
mv Pushover-win.zip ../binaries

# OSX
docker run -v "${PWD}":/target nativefier --name Pushover -p osx https://client.pushover.net /target/
docker run -v "${PWD}":/target nativefier --name Pushover --tray -p osx https://client.pushover.net /target/
sudo chown $(id -u):$(id -g) . -R
cd Pushover-darwin-x64
zip -r Pushover-osx.app.zip Pushover.app
Expand Down

0 comments on commit c8bcd96

Please sign in to comment.