root@kali:~# apt-get update
root@kali:~# apt-get install git build-essential autoconf pkg-config # fresh systems only
root@kali:~# apt-get install i3 # to get dependencies
root@kali:~# mkdir gui && cd gui
root@kali:~# git clone https://www.github.com/Airblader/i3 i3-gaps
root@kali:~# cd i3-gaps
root@kali:~# autoreconf --force --install
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // This shows an example of how to generate a SSH RSA Private/Public key pair and save it locally | |
| package main | |
| import ( | |
| "crypto/rand" | |
| "crypto/rsa" | |
| "crypto/x509" | |
| "encoding/pem" | |
| "golang.org/x/crypto/ssh" |