- 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
| general { | |
| layout = hy3 | |
| } | |
| plugin { | |
| hy3 { | |
| tabs { | |
| height = 6 | |
| padding = 4 | |
| render_text = false |
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
| set $cursor_size 54 | |
| ``` | |
| # GTK | |
| # This is the only place where you must set GTK scaling | |
| set $gnome-schema org.gnome.desktop.interface | |
| exec_always { | |
| gsettings set $gnome-schema gtk-theme 'Matcha-dark-sea' | |
| gsettings set $gnome-schema icon-theme 'Numix-Square' | |
| gsettings set org.gnome.desktop.interface text-scaling-factor 2.73 |
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
| /* | |
| It's now a package. You can find it here: | |
| https://github.com/joshnuss/svelte-local-storage-store | |
| */ | |
| // Svelte store backed by window.localStorage | |
| // Persists store's data locally |
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
| Andorra | AD | |
|---|---|---|
| United Arab Emirates | AE | |
| Afghanistan | AF | |
| Antigua and Barbuda | AG | |
| Anguilla | AI | |
| Albania | AL | |
| Armenia | AM | |
| Angola | AO | |
| Antarctica | AQ | |
| Argentina | AR |
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 | |
| import sys | |
| import json | |
| import subprocess | |
| direction=bool(sys.argv[1] == 't' or sys.argv[1] == 'T') | |
| swaymsg = subprocess.run(['swaymsg', '-t', 'get_tree'], stdout=subprocess.PIPE) | |
| data = json.loads(swaymsg.stdout) | |
| current = data["nodes"][1]["current_workspace"] |
- Use
curlto get the JSON response for the latest release - Use
grepto find the line containing file URL - Use
cutandtrto extract the URL - Use
wgetto download it
curl -s https://api.github.com/repos/jgm/pandoc/releases/latest \
| grep "browser_download_url.*deb" \
| cut -d : -f 2,3 \
| tr -d \" \
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 python | |
| # based on cb-exit used in CrunchBang Linux <http://crunchbanglinux.org/> | |
| import pygtk | |
| pygtk.require('2.0') | |
| import gtk | |
| import os | |
| import getpass |
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
| -- Remove the history from | |
| rm -rf .git | |
| -- recreate the repos from the current content only | |
| git init | |
| git add . | |
| git commit -m "Initial commit" | |
| -- push to the github remote repos ensuring you overwrite history | |
| git remote add origin git@github.com:<YOUR ACCOUNT>/<YOUR REPOS>.git |