Skip to content

Instantly share code, notes, and snippets.

@leoek
Forked from stefanovazzocell/xps15fingerprint.sh
Created April 8, 2021 14:48
Show Gist options
  • Save leoek/1cbbe86843c15d9d55f2c97a4ee31d13 to your computer and use it in GitHub Desktop.
Save leoek/1cbbe86843c15d9d55f2c97a4ee31d13 to your computer and use it in GitHub Desktop.
Ubuntu / PopOS Fingerprint Support - Dell XPS 15 9500
#!/usr/bin/env bash
echo 'Adding Dell repository...'
# https://www.dell.com/community/XPS/XPS-13-9300-Does-fingerprint-reader-work-on-linux/td-p/7514958
sudo sh -c 'cat > /etc/apt/sources.list.d/focal-dell.list << EOF
deb http://dell.archive.canonical.com/updates/ focal-dell public
# deb-src http://dell.archive.canonical.com/updates/ focal-dell public
deb http://dell.archive.canonical.com/updates/ focal-oem public
# deb-src http://dell.archive.canonical.com/updates/ focal-oem public
deb http://dell.archive.canonical.com/updates/ focal-somerville public
# deb-src http://dell.archive.canonical.com/updates/ focal-somerville public
deb http://dell.archive.canonical.com/updates/ focal-somerville-melisa public
# deb-src http://dell.archive.canonical.com/updates focal-somerville-melisa public
EOF'
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys F9FDA6BED73CDC22
echo 'Installing Fingerprint Drivers...'
sudo apt update
sudo apt -y install libfprint-2-tod1-goodix
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment