10 lines
299 B
Bash
Executable file
10 lines
299 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# We use a script instead of an alias because we want this utility in our path,
|
|
# usable from dmenu
|
|
|
|
if ! which dragon-drag-and-drop > /dev/null 2>&1; then
|
|
echo "Error: dragon-drag-and-drop isn't installed!" | tee /dev/fd/2 | xargs -n1 -d "\n" notify-send
|
|
fi
|
|
|
|
dragon-drag-and-drop $*
|