Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

librewolf browser support #379

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ User of eCryptFS are encouraged not to use psd unless willing to help troublesho
* Icecat (GNU version of Firefox)
* Iceweasel (Debian version of Firefox)
* Inox (https://bbs.archlinux.org/viewtopic.php?id=198763)
* Librewolf (https://librewolf.net/)
* Luakit
* Midori
* Opera, Opera-Beta, Opera-Developer, and Opera-Legacy
Expand Down
15 changes: 15 additions & 0 deletions common/browsers/librewolf
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
if [[ -d "$HOME"/.librewolf ]]; then
index=0
PSNAME="$browser"
while read -r profileItem; do
if [[ $(echo "$profileItem" | cut -c1) = "/" ]]; then
# path is not relative
DIRArr[$index]="$profileItem"
else
DIRArr[$index]="$HOME/.librewolf/$profileItem"
fi
(( index=index+1 ))
done < <(grep '[Pp]'ath= "$HOME"/.librewolf/profiles.ini | sed 's/[Pp]ath=//')
fi

check_suffix=1
1 change: 1 addition & 0 deletions common/psd.conf
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
# heftig-aurora
# icecat
# inox
# librewolf
# luakit
# midori
# opera
Expand Down