Ubuntu

點兩下啟動應用程序

  • May 10, 2020

code blocks從二進制安裝到/opt/cb 我想知道如何創建一個可以點擊並啟動應用程序的連結。

我可以通過

$ /opt/cb/bin/codeblocks

但是,文件/opt/cb/bin/codeblocks本身不允許我通過點擊啟動。

我選擇了Allow executing file as program,但是沒有用。

我怎樣才能做到?

創建一個 .desktop 文件,~/.local/share/applications/其中/usr/share/applications/包含以下行。

例子:

nano ~/.local/share/applications/codeblocks.desktop

[Desktop Entry]
Name=Code::Blocks
Type=Application
Comment=The open source, cross platform, free C, C++ and Fortran IDE
Exec=/opt/cb/bin/codeblocks
Icon=codeblocks
Categories=Development;IDE;

然後您可以在菜單中的其他程序啟動器之間找到它。

引用自:https://unix.stackexchange.com/questions/585645