diff options
| author | Robert Günzler <r@gnzler.io> | 2022-11-18 18:32:48 +0100 |
|---|---|---|
| committer | Robert Günzler <r@gnzler.io> | 2022-11-18 18:38:24 +0100 |
| commit | eef1f07a577112d1523b9d7a637e0f9d381361b8 (patch) | |
| tree | d92391911d5ec74af4a1044209248750d0c1c991 /.mozilla/firefox/wr7p23up.default-nightly/chrome/Makefile | |
| parent | 69cdb15cc3ac06f8cfd0073a964069a91766f1f4 (diff) | |
firefox: add lepton stuff
Diffstat (limited to '.mozilla/firefox/wr7p23up.default-nightly/chrome/Makefile')
| -rw-r--r-- | .mozilla/firefox/wr7p23up.default-nightly/chrome/Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.mozilla/firefox/wr7p23up.default-nightly/chrome/Makefile b/.mozilla/firefox/wr7p23up.default-nightly/chrome/Makefile new file mode 100644 index 0000000..3e5c8d6 --- /dev/null +++ b/.mozilla/firefox/wr7p23up.default-nightly/chrome/Makefile @@ -0,0 +1,14 @@ +STYLE := proton-style + +all: fetch patch + +.PHONY: fetch +fetch: + @echo Fetching lepton... + curl -sSL "https://github.com/black7375/Firefox-UI-Fix/raw/${STYLE}/css/leptonChrome.css" -o lepton.userChrome.css + curl -sSL "https://github.com/black7375/Firefox-UI-Fix/raw/${STYLE}/css/leptonContent.css" -o lepton.userContent.css + +.PHONY: patch +patch: + @echo Patching lepton... + patch -p1 --reject-file - < lepton.patch |