wine64
doesn't crash :) Am I happy to have just installed arch, I got to try that too
I really don't know much about how Firefox works on the inside, I just build it.. If it's possible as an extension that's always better, yes.
Another idea was to add a menu item 'open profile' that displays the available profiles, and when selected opens a new window with that profile (like how it works in about:profiles).
I thought I'd share, just in case you get asked questions in this room. I honestly didn't feel comfortable either going on record or speaking in name of all of us so I "refused" and sent an invite link.
I know we are losing visibility this way but I like the project being seen as a collective effort. let me know if you agree on the move, and if one of you wants to give the interview we could always discuss it and arrange it.
pref("
, defaultPref("
or lockPref("
lol
went with:
def count():
with open("librewolf.cfg") as config_file:
prefs = 0
lines = config_file.readlines()
for line in lines:
if (
''.join(line[0:5]) == "pref(" or
''.join(line[0:12]) == "defaultPref(" or
''.join(line[0:9]) == "lockPref("
):
prefs+=1
print(prefs)
it says we have 195 prefs in our config file