This guide will walk you through setting up Cloudflared on your system.
You need to have administrative (doas) access to your system.
Add nano editor using:
doas apk update && doas apk add nano
Some notes, tools, and techniques for reverse engineering macOS binaries.
All credit to this thread for figuring out how to do this, I'm just documenting it more thoroughly.
Tested on Nova Air C with firmware 3.5 (2023-11-20).
Handwriting optimisation makes the pen usable in apps installed from the play store. By default it's only available for OneNote, Evernote and WPS -- they have a 'handwriting' tab in the optimisation settings, other apps don't -- but can be enabled for any app by editing the file /onyxconfig/eac_config as root.
Note: whenever you edit eac_config, you have to reboot the device for the changes to take effect. Just restarting the app isn't enough.
| // ==UserScript== | |
| // @name noVNC Paste for Proxmox | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.2a | |
| // @description Pastes text into a noVNC window (for use with Proxmox specifically) | |
| // @author Chester Enright | |
| // @match https://* | |
| // @include /^.*novnc.*/ | |
| // @require http://code.jquery.com/jquery-3.3.1.min.js | |
| // @grant none |
| #!/bin/bash | |
| #edit these to your config | |
| BWDIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null 2>&1 && pwd)" | |
| DATETIME="$(date +'%Y-%m-%d_%H-%M-%S')" | |
| FOLDERPATH="$(date +'%Y-%m-%d')" | |
| GZFILE=bitwarden-${DATETIME}.tar.gz | |
| #change working dir to /tmp | |
| cd /tmp/ |
Install a working (and compiled) version of virt-viewer. You may view the homebrew package's upstream source on GitHub.
brew tap jeffreywildman/homebrew-virt-manager
brew install virt-viewerOnce that's installed should be able make a call remote-viewer with a pve-spice.vv file downloaded from proxmox web interface
| deb http://archive.ubuntu.com/ubuntu/ focal main restricted universe multiverse | |
| deb-src http://archive.ubuntu.com/ubuntu/ focal main restricted universe multiverse | |
| deb http://archive.ubuntu.com/ubuntu/ focal-updates main restricted universe multiverse | |
| deb-src http://archive.ubuntu.com/ubuntu/ focal-updates main restricted universe multiverse | |
| deb http://archive.ubuntu.com/ubuntu/ focal-security main restricted universe multiverse | |
| deb-src http://archive.ubuntu.com/ubuntu/ focal-security main restricted universe multiverse | |
| deb http://archive.ubuntu.com/ubuntu/ focal-backports main restricted universe multiverse |
| #!/bin/sh | |
| if pwd | grep /mnt/c > /dev/null; then | |
| exec git.exe "$@" | |
| else | |
| exec /usr/bin/git "$@" | |
| fi |