dalmemail / GnuSocialShell

A simple useful text-based GnuSocial client to UNIX-like Operating Systems
GNU General Public License v3.0
14 stars 4 forks source link

GnuSocialShell

GnuSocialShell is a simple, userful, text-based GnuSocial client write in C by DalmeGNU to all UNIX-like Operating Systems

How to compile GnuSocialShell

Dependencies

Optional

Compile

Before you start the compilation process please make sure you have the following tools installed on your system: gcc, autotools (autoconf & automake), gnulib.

  $ ./autogen.sh --prefix=/usr/local
  $ make

Execute

  $ ./gnusocialshell -c /path/to/config/file

How to make a Configuration File

First we have to open the file "config" using nano (or another text editor)

  $ nano config

We will get something like:

  #Default Config file for GnuSocialShell
  protocol=;
  user=;
  server=;
  #Uncomment this line to enable password store
  #password=;

Now we have to complete protocol, user, server and if we want password.

Example

  #Default Config file for GnuSocialShell
  protocol=https;
  user=account;
  server=mynode.com;
  #Uncomment this line to enable password store
  password=123mypassword;