From 80cfb185fa2ccd974f9caa7d82065c7f8ad4e0fa Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Fri, 19 Jul 2024 10:46:56 -0300 Subject: Fix: userChrome importing --- README.md | 7 +++++++ chrome/userChrome.css | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 45444ea..60e0fb1 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,13 @@ profiles: ln -sf /path/to/firefoxer/chrome $file/chrome; done +Example: + + cd ~/.mozilla/firefox/profiles + for file in *; do + ln -s ../../../../apps/firefoxer/chrome $file/chrome; + done + ### Suggested profiles * `template`: diff --git a/chrome/userChrome.css b/chrome/userChrome.css index b5b7aee..6ebfd6f 100644 --- a/chrome/userChrome.css +++ b/chrome/userChrome.css @@ -2,5 +2,5 @@ * userChrome.css for Firefoxer */ -@import url("tabs/hide.css"); -@import url("tabs/tree.css"); +@import "tabs/hide.css"; +@import "tabs/tree.css"; -- cgit v1.2.3