zoukankan      html  css  js  c++  java
  • Ubuntu20.04 源码安装完应用 如何将应用程序添加到启动器

    进入应用bin目录

    找到app.sh 和 app.png

    在/usr/share/applications 目录下创建app快捷方式

    sudo gedit Goland.desktop
    //若无gedit 请自行安装
    

    然后弹出输入框,在输入框内输入(以我安装的Goland为例)

    [Desktop Entry]
    Version=1.0
    Name=Goland
    Exec=/opt/GoLand-2021.1.3/bin/goland.sh
    Terminal=false
    Icon=/opt/GoLand-2021.1.3/bin/goland.png
    Type=Application
    Categories=Development
    

    只需要改动Name,Exec,Icon 三处
    点击Save
    关闭输入框

    出现了

    (gedit:7521): Tepl-WARNING **: 19:20:00.980: GVfs metadata is not supported. Fallback to TeplMetadataManager. Either GVfs is not correctly installed or GVfs metadata are not supported on this platform. In the latter case, you should configure Tepl with --disable-gvfs-metadata.
    

    好吧warning不重要

  • 相关阅读:
    JS生成Guid
    MVC——分页
    MVC入门——删除页
    MVC入门——编辑页
    MVC入门——详细页
    MVC入门——列表页
    MVC入门——增
    pandas使用
    简单线性回归预测实现
    flask 自定义url转换器
  • 原文地址:https://www.cnblogs.com/Jacob-yang/p/15490538.html
Copyright © 2011-2022 走看看