Skip to content

Instantly share code, notes, and snippets.

View fgclue's full-sized avatar
🏠
Working from home

Clue fgclue

🏠
Working from home
View GitHub Profile
@fgclue
fgclue / fonts.html
Created March 30, 2026 00:40
Get all fonts in Chromium
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Installed fonts</title>
</head>
<body>
<h1>This page only works in Chrome, Chromium, Brave or Safari.</h1>
<input type="checkbox" id="j">
@fgclue
fgclue / get_item.sh
Created March 20, 2026 18:27
Get android app label
rm -rf /tmp/test.apk
K=$(adb shell pm path $1)
K="${K#package:}"
adb pull $K /tmp/test.apk &> /dev/null
K=$(aapt dump badging /tmp/test.apk)
printf '%s\n' "$K" | sed -n "s/^application-label:'\(.*\)'/\1/p"