firefox: Add profile option with bigger fonts

This commit is contained in:
2022-01-14 16:28:27 +01:00
parent 7fd54e39ca
commit edf62e7622
4 changed files with 38 additions and 1 deletions

View File

@@ -6,8 +6,15 @@ Wants=blueman.service
Wants=dpms.service
Wants=dunst.service
Wants=element.service
{% for profile in (user.firefox_profiles|default({})).keys() %}
{% for profile, config in (user.firefox_profiles|default({})).items() %}
{% if config.bigger_font|default(false) is sameas false %}
Wants=firefox@{{ profile }}.service
{% endif %}
{% endfor %}
{% for profile, config in (user.firefox_profiles|default({})).items() %}
{% if config.bigger_font|default(false) is sameas true %}
Wants=firefox-gtk-override-bigger-font@{{ profile }}.service
{% endif %}
{% endfor %}
Wants=gpg-agent.service
Wants=gnome-keyring.service