dd bs=4M if=/path/to/archlinux.iso of=/dev/sdx status=progress && sync
timedatectl set-ntp true
# ~/.config/i3/config | |
# This file has been auto-generated by i3-config-wizard(1). | |
# It will not be overwritten, so edit it as you like. | |
# | |
# Should you change your keyboard layout some time, delete | |
# this file and re-run i3-config-wizard(1). | |
# | |
# i3 config file (v4) |
[ | |
{ | |
"key": "ctrl+shift+tab", | |
"command": "workbench.action.previousEditor" | |
}, | |
{ | |
"key": "ctrl+tab", | |
"command": "workbench.action.nextEditor" | |
} | |
] |
function bind_enter | |
set -l lastline $history[1] | |
set -l cmdline (commandline) | |
if test -z (string trim "$cmdline") | |
commandline -r $lastline | |
commandline -f execute | |
else | |
commandline -f execute | |
end | |
end |
I hereby claim:
To claim this, I am signing this object:
{ | |
"bracketSpacing": true, | |
"semi": false, | |
"singleQuote": true, | |
"trailingComma": "all", | |
"arrowParens": "always", | |
"tabWidth": 2, | |
"useTabs": false | |
} |
just some notes on some research i've been doing as an application developer looking to better understand crypto libraries and cipher suites
with a focus on noise protocol
noise adds additional higher-level constructs to common ciphers used in other cipher suites that are useful for transport encryption (replacing openssl more than libsodium)
# Configuration for Alacritty, the GPU enhanced terminal emulator. | |
# Any items in the `env` entry below will be added as | |
# environment variables. Some entries may override variables | |
# set by alacritty itself. | |
#env: | |
# TERM variable | |
# | |
# This value is used to set the `$TERM` environment variable for | |
# each instance of Alacritty. If it is not present, alacritty will |
# ~/.config/starship.toml | |
[battery] | |
full_symbol = "🔋" | |
charging_symbol = "🔌" | |
discharging_symbol = "⚡" | |
[[battery.display]] | |
threshold = 30 | |
style = "bold red" |