| Value | Color |
|---|---|
| \e[0;30m | Black |
| \e[0;31m | Red |
| \e[0;32m | Green |
| \e[0;33m | Yellow |
| \e[0;34m | Blue |
| \e[0;35m | Purple |
This file contains hidden or 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
| #!/usr/bin/env python3 | |
| # NOTE: This is only useful until Meson 0.38.0 which includes an `uninstall` target. | |
| import argparse | |
| from contextlib import suppress | |
| from os import path, remove | |
| parser = argparse.ArgumentParser() | |
| parser.add_argument('--dry-run', action='store_true') |
- Download latest Manjaro Architect iso
- Burn the iso to a usb following the steps from the Manjaro wiki
- On Lenovo BIOS
- Disable Secure boot
- Set USB boot configuration on UEFI only.
- Save changes and press F12 to choose from boot menu.
- On Manjaro GRUB menu, add the
ivrs_ioapic[32]=00:14.0grub parameter. Source
loglevel=3 iommu=pt acpi_backlight=native
iommu=ptSolves sudden freeze of graphics Arch Forum Linkacpi_backlight=nativeSolves back light "failed" message during boot Arch Wiki- Use it with other params e.g.
loglevel=3 iommu=pt acpi_backlight=native apparmor=1 security=apparmor quiet
adb is the Android CLI tool with which you can interact with your android device, from your PC
You must enable developer mode (tap 7 times on the build version in parameters) and install adb on your PC.
Don't hesitate to read comments, there is useful tips, thanks guys for this !
This file contains hidden or 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
| const fs = require('fs'); | |
| const cp = require('child_process'); | |
| const util = require('util'); | |
| const path = require('path'); | |
| const exec = util.promisify(cp.exec); | |
| const writeFile = util.promisify(fs.writeFile); | |
| const prettierConfigVscode = { | |
| 'editor.codeActionsOnSave': { |