Move old config to old-dots branch

This commit is contained in:
2023-12-25 13:21:57 +03:00
commit 3dab77f779
119 changed files with 9623 additions and 0 deletions

15
scripts/shrfile Executable file
View File

@ -0,0 +1,15 @@
#!/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!"
echo "$(xclip -o -sel clipboard)"