blob: f4093d5cb91e7a101a8e385a46170b2d73d0a2fe (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/usr/bin/env sh
set -eu -o pipefail
dir=$(ls /run/media/imsohexy/ | fzf --prompt="Copy to: ")
rsync \
--exclude=.stfolder \
--exclude=.thumbnails \
-ahvP \
--delete \
--modify-window=2 \
~/Downloads/music/ \
"/run/media/imsohexy/$dir"
notify-send "Done copying music. Sort it maybe?"
|