First of all install update and upgrade your system:
$ sudo apt update
$ sudo apt upgradeThen, install required libraries:
| #!/usr/bin/env bash | |
| # TODO convert to a role in https://github.com/serpro69/ansible-collection-devexp | |
| # https://guake.readthedocs.io/en/latest/user/installing.html#install-from-pypi | |
| is_not_root() { | |
| [ "${EUID:-$(id -u)}" -ne 0 ] | |
| } |