Skip to content

Commit

Permalink
Add support for more browsers
Browse files Browse the repository at this point in the history
Chromium-based:
- SlimJet
- Dissenter-Browser

Firefox-based:
- IceCat
- WaterFox
  • Loading branch information
plonibarploni committed Jul 1, 2020
1 parent f542505 commit f54f25b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
5 changes: 5 additions & 0 deletions Linux/lazagne/softwares/browsers/chrome.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,11 @@ def run(self):
(u'Google Chrome', u'.config/google-chrome'),
(u'Chromium', u'.config/chromium'),
(u'Brave', u'.config/BraveSoftware/Brave-Browser'),
(u'SlimJet', u'.config/slimjet'),
(u'Dissenter Browser', u'.config/GabAI/Dissenter-Browser'),
# (u'SuperBird', u'.config/superbird'), # FIXME
# (u'Vivaldi', u'.config/vivaldi'), # FIXME returns bytes
# (u'Whale', u'.config/naver-whale'), # FIXME returns bytes
]

chrome_browsers = [Chrome(browser_name=name, path=path) for name, path in chrome_browsers]
9 changes: 3 additions & 6 deletions Linux/lazagne/softwares/browsers/mozilla.py
Original file line number Diff line number Diff line change
Expand Up @@ -551,12 +551,9 @@ def run(self):
# Name, path
firefox_browsers = [
(u'firefox', u'.mozilla/firefox'),
# Check these paths on Linux systems
# (u'blackHawk', u'{APPDATA}\\NETGATE Technologies\\BlackHawk'),
# (u'cyberfox', u'{APPDATA}\\8pecxstudios\\Cyberfox'),
# (u'comodo icedragon', u'{APPDATA}\\Comodo\\IceDragon'),
# (u'k-meleon', u'{APPDATA}\\K-Meleon'),
# (u'icecat', u'{APPDATA}\\Mozilla\\icecat'),
(u'icecat', u'.mozilla/icecat'),
(u'waterfox', u'.waterfox'),
# (u'Pale Moon', u'.moonchild productions/pale moon'), FIXME
]

firefox_browsers = [Mozilla(browser_name=name, path=path) for name, path in firefox_browsers]

0 comments on commit f54f25b

Please sign in to comment.