-
Notifications
You must be signed in to change notification settings - Fork 208
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
61 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Botspot |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Privacy-focused browser based on Firefox | ||
Zen Browser has side tabs by default and is very customizeable if you know a bit of CSS, or are willing to find someone else's mod files. It is said to run fast, and is competely open-source and takes design elements from Arc Browser. | ||
|
||
To run: Menu -> Internet -> Zen Browser | ||
To run in a terminal: zen-browser |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
#!/bin/bash | ||
|
||
#this script will need some updates once this browser is officially released on ARM64. | ||
#monitor progress on: https://github.com/zen-browser/desktop/pull/3135 | ||
|
||
version='1.0.1-a.19' | ||
|
||
sudo rm -rf /opt/zen /opt/zen-browser /tmp/zen-browser-arm64-copr | ||
|
||
cd /tmp | ||
wget https://github.com/ArchitektApx/zen-browser-arm64-copr/releases/download/${version}/zen.linux-generic.tar.bz2 || exit 1 | ||
|
||
status -n "Extracting... " | ||
sudo tar xjf zen.linux-generic.tar.bz2 -C /opt || error "Failed to extract" | ||
status_green Done | ||
|
||
rm -f zen.linux-generic.tar.bz2 | ||
|
||
sudo mv /opt/zen /opt/zen-browser | ||
|
||
git clone --depth 1 https://github.com/ArchitektApx/zen-browser-arm64-copr || exit 1 | ||
|
||
#fix app_id to get taskbar icon working on wayland | ||
sed -i 's+exec /opt/zen-browser/zen-bin+exec /opt/zen-browser/zen-bin --class zen-browser --name zen-browser+g' zen-browser-arm64-copr/zen-browser || error "failed to edit launcher file" | ||
|
||
sudo mv -f zen-browser-arm64-copr/zen-browser /usr/bin/zen-browser || error "Failed to move zen-browser command" | ||
sudo chmod +x /usr/bin/zen-browser | ||
|
||
#copy menu launcher | ||
sudo mv -f zen-browser-arm64-copr/zen-browser.desktop /usr/share/applications || error "Failed to move menu launcher file" | ||
|
||
#disables update notifications | ||
sudo mkdir -p /opt/zen-browser/distribution | ||
sudo mv -f zen-browser-arm64-copr/policies.json /opt/zen-browser/distribution || error "Failed to move policies.json file" | ||
#no need for the git repo anymore | ||
rm -rf zen-browser-arm64-copr | ||
|
||
#copy icons | ||
for i in 16x16 32x32 48x48 64x64 128x128; do | ||
sudo mkdir -p /usr/share/icons/hicolor/$i/apps/ | ||
sudo cp /opt/zen-browser/browser/chrome/icons/default/default${i/x*}.png /usr/share/icons/hicolor/$i/apps/zen-browser.png || error "Failed to copy $i icon" | ||
done | ||
|
||
sudo update-icon-caches /usr/share/icons/* | ||
sudo xdg-icon-resource forceupdate --mode system | ||
true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/bin/bash | ||
|
||
sudo rm -rf /opt/zen-browser /usr/share/applications/zen-browser.desktop | ||
|
||
for i in 16x16 32x32 48x48 64x64 128x128; do | ||
sudo rm -f /usr/share/icons/hicolor/$i/apps/zen-browser.png | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
https://zen-browser.app/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters