#!/bin/bash

# Wrapper script to help invoke tweak from the debian menu

# (C) 2007 Daniel Kahn Gillmor <dkg-debian.org@fifthhorseman.net>
# License: GPL v2 or later (see /usr/share/common-licenses/GPL)

# Note: -e provides readline functionality in bash, but it's not
# POSIX-compliant, which is why the shebang line specifies bash
# instead of sh. I think the tradeoff is worth it, though.

read -e -p "tweak file: " file
exec /usr/bin/tweak "$file"
