| Action | Shortcut |
|---|---|
| Scroll line up | ctrl+shift+up (also ⌥+⌘+⇞ and ⌘+↑ on macOS) |
| Scroll line down | ctrl+shift+down (also ⌥+⌘+⇟ and ⌘+↓ on macOS) |
| Scroll page up | ctrl+shift+page_up (also ⌘+⇞ on macOS) |
| Scroll page down | ctrl+shift+page_down (also ⌘+⇟ on macOS) |
| devices: ( | |
| { | |
| name: "Wireless Mouse MX Master 3"; | |
| smartshift: | |
| { | |
| on: true; | |
| threshold: 10; | |
| torque: 50; | |
| }; | |
| hiresscroll: |
Yes, you can reboot directly from Ubuntu into your computer's UEFI interface without holding down any keyboard buttons. Here's how you can do it:
-
Open a terminal window.
-
Type the following command and press Enter:
sudo systemctl reboot --firmware-setup
Follow these instructions for an easy way to get up and going quickly! These are complete instructions, and will be the easiest way to get started on a new RG35XX.
Get a high quality SD (e.g. SanDisk Extreme) card, 128GB or larger, 256GB is recommended. Don't skimp here, they're cheap, and don't use the card that comes with the RG35XX as it's crap.
Source: https://it.digitaino.com/use-touchid-to-authenticate-sudo-on-macos/
- Run
sudo micro /etc/pam.d/sudo - Add
auth sufficient pam_tid.sobelowauth sufficient pam_smartcard.so, so that the file looks like this:
# sudo: auth account password session
auth sufficient pam_smartcard.so
auth sufficient pam_tid.so
auth required pam_opendirectory.so
This serves as a quick reference and showcase of GitHub Flavored Markdown. For more complete info, see John Gruber's original spec and the Github-flavored Markdown info page.
- Create a new virtual machine.
- Go to System tab, change architecture to `ARM64 (aarch64)' and increase memory as needed.
- Download Alpine Linux LiveCD:
mirror=https://dl-cdn.alpinelinux.org/alpine
curl -o alpine-virt-latest-aarch64.iso "$mirror/latest-stable/releases/aarch64/$(curl "$mirror/latest-stable/releases/aarch64/latest-releases.yaml" | /usr/bin/grep -E 'file: alpine-virt-[0-9\.]+-aarch64\.iso' | head -n 1 | sed 's/ //g' | sed 's/\t//g' | sed 's/^file://')"
- Go to Drives tab, New Drive, set size to 20GiB or larger, then Inport Drive, choose the file you just downloaded.
| /* Common Lighting, by Color Temp */ | |
| $white-2850k: rgb(255,214,170); | |
| $white-3250k: rgb(255,241,224); | |
| /* Drop CTRL Teal→Salmon Colors */ | |
| /* https://github.com/willwm/layouts-ctrl */ | |
| $ctrl-teal: rgb(24,215,204); | |
| $ctrl-salmon: rgb(255,114,118); |
https://www.nerdfonts.com/font-downloads
The following solution thanks to @hackerzgz & @snacky101 will install all nerd fonts;
brew tap homebrew/cask-fonts
brew search '/font-.*-nerd-font/' | awk '{ print $1 }' | xargs -I{} brew install --cask {} || true