This guide sets up facial recognition (using IR camera) and fingerprint authentication on Ubuntu, similar to Windows Hello.
- Ubuntu 24.04 with GNOME
- Windows Hello compatible IR camera
- Fingerprint sensor (optional)
| #!/bin/bash | |
| # Setup script for ai-agents development workstation | |
| # Run with: bash ~/setup-ai-agents-workstation.sh | |
| # | |
| # This script installs all required tools for developing and maintaining | |
| # https://github.com/rjmurillo/ai-agents including MCP server dependencies. | |
| set -e | |
| echo "==============================================" |
| Get-Project –All | Add-BindingRedirect | |
| # On large projects commands like `Update-Package -Reinstall` can take HOURS | |
| # If the updates are broken up, then don't lock up the IDE and complete much faster (minutes vs hours) | |
| # Reinstall all packages that match a specific targetFramework | |
| # Useful when retargeting | |
| gci -recurse packages.config | % { [xml]$XmlDocument = Get-Content -Path $_.FullName; $XmlDocument.packages.package | ? { $_.targetFramework -eq 'net462' } | select id | sort-object -unique | % { update-package -reinstall $_.id } } | |
| # Reinstall all packages that have been marked with requireReinstallation |
| EVAL "for i, name in ipairs(redis.call('KEYS', 'user:*')) do redis.call('expire', name, 0); end" 0 |
| # START http://boxstarter.org/package/url? | |
| # Initial Windows Config | |
| Update-ExecutionPolicy Unrestricted | |
| Set-ExplorerOptions -showFileExtensions | |
| Enable-RemoteDesktop | |
| Disable-GameBarTips | |
| # Windows Features and Extras | |
| cinst sudo |