Last Updated: 2021-06-27
Tested on Fedora 34 (5.12.12-300.fc34.x86_64)
First, add the RPM Fusion repositories:
| #!/usr/bin/env bash | |
| # This script will install Cutie or Phosh on a device | |
| # already running Droidian. This is an alternative to | |
| # using one of the Cutie Droidian images that need to | |
| # be flashed. | |
| # Use at your own risk, odds are it will break things. | |
| # Authors: Kabouik (@bouic), Erik (@eriki73) | |
| # https://t.me/CutieShellProject |
| if (!window.OffscreenCanvas) { | |
| window.OffscreenCanvas = class OffscreenCanvas { | |
| constructor(width, height) { | |
| this.canvas = document.createElement("canvas"); | |
| this.canvas.width = width; | |
| this.canvas.height = height; | |
| this.canvas.convertToBlob = () => { | |
| return new Promise(resolve => { | |
| this.canvas.toBlob(resolve); |