diff --git a/linux/cwtch.desktop b/linux/cwtch.desktop new file mode 100644 index 00000000..9459767a --- /dev/null +++ b/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; diff --git a/linux/cwtch.png b/linux/cwtch.png new file mode 100644 index 00000000..f35daeff Binary files /dev/null and b/linux/cwtch.png differ diff --git a/linux/install.sh b/linux/install.sh new file mode 100755 index 00000000..2f6ae01f --- /dev/null +++ b/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