-
Kinesis Freestyle (Terrible key switches. Mushy and un-lovable)
-
Kinesis Freestyle Edge (Traditional layout with too many keys, mech switches, proably too big to be tented easily/properly)
-
Matias Ergo Pro (Looks pretty great. Have not tried.)
-
ErgoDox Kit (Currently, my everyday keyboard. Can buy pre-assembled on eBay.)
-
ErgoDox EZ (Prolly the best option for most people.)
View notes.sh
This file contains 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
mkpart primary 2048s 100% | |
cryptsetup luksFormat /dev/nvme1n1p1 | |
cryptsetup luksOpen /dev/nvme1n1p1 crypted | |
mkfs.fat -F 32 -n boot /dev/nvme0n1p2 | |
mount /dev/disk/by-label/root /mnt | |
mkdir -p /mnt/boot | |
mount /dev/nvme0n1p2 /mnt/boot |
View mac.sh
This file contains 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
# Specify the preferences directory | |
defaults write com.googlecode.iterm2 PrefsCustomFolder -string "~/.iterm2" | |
# Tell iTerm2 to use the custom preferences in the directory | |
defaults write com.googlecode.iterm2 LoadPrefsFromCustomFolder -bool true |
View split_keyboards.md
View alacritty.yaml
This file contains 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
{ | |
"colors": { | |
"primary": { | |
"background": "#000000" | |
} | |
}, | |
"font": { | |
"bold": { | |
"family": "Hack Nerd Font Mono" | |
}, |
View ubuntu.sh
This file contains 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
# Ubuntu 20.10 and newer | |
sudo apt-get -y update | |
sudo apt-get -y install podman neovim sysstat | |
# Ubuntu 22.04 | |
cat <<EOF >/etc/apt/sources.list.d/ubuntu-$(lsb_release -cs)-proposed.list | |
# Enable Ubuntu proposed archive | |
deb http://archive.ubuntu.com/ubuntu/ $(lsb_release -cs)-proposed restricted main multiverse universe | |
EOF |
View tmux.nix
This file contains 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
".config/tmuxinator/default.yml" = { | |
text = '' | |
name: default | |
startup_window: 1 | |
root: ~/Sources/github.com/elastio | |
windows: | |
- work-editor: | |
panes: | |
- nvim |
View proxy.sh
This file contains 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
export http_proxy | |
export https_proxy | |
export ftp_prox | |
export no_proxy | |
export HTTPS_PROXY | |
export HTTPS_PROXY | |
export FTP_PROX | |
export NO_PROXY |
View setup-server-for-db1000n.sh
This file contains 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
apt update | |
apt install htop -y | |
apt install dnsutils -y | |
apt install docker -y | |
apt install jq -y | |
apt install kubetail -y | |
apt install neovim -y | |
apt install tmux -y | |
curl -sfL https://get.k3s.io | sh - | |
curl -sS https://webinstall.dev/k9s | bash |
View default.toml
This file contains 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
order = ["cpu_load", "network", "battery", "audio", "time"] | |
separator = " · " | |
[audio] | |
control = "Master" | |
mute = "MUTE" | |
template = "{ICO} {VOL}%" | |
icons = ["奄", "奔", "墳"] | |
[battery] |
View neovim.md
Replace recursively
:args `rg Neovim -l`
:argdo %s/Neovim/Nvim/ge | update
Replace visual selection
NewerOlder