tools enhancement

This commit is contained in:
qo-op 2020-04-04 17:07:38 +02:00
parent bb9a1da3ce
commit de9fe7cf0f
4 changed files with 41 additions and 0 deletions

View File

@ -50,3 +50,15 @@ MAIN ENTRANCE BUILD UP
\_X \/\//--\| \|| _|_\_ #Web4D
```
ScuttleButt un réseau social maillé Libre qui marche au soleil.
Sur Fixe : http://dinosaur.is/patchwork-downloader/
sur Mobile : https://manyver.se
Il se connecte automatiquement en réseau local avec les autres scuttlebutt et fonctionne par ami d'ami (P2P).
Il enlève les parasites de ton réseau et permet de cultiver l'intelligence collective au lieu de l'exploiter
--
Fred
Forgeron monétaire Libre : DsEx1pS33vzYZg4MroyBV9hCw98j1gtHEhwiZ5tK7ech
https://cesium.app/ & https://gchange.fr/

BIN
doc/images/mcdc_ok.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

View File

@ -12,6 +12,26 @@ echo '
# Make a G1SSB Account
########################################################################
'
# INSTALL Silkaj, CLI for Duniter
if [[ ! $(which silkaj) ]]; then
echo '**************************************************************
__ ___
(_ | | |/ /\ |
__) _|_ |_ |\ /--\ \_|
#Libre Money Layer
'
mkdir -p ~/.zen
sudo apt update || true
sudo apt install build-essential -y
sudo pip3 install base58
sudo apt install python3-pip python3-setuptools python3-wheel -y
pip3 install silkaj --user
echo 'PATH=$PATH:.local/bin' >> ~/.bashrc && source ~/.bashrc
fi
if [[ -d ~/.ssb ]]; then
echo "ScuttelButt is already installed..."
echo "Do you want to remove ~/.ssb ? (y)/n"

View File

@ -0,0 +1,9 @@
#!/bin/bash
[ ! -L ~/.ssb ] && [ ! -d ~/.ssb_1st ] && echo "Making 1st backup" && mv ~/.ssb ~/.ssb_1st && ln -s ~/.ssb_1st ~/.ssb
for dir in $(ls -d ~/.ssb* | cut -d '_' -f 2); do
[ ! -e $dir ] && echo "Choose..." || continue
echo " $dir Identity ? (y)/n" && read isok
[[ "$isok" == "y" ]] && [ -L ~/.ssb ] && rm ~/.ssb && ln -s ~/.ssb_$dir ~/.ssb && echo "Welcome $dir" && break
done
echo "Your SSB Identity is linked to"
ls -l ~/.ssb