Skip to content
Open
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
13 changes: 13 additions & 0 deletions install.go
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,12 @@ func install(developer bool) error {
),
`root`: `/usr/lib/mozilla/native-messaging-hosts`,
},
`librewolf`: {
def: filepath.Join(
u.HomeDir, `.librewolf`, `native-messaging-hosts`,
),
`root`: `/usr/lib/mozilla/native-messaging-hosts`,
},
},
`darwin`: {
def: {
Expand Down Expand Up @@ -207,6 +213,12 @@ func install(developer bool) error {
),
`root`: `/Library/Application Support/Mozilla/NativeMessagingHosts`,
},
`librewolf`: {
def: filepath.Join(
u.HomeDir, `Library`, `Application Support`, `Mozilla`, `NativeMessagingHosts`,
),
`root`: `/Library/Application Support/Mozilla/NativeMessagingHosts`,
},
},
}

Expand All @@ -216,6 +228,7 @@ func install(developer bool) error {
menu.AddMenuItem(`Brave`, `brave`)
menu.AddMenuItem(`Vivaldi`, `vivaldi`)
menu.AddMenuItem(`Firefox`, `firefox`)
menu.AddMenuItem(`LibreWolf`, `libreWolf`)
menu.AddMenuItem(`Custom`, `custom`)

var (
Expand Down