Page 1 of 1

Linux Version

Posted: Mon Mar 09, 2020 6:47 am
by Rigor
Hello,

that would be awesome to be able to use this app for example on a Raspberry Pi.

Best regards

Re: Linux Version

Posted: Mon Mar 09, 2020 6:55 am
by RobLatour
Agreed, I just don't know enough about Linux to do that.

However, I've coded the heart of it for an esp32 board (the Pi's little brother) - you can see that here:
https://hackaday.io/project/170281-voic ... sage-board

Re: Linux Version

Posted: Fri May 15, 2020 11:57 am
by CodeFarmer
Here is another vote for a linux version. It would be so sweet to run it on an inexpensive Raspberry Pi. In which language did you code it?

Re: Linux Version

Posted: Thu Nov 26, 2020 2:23 am
by Mherber2
I'd like to assist with Linux development.

Re: Linux Version

Posted: Thu Nov 26, 2020 7:51 am
by RobLatour
Push2Run is coded in vb.net.

Not sure if it can run ontop of Linux using something like this: https://www.winehq.org/

However, Push2Run does do some Windows OS stuff, such as running other applications, which may not translate well to a Linux implementation.

If you decide to give it a go, I would be very interested in your results.

Re: Linux Version

Posted: Tue Dec 01, 2020 10:48 pm
by Mherber2
I pulled inspiration from push2run and setup something similar for Linux although its not nearly as graceful.

Follow the provided push2run ifttt instructions for dropbox, install dropbox on linux, then use a script to process the file produced by dropbox. Below is an example script. This type of solution should work on Linux and Mac however it is not something that can be supported on this forum.



Code: Select all

#!/bin/bash
watchedFile=/home/user/Dropbox/Apps/Push2Run/system.txt

while (true);
do
  if [ -f $watchedFile ]; then
    echo received:
    cat $watchedFile
    if grep "ping Google" "$watchedFile"; then
      gnome-terminal -- ping google.com
    elif grep "open Netflix" "$watchedFile"; then
      gnome-www-browser netflix.com
    else
      echo Unknown Command
    fi
    rm $watchedFile
  else
    sleep 1s
  fi
done

Re: Linux Version

Posted: Thu Dec 10, 2020 2:07 pm
by Mherber2
for those following this thread, see post https://www.push2run.com/phpbb/viewtopic.php?f=6&t=775 for a way to setup ifttt with a rule that will work on both linux and windows as well as provide a way of controlling both with a single ifttt applet.

Re: Linux Version

Posted: Tue Jan 26, 2021 7:23 pm
by RobLatour
just a note - Push2Run now works on a Raspberry PI running Windows 10 (for more on the Pi running Windows 10 check out https://www.worproject.ml/

(also you can see it in action in the current featured video on the push2run website - linked here (around 23 minutes and 10 seconds in) : https://www.youtube.com/watch?v=COsRMLA ... e=emb_logo