drag (257B)
1 #!/bin/sh 2 # This script uses `ripdrag` to provide drag-and-drop functionality. 3 # Provide one or more filenames, and you'll get a window from which you can 4 # drag. 5 command -v ripdrag || { printf "Install mwh/dragon\n" >&2 && exit 1; } 6 setsid -f ripdrag "$@"