免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1014 | 回复: 0
打印 上一主题 下一主题

[Portland] Wrapper scripts [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-05-08 10:47 |只看该作者 |倒序浏览
Very nice!
And here's another one; xdg-menu; creates or deletes
a menu .desktop file on any system compliant with the XDG
menu specification.
If we get xdg-email, xdg-screensaver, xdg-su, we'll have
all of the 'Short Term Tasks' covered (although we need
to expand xdg-mime to allow for the registration of mime types).
I have lots of implementation thoughts on this
(things like do the kfmclient calls return error codes
that we should propogate) but that can be worked out.
We may want to give a bit of thought to name spacing
and calling conventions before we do a first cut; but
we could conceivably ship something useful Real Soon Now (TM).
Cheers,
Jeremy
Kevin Krammer wrote:
> Attached are three example wrapper scripts around KDE and GNOME commandline
> tools.
>
> The scripts are not very "pretty" as I am a lousy shell scripter :)
>
> When called without parameter they print a short usage info, including
> examples.
>
> Basically they do this:
>
> xdg-open:
> if KDE_FULL_SESSION is set to "true" it calls kfmclient exec
> if GNOME_DESKTOP_SESSION_ID is set it calls gnome-open
> if BROWSER is set is tries to invoke the first one (should iterate over list,
> parameters with spaces problematic)
>
> xdg-copy
> if KDE_FULL_SESSION is set to "true" it calls kfmclient copy
> if GNOME_DESKTOP_SESSION_ID is set it calls gnomevfs-copy
>
> xdg-mimeinfo:
> if KDE_FULL_SESSION is set to "true" it calls kfile
> if GNOME_DESKTOP_SESSION_ID is set it calls gnomevfs-info
> if /usr/bin/file exists calls that
>
> Cheers,
> Kevin
>
>
>
> ------------------------------------------------------------------------
>
> _______________________________________________
> Portland mailing list
>
Portland at lists.freedesktop.org
>
http://lists.freedesktop.org/mailman/listinfo/portland

-------------- next part --------------
#!/bin/sh
#---------------------------------------------
#   xdg-menu
#
#   Utility script to create menu icons on a Linux desktop.
#   Works on most XDG compliant Linux systems; does
#   not work everywhere.  
#   
#   Refer to the usage() function below for usage.
#---------------------------------------------
usage()
{
    echo Usage:
    echo  $0 "[--root|--user] [--create desktop|--delete desktop]"
    echo "Where --user (install only for the current user) is the default."
    echo One of --create or --delete must be specified.
    echo With --create, the file specified must exist and be a valid XDG .desktop file
    echo With --delete, the file must be a pattern that will exist;
    echo      essentially the basename of the file passed in with '--create'
}
xdg_user_dir=$XDG_DATA_HOME
[ -n "$xdg_user_dir" ] || xdg_user_dir=$HOME/.local/share
xdg_data_dirs=$XDG_DATA_DIRS
[ -n "$xdg_data_dirs" ] || xdg_data_dirs=/usr/local/share/:/usr/share/
for x in `echo $xdg_data_dirs | sed 's/:/ /g'` ; do
    if [ -w $x/applications/ ] ; then
        xdg_global_dir=$x
        break
    fi
done
[ -w $xdg_global_dir ] || xdg_global_dir=
kde_user_dir=$HOME/.kde/share/applnk
kde_global_dir=/usr/share/applnk
[ -w $kde_global_dir ] || kde_global_dir=
gnome_user_dir=$HOME/.gnome/apps
gnome_global_dir=/usr/share/gnome/apps
[ -w $gnome_global_dir ] || gnome_global_dir=
mode=user
action=
while [ $# -gt 0 ] ; do
    parm=$1
    shift
    case $parm in
      --create)
        if [ ! -f "$1" ] ; then
            echo Error:  You must specify a valid desktop file as a paramter to --create.
            exit 1
        fi
        if [ -n "$action" ] ; then
            echo Error:  You must specify only one of --create or --delete
            exit 1
        fi
        action=create
        desktop_file=$1
        shift
        ;;
      --delete)
        if [ -z "$1" ] ; then
            echo Error:  You must specify a desktop file name as a paramter to --delete.
            exit 1
        fi
        if [ -n "$action" ] ; then
            echo Error:  You must specify only one of --create or --delete
            exit 1
        fi
        action=delete
        desktop_file=$1
        shift
        ;;
      --user)
        mode=user
        ;;
      --root)
        mode=root
        ;;
      *)
        echo "$parm:  Invalid parameter/option"
        usage
        exit 2
        ;;
    esac
done
if [ -z "$action" ] ; then
    usage
    exit 2
fi
desktop_dir=
if [ "$mode" = "user" ] ; then
    xdg_dir=$xdg_user_dir/applications
    kde_dir=$kde_user_dir
    gnome_dir=$gnome_user_dir
    my_umask=077
    if [ -d $HOME/Desktop -a -w $HOME/Desktop ] ; then
        desktop_dir=$HOME/Desktop
    fi
else
    xdg_dir=$xdg_global_dir/applications
    kde_dir=$kde_global_dir
    gnome_dir=$gnome_global_dir
    my_umask=022
fi
#echo "[xdg|$xdg_user_dir|$xdg_global_dir]"
#echo "[kde|$kde_user_dir|$kde_global_dir]"
#echo "[gnome|$gnome_user_dir|$gnome_global_dir]"
#echo "[using|$xdg_dir|$kde_dir|$gnome_dir]"
case $action in
    create)
        save_umask=`umask`
        umask $my_umask
        basefile=`basename $desktop_file`
        for x in $xdg_dir $kde_dir $gnome_dir $desktop_dir ; do
            mkdir -p $x
            cp $desktop_file $x
        done
        if [ -f $kde_dir/$basefile ] ; then
            echo "OnlyShowIn=Old;" >> $kde_dir/$basefile
        fi
        if [ -f $gnome_dir/$basefile ] ; then
            echo "OnlyShowIn=Old;" >> $gnome_dir/$basefile
        fi
        umask $save_umask
        ;;
    delete)
        for x in $xdg_dir $kde_dir $gnome_dir $desktop_dir ; do
            rm -f $x/$desktop_file
        done
        
        ;;
esac
exit 0


本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/11971/showart_1922068.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP