Skip to content

Instantly share code, notes, and snippets.

@0x715C
0x715C / tree_style_tab_firefox.md
Created March 13, 2023 03:27 — forked from ruanbekker/tree_style_tab_firefox.md
Hide Native Tabs with Tree Style Tabs for Firefox
@0x715C
0x715C / lddtostage-pacman
Last active October 31, 2019 23:57 — forked from popey/lddtostage
Determine libraries needed by a binary and output in format for snapcraft.yaml
#!/bin/bash
TMPDIR=$(mktemp -d)
LDD=$TMPDIR/LDD
PACKAGES=$TMPDIR/PACKAGES
ldd $1 | awk -F ' ' '{print $3}' | sed '/^$/d' | sed '/^(/d' | grep -v '^not' > $LDD
while read p; do
echo -n .