install Desktop file for linux
the build was successful Details

This commit is contained in:
Dan Ballard 2019-09-25 13:57:43 -07:00
szülő 3a744197b8
commit db817dbed2
3 fájl változott, egészen pontosan 20 új sor hozzáadva és 0 régi sor törölve

10
linux/cwtch.desktop Normal file
Fájl megtekintése

@ -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;

BINáris
linux/cwtch.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Méret: 3.9 KiB

10
linux/install.sh Executable file
Fájl megtekintése

@ -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