aboutsummaryrefslogtreecommitdiffstats
path: root/GNUmakefile
diff options
context:
space:
mode:
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile19
1 files changed, 18 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile
index f368adb..15c6712 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -1,9 +1,11 @@
MODULES=xmodmap emacs xdg shepherd dunst zsh mcron mbsync nyxt work \
- herbstluftwm mpd polybar xbindkeys
+ herbstluftwm mpd polybar xbindkeys firefox
STOW = stow
EMACS = emacs
SCHEME_IMPLEMENTATION = guile
+# Found this sed command here: https://stackoverflow.com/a/40778047
+FIREFOX_PROFILE := $(shell sed -nr "/^Name=default/ { :l /^Path=/ { s/[^=]*=[ ]*//; p; q; }; n; b l; }" ~/.mozilla/firefox/profiles.ini 2>/dev/null)
.PRECIOUS: %.el
@@ -125,6 +127,21 @@ zsh: zsh/.profile zsh/.zshrc zsh/.zsh/functions/unzip.zwc \
nyxt: nyxt/.config/nyxt/init.lisp
+## Firefox
+
+ifneq ($(FIREFOX_PROFILE),)
+firefox: firefox/.mozilla/firefox/$(FIREFOX_PROFILE)/chrome/userChrome.css
+
+firefox/.mozilla/firefox/$(FIREFOX_PROFILE)/chrome/userChrome.css: firefox/src/userChrome.css
+ mkdir -p $$(dirname $@)
+ cp $^ $@
+else
+firefox:
+ @echo "Error finding firefox default profile, can't make" >&2
+firefox-stow:
+ @echo "Error finding firefox default profile, can't stow" >&2
+endif
+
## Helper
%.el: %.org