mirror of
https://github.com/sahinakkaya/dotfiles.git
synced 2025-07-04 19:19:41 +03:00
Organize scripts
This commit is contained in:
14
scripts/shrfile
Executable file
14
scripts/shrfile
Executable file
@ -0,0 +1,14 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [ -z "$1" ]
|
||||
then
|
||||
file=$(find . -maxdepth 1 -type f | cut -c 3- | rofi -i -dmenu -p "Select file to share")
|
||||
else
|
||||
file=$1
|
||||
fi
|
||||
|
||||
if [ -z "$file" ]; then
|
||||
exit
|
||||
fi
|
||||
curl -F "file=@$file" https://0x0.st | xclip -selection c
|
||||
notify-send "Link to $file is copied to clipboard!"
|
Reference in New Issue
Block a user