You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I used to script the configuration of Crappy FireTitle to set the title for Firefox profiles which were also created with scripts. This has broken as it appears FireTitle is storing the configuration elsewhere. Can you explain to me where it is now stored so I can attempt to create a new automated solution for this? For reference, this is what I was doing before.
firetitle_dir="$PROFILES_DIR/$PROFILE_NAME/browser-extension-data/[email protected]"
if [[ ! -d "${firetitle_dir}" ]]; then
mkdir -v "${firetitle_dir}"
fi
sed "s|PROFILE_NAME|${PROFILE_NAME^^}|g" \
"$SCRIPT_DIR/crappyfiretitle.template" \
> "${firetitle_dir}/storage.js"
The text was updated successfully, but these errors were encountered:
I used to script the configuration of Crappy FireTitle to set the title for Firefox profiles which were also created with scripts. This has broken as it appears FireTitle is storing the configuration elsewhere. Can you explain to me where it is now stored so I can attempt to create a new automated solution for this? For reference, this is what I was doing before.
The text was updated successfully, but these errors were encountered: