Replies: 2 comments 1 reply
-
Currently, there is no built-in way to do this. However, it should be possible with something like tmux, assuming you're using WSL. You could first open tmux, which will launch a new session with a green bar at the bottom. You can then open nyaa from within tmux. Then, open a new Windows Terminal tab thats using the same WSL Linux Distro and run the command:
to make sure it works. This should trigger the r key on the tmux session. Assuming that works, you could make the desired feature into a bash script (a #!/bin/sh
while [ true ]; do
tmux send-keys r
sleep 5m # Wait for 5 minutes before pressing 'r' again
done Then, while nyaa is running in the tmux tab, run the script from the second tab with bash, like: bash test.sh # or whatever you've named the script To close out of the script, Ctrl+C should work. |
Beta Was this translation helpful? Give feedback.
-
Thanks, that works for me. |
Beta Was this translation helpful? Give feedback.
-
Hi, I am currently using nyaa on Windows with windows terminal on a separate monitor to see latest torrents on nyaa.si, is there a way for me to reload for example every 5 minutes automaticaly, either within the app itself or within Windows Terminal, any help is appreciated.
Beta Was this translation helpful? Give feedback.
All reactions