install Desktop file for linux
the build was successful 详情

这个提交包含在:
Dan Ballard 2019-09-25 13:57:43 -07:00
父节点 3a744197b8
当前提交 db817dbed2
共有 3 个文件被更改,包括 20 次插入0 次删除

10
linux/cwtch.desktop 普通文件
查看文件

@ -0,0 +1,10 @@
[Desktop Entry]
Name=Cwtch
Comment=Metadata Resistant Instant Messaging
Exec=~/.local/bin/cwtch
Icon=~/.local/share/icons/cwtch.png
StartupNotify=true
Type=Application
Keywords=Internet;IM;Instant Messaging;Messaging;Chat
Terminal=false
Categories=Network;InstantMessaging;

二进制
linux/cwtch.png 普通文件

二进制文件未显示。

之后

宽度:  |  高度:  |  大小: 3.9 KiB

10
linux/install.sh 可执行文件
查看文件

@ -0,0 +1,10 @@
#!/bin/sh
mkdir -p ~/.local/bin
cp ui ~/.local/bin/cwtch
mkdir -p ~/.local/share/icons
cp cwtch.png ~/.local/share/icons
mkdir -p ~/.local/share/applications
sed "s|~|$HOME|" cwtch.desktop > $HOME/.local/share/applications/cwtch.desktop