dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

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 "$@"