A colorful, customizable system info CLI tool β a modern reimagination of the classic finger command.
- π Shows detailed user info:
- Username, shell, home dir
- Last login, login status
- Uptime, home file count
- π¨ Colorful output with emoji and ANSI styles
- β‘ Blazing Fast using
ripgrep(Rust-powered) - π Optional Markdown export with
glow - π§ Easily extensible with flags
Flag | Description
--markdown | Show output as Markdown using glow
--copy | Copy output to clipboard (xclip / pbcopy)
--all | Loop through all users on the system
--json | Output raw JSON (good for scripting)
--minimal | Compact info: username, real name, home dir, shell, last login...
βΉοΈ If no flag is provided, it runs for the current user only.
bash(tested on 5.2+)ripgreplastlogglow(for Markdown preview)xcliporpbcopy(for --copy)
Install dependencies on Debian/Ubuntu:
sudo apt install ripgrep fzfInstall glow manually:
curl -s https://api.github.com/repos/charmbracelet/glow/releases/latest \
| grep browser_download_url | grep amd64.deb | cut -d '"' -f 4 \
| wget -qi - && sudo dpkg -i glow*.deb./magic-finger.sh --markdown --copyWant to add features? Fork the repo and send a PR!
MIT License β do what you want, just give credit π
- The original Unix finger
- ripgrep
- glow

