cwtch.im
/
ui
Archiviert
6
7
Fork 2

install Desktop file for linux
the build was successful Details

Dieser Commit ist enthalten in:
Dan Ballard 2019-09-25 13:57:43 -07:00
Ursprung 3a744197b8
Commit db817dbed2
3 geänderte Dateien mit 20 neuen und 0 gelöschten Zeilen

10
linux/cwtch.desktop Normale Datei
Datei anzeigen

@ -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
linux/cwtch.png Normale Datei

Binäre Datei nicht angezeigt.

Nachher

Breite:  |  Höhe:  |  Größe: 3.9 KiB

10
linux/install.sh Ausführbare Datei
Datei anzeigen

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