-
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.)
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
# Use environment variables to get the current user's AppData folder | |
$StartupFolder = [Environment]::GetFolderPath('Startup') | |
$FilePath = Join-Path -Path $StartupFolder -ChildPath "kinput.ahk" | |
# Create the AutoHotkey v2 script content | |
$ScriptContent = 'CapsLock::Send("{Alt Down}{Shift Down}{Shift Up}{Alt Up}")' | |
# Write the content to the file | |
Set-Content -Path $FilePath -Value $ScriptContent -Force |
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
{ | |
inputs = { | |
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; | |
flake-utils.url = "github:numtide/flake-utils"; | |
}; | |
outputs = { self, nixpkgs, flake-utils }: | |
flake-utils.lib.eachDefaultSystem | |
(system: | |
let | |
pkgs = import nixpkgs { |
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 |
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 |
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" | |
}, |
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 |
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 |
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 |
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 |
NewerOlder