diff options
Diffstat (limited to 'system/kegs/xkegs.sh')
-rw-r--r-- | system/kegs/xkegs.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/system/kegs/xkegs.sh b/system/kegs/xkegs.sh new file mode 100644 index 000000000000..55f0719b73bc --- /dev/null +++ b/system/kegs/xkegs.sh @@ -0,0 +1,15 @@ +#!/bin/sh + +# Wrapper script for xkegs, part of SlackBuilds.org kegs package +# By B. Watson + +# xkegs is smart enough to read its conf file from ~/.config.kegs, but +# it will choke if the file's not found. Also, it's smart enough to +# read it from /usr/share/kegs/config.kegs, but it'll freeze if +# it doesn't have write permission! + +if [ ! -e ~/.config.kegs ]; then + cat /usr/share/kegs/config.kegs.default > ~/.config.kegs +fi + +exec /usr/libexec/xkegs |