generated from ublue-os/image-template
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: replace x86_64-only Flatpaks with amd64 alternatives (#215)
I'm not too sure how the overrides work, so please give this a good review :) This replaces Firefox with Chromium (the next best option for a browser). And removes Thunderbird, since it's not really needed when you have a browser. --------- Co-authored-by: Tulip Blossom <[email protected]>
- Loading branch information
1 parent
4daff01
commit 80fdcf0
Showing
3 changed files
with
37 additions
and
18 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
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
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,12 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -xeuo pipefail | ||
|
||
# Bucket list again, this needs to be fixed upstream! | ||
|
||
TARGET_FLATPAK_FILE="/etc/ublue-os/system-flatpaks.list" | ||
|
||
sed -i "/org\.mozilla.*/d" "$TARGET_FLATPAK_FILE" | ||
echo "org.chromium.Chromium" >> "$TARGET_FLATPAK_FILE" | ||
|
||
sed -i "s/org.mozilla.Firefox/org.chromium.Chromium/g" /usr/share/glib-2.0/schemas/zz0-bluefin-modifications.gschema.override |