- 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
| /* | |
| Copyright (c) 2025 Andrei Shikov | |
| Permission is hereby granted, free of charge, to any person obtaining a copy | |
| of this software and associated documentation files (the "Software"), to deal | |
| in the Software without restriction, including without limitation the rights | |
| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| copies of the Software, and to permit persons to whom the Software is | |
| furnished to do so, subject to the following conditions: |
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 is written in HOCON (Human-Optimized Config Object Notation) format. | |
| # For more information about HOCON see | |
| # https://github.com/lightbend/config/blob/master/HOCON.md | |
| bindings { | |
| b { | |
| description: Buffer/Tabs Navigation... | |
| bindings { | |
| b {actionId: RecentFiles, description: Recent Files} | |
| B {actionId: RecentChangedFiles, description: Recent Changed Files} |
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
| apply plugin: 'com.android.application' | |
| android.applicationVariants.all { variant -> | |
| task "copyDependencies${variant.name.capitalize()}"() { | |
| outputs.upToDateWhen { false } | |
| doLast { | |
| println "Executing copyDependencies${variant.name.capitalize()}" | |
| variant.getCompileClasspath().each { fileDependency -> | |
| def sourcePath = fileDependency.absolutePath | |
| def destinationPath = project.projectDir.path + "/build/dependencies/${variant.name}/" |