mirror of
https://github.com/vale981/tridactyl
synced 2025-03-05 09:31:41 -05:00
5 lines
205 B
Bash
5 lines
205 B
Bash
![]() |
#!/usr/bin/env bash
|
||
|
installdir=${1:-/usr/lib/firefox/browser/extensions}
|
||
|
xpi=web-ext-artifacts/$(ls -t web-ext-artifacts/ | head -n1)
|
||
|
install -Dm644 $xpi $installdir/$(scripts/get_id_from_xpi.sh $xpi).xpi
|