Run osxForHackers.sh
System Preferences
- General
- Highlight color: Graphite
- Recent items: 50
- Mission Control
- All Hot Croners: Shift + Desktop
- Security & Privacy
- Turn on FileVault
| # Check disk space before | |
| df -h | |
| # Delete local-lvm storage in gui | |
| lvremove /dev/pve/data | |
| lvresize -l +100%FREE /dev/pve/root | |
| resize2fs /dev/mapper/pve-root |
| /* | |
| * usage | |
| * node runner.js | ffmpeg -y -c:v png -f image2pipe -r 30 -i - -c:v libx264 -pix_fmt yuv420p -movflags +faststart output.mp4 | |
| * | |
| */ | |
| const { chromium } = require('playwright'); | |
| const WIDTH = 1920; | |
| const HEIGHT = 1080; | |
| const URL = 'URL_GOES_HERE'; |