- 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
| #!/bin/bash | |
| # set -x | |
| print_usage() { | |
| echo "$0 [--map=0:3] video_file" >&2 | |
| echo "" >&2 | |
| echo "With video_file the path to a file like mkv which embeds the subtitles" >&2 | |
| echo "--map: use the specified embedded subtitle." >&2 | |
| echo "" >&2 |
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
| # βββββββ ββββββββββββ ββββ βββββββ βββ βββββββββββ βββ ββββββββββ | |
| # βββββββββββββββββββββ βββββββββββββββββ βββββββββββ βββ βββββββββββ | |
| # ββββββββββββββ ββββββββββββββ ββββββ βββββββββ ββββββββββββββββ | |
| # ββββββββββββββ ββββββββββββββ βββββββ ββββββββββ βββββββββββββββ | |
| # βββ ββββββββββββββ βββ ββββββββββββ βββββββ ββββββββ βββ ββββββ | |
| # βββ ββββββββββββββ βββ βββββββ βββββ ββββββββ βββ ββββββ | |
| # | |
| # βββββββ βββ βββββββ ββββββ ββββββββββββ βββ ββββββ βββββββ ββββββββ | |
| # βββββββββββ βββββββββββββββββββββββββββββ βββββββββββββββββββββββββββ | |
| # βββββββββββ βββ βββββββββββ βββ βββ ββ βββββββββββββββββββββββββ |
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
| /** | |
| * The ASCII arts were extracted from: | |
| * - http://www.fiikus.net/?pokedex | |
| * - http://www.world-of-nintendo.com/pictures/text/ | |
| * And also generated with: | |
| * - http://www.text-image.com | |
| */ | |
| #ifndef __POKE_IMG__ | |
| #define __POKE_IMG__ |
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 bash | |
| # | |
| # This is sp, the command-line Spotify controller. It talks to a running | |
| # instance of the Spotify Linux client over dbus, providing an interface not | |
| # unlike mpc. | |
| # | |
| # Put differently, it allows you to control Spotify without leaving the comfort | |
| # of your command line, and without a custom client or Premium subscription. | |
| # |