You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is the feature request related to a problem. Please describe it.
managing qobuz and deezer links for downloading
Describe the solution you would like.
hey,
I'm trying to create a little frontend.
right now i got a firefox addon for extracting qobuz links of your browser tabs.
Its far from done but if you want to try it out yourself or modify it e.g. filtering options feel free to do so.
source code link below: https://github.com/JustanerdFML/linkgrabber
Describe alternatives you've considered.
No response
The text was updated successfully, but these errors were encountered:
if you're on mac, save this shell script and make it run at login and it'll automatically run any url you copy to your clipboard
#!/bin/bash
# Variable to store the last copied link
LAST_LINK=""
while true; do
# Get the current clipboard content
CLIPBOARD=$(/usr/bin/pbpaste)
# Check if clipboard contains a Deezer link
if echo "$CLIPBOARD" | grep -qE '^https://(www\.)?deezer\.com|^https://dzr\.page\.link'; then
# If the new clipboard content is different from the last copied link
if [[ "$CLIPBOARD" != "$LAST_LINK" ]]; then
echo "Deezer link detected: $CLIPBOARD"
# Run the rip command in the background
/opt/homebrew/bin/rip url "$CLIPBOARD" &
RIP_PID=$! # Get the PID of the rip command
# Store the current clipboard content as the last detected link
LAST_LINK="$CLIPBOARD"
fi
fi
# Sleep for 2 seconds before checking the clipboard again
sleep 2
done
Is the feature request related to a problem. Please describe it.
managing qobuz and deezer links for downloading
Describe the solution you would like.
hey,
I'm trying to create a little frontend.
right now i got a firefox addon for extracting qobuz links of your browser tabs.
Its far from done but if you want to try it out yourself or modify it e.g. filtering options feel free to do so.
source code link below:
https://github.com/JustanerdFML/linkgrabber
Describe alternatives you've considered.
No response
The text was updated successfully, but these errors were encountered: