]> git.sev.monster Git - dotfiles.git/blame - firefox/user-js-updater.sh
move to promptinit, cleanup zshrc, add up alias
[dotfiles.git] / firefox / user-js-updater.sh
CommitLineData
f993e922 1#!/bin/sh
2mv user.js user.js.bak >/dev/null 2>&1
3ghacksjs="https://raw.githubusercontent.com/ghacksuserjs/ghacks-user.js/master/user.js"
4if ! command -v curl; then
5 # Based on busybox-compatible wget
6 wget -q "$ghacksjs"
7else
8 curl -sSO "$ghacksjs"
9fi
10echo >> user.js
11cat user-overrides.js >> user.js
This page took 0.045063 seconds and 4 git commands to generate.