Add Snapdrop app
parent
d97c0ceac4
commit
f0d5b96935
@ -0,0 +1 @@
|
||||
Added by @chunky-milk
|
@ -0,0 +1,4 @@
|
||||
Share files with nearby devices on the local network. Inspired by Apple's Airdrop.
|
||||
To run: Menu -> Internet -> Snapdrop
|
||||
To use: Open a web browser on the other computer/smartphone and go to snapdrop.net
|
||||
Now drag and drop files to the website, and the other device will see the files and download them.
|
Binary file not shown.
After Width: | Height: | Size: 1.2 KiB |
Binary file not shown.
After Width: | Height: | Size: 4.6 KiB |
@ -0,0 +1,25 @@
|
||||
#!/bin/bash
|
||||
DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")"
|
||||
|
||||
function error {
|
||||
echo -e "\\e[91m$1\\e[39m"
|
||||
exit 1
|
||||
}
|
||||
|
||||
rm -f snapdrop-linux-armv7l.tar.xz
|
||||
|
||||
wget https://github.com/chunky-milk/snapdrop-rpi/raw/master/snapdrop-linux-armv7l.tar.xz || error "Failed to download archive!"
|
||||
tar -xvf snapdrop-linux-armv7l.tar.xz || error "Failed to extract archive!"
|
||||
rm -f snapdrop-linux-armv7l.tar.xz
|
||||
|
||||
# Desktop entry
|
||||
echo "[Desktop Entry]
|
||||
Name=Snapdrop
|
||||
GenericName=Local File Sharing
|
||||
Comment=Snapdrop: local file sharing in your browser. Inspired by Apple's Airdrop.
|
||||
Exec=$HOME/snapdrop/Snapdrop
|
||||
Icon=$(dirname "$0")/icon-64.png
|
||||
Terminal=true
|
||||
StartupNotify=true
|
||||
Categories=Network;
|
||||
Type=Application" > ~/.local/share/applications/snapdrop.desktop || error "Failed to create desktop shortcut!"
|
@ -0,0 +1,9 @@
|
||||
#!/bin/bash
|
||||
|
||||
function error {
|
||||
echo -e "\\e[91m$1\\e[39m"
|
||||
exit 1
|
||||
}
|
||||
|
||||
rm -rf ~/snapdrop || error "Failed to remove install directory!"
|
||||
rm ~/.local/share/applications/snapdrop.desktop || error "Failed to remove desktop shortcut!"
|
@ -0,0 +1 @@
|
||||
https://github.com/RobinLinus/snapdrop
|
Loading…
Reference in New Issue