Hello,
that would be awesome to be able to use this app for example on a Raspberry Pi.
Best regards
Linux Version
Re: Linux Version
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
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
-
- Posts: 1
- Joined: Fri May 15, 2020 11:53 am
Re: Linux Version
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
I'd like to assist with Linux development.
Re: Linux Version
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.
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
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.
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
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
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
(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