I hereby claim:
- I am borcean on github.
- I am borcean (https://keybase.io/borcean) on keybase.
- I have a public key ASCaOE13lChso81v9wGkIGQIZzdUZyU_Enk8YMTKqaSV2go
To claim this, I am signing this object:
sudo crouton -r bionic -t core -n neon && \ | |
sudo enter-chroot -n neon -u 0 bash -c "\ | |
apt install software-properties-common -y && \ | |
wget -qO - 'http://archive.neon.kde.org/public.key' | sudo apt-key add - && \ | |
sudo apt-add-repository http://archive.neon.kde.org/user && \ | |
sudo apt update && \ | |
sudo apt full-upgrade -y && \ | |
sudo apt install xterm xinit -y" && \ |
I hereby claim:
To claim this, I am signing this object:
The Synaptics fingerprint sensor (06cb:009a) present on my T480 is not supported by libfprint
and fprintd
as it requires a non-free binary blob. uunicorn created open-fprintd
, a replacement for fprintd
, that allows for loading of binary blobs. In conjunction with their python-validity
driver we are able to make use of the inbuilt fingerprint reader. The following instructions were tested against Fedora Linux 35.
sudo dnf copr enable tigro/python-validity
sudo dnf install open-fprintd fprintd-clients fprintd-clients-pam python3-validity
#!/usr/bin/env bash | |
# Installs the latest release of dockutil from Github | |
APP=dockutil | |
# Download latest release PKG from Github | |
curl -s https://api.github.com/repos/kcrawford/dockutil/releases/latest \ | |
| grep "https*.*pkg" | cut -d : -f 2,3 | tr -d \" \ | |
| xargs curl -SL --output /tmp/$APP.pkg | |