- Encrypted root partition
- AES-256 bit cipher
- Argon2id variant for PBKDF
- Sha3-512 bit hash
- rEFInd bootloader
- With dreary theme
- Optimal Settings (optimized for aesthetics, and boot time)
- Boot into backups thanks to refind-btrfs
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 | |
| # SPDX-License-Identifier: GPL-2.0-only | |
| import sys | |
| import argparse | |
| import pathlib | |
| import shlex | |
| import re | |
| import json | |
| from copy import deepcopy |
This guide shows how to import into pass your passwords stored in Apple's Keychain Access.
The default kaychain file is ~/Library/Keychains/login.keychain.
Passwords under the "Local Items" keychain (the default since Mavericks to sync with iCloud) use a different file format and can not be exported via the Apple's security tool we use. If that is you case, create a new keychain and drag-and-drop the keys. Your new keychain should have the .keychain extension.
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
| #!/bin/sh | |
| # in case it's already installled | |
| vagrant plugin uninstall vagrant-libvirt | |
| # vagrant's copy of curl prevents the proper installation of ruby-libvirt | |
| sudo mv /opt/vagrant/embedded/lib/libcurl.so{,.backup} | |
| sudo mv /opt/vagrant/embedded/lib/libcurl.so.4{,.backup} | |
| sudo mv /opt/vagrant/embedded/lib/libcurl.so.4.4.0{,.backup} | |
| sudo mv /opt/vagrant/embedded/lib/pkgconfig/libcurl.pc{,.backup} |