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

Raspberry pi compatibility #227

Open
wants to merge 9 commits into
base: master
Choose a base branch
from

Conversation

IbrahimTanyalcin
Copy link

@IbrahimTanyalcin IbrahimTanyalcin commented Jul 22, 2024

I wanted to try Omakub in my raspberry pi5, however ran into premature termination of the script in multiple places. These modifications should not change anything for amd64 but allow installation of most of the apps in raspberry. In the end I was able to have all the good bits working except these:

  • chrome (I think chrome is not possible to be installed in arm64 yet anyway. )
  • signal
  • spoftify
  • zoom
  • dropbox

So I finally was able to try Omakub like in the introductin video, and it is really cool! Window tiles and shortcuts are great!

Here are the changes:

  • added a utils.sh to deal with vendor imcompatibilities when naming architechtures amd64 vs x86_64, aarch64 vs arm64 etc. dpkg --print-architechture is not enough to deal with all the incosistencies so there is an extendable arch_config variable for future apps.
  • in raspberry, XDG_CURRENT_DESKTOP is not only GNOME but ubuntu:GNOME, so made some changes to deal with possible variations without breaking current behavior
  • since chrome is not possible in arm64, I added Brave to the optional apps that gum asks during installation.
  • removed all hardcoded mentions of amd64 and x86_64 and replaced them with output of get_arch, the output defaults to lscpu's values but can be customized based on app by adding keys to arch_config array in utils.sh
  • sourcing installers are moved to if conditionals which do not trigger set -e (I undestand the intention of putting set -e but when something goes wrong you are left with a broken install anyway). So if one of the apps fail, the parent script will continue unless there is something else in the parent script that triggers set -e, that behavior is left unchanged. The failed apps are reported in a formated way inside the root folder called omakub_report.log.
  • add reporters in utils.sh called handle_omakub_source_error and handle_omakub_source_success which are used by print_omakub_report | tee ~/.local/share/omakub/omakub_report.log, this will list all the successful and failed ones. Currently in rasberry pi 5, I only had 5 failed which some of them do not have arm64 releases.

These changes should not introduce any breaking changes or modifications for amd64 but will allow people to install and give Omakub a try in their arm64 devices and track what failed or not down the line.

*** Please test this in your amd64 machines and verify I did not accidentally introduced breaking changes. ***

@rmacklin
Copy link
Contributor

rmacklin commented Jul 27, 2024

Hey @IbrahimTanyalcin can you rebase off the latest master, which includes some changes to make testing unmerged PRs easier?

@IbrahimTanyalcin
Copy link
Author

@rmacklin Thanks for letting me know, I've rebased, there were no merge conflicts.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants