Skip to content

Instantly share code, notes, and snippets.

@helshabini
helshabini / tmux.conf
Created December 30, 2024 04:28
Tmux config
unbind r
bind r source-file ~/.config/tmux/tmux.conf
# enable vim mode
setw -g mode-keys vi
# enable mouse
set -g mouse on
# Address vim mode switching delay (http://superuser.com/a/252717/65504)
@helshabini
helshabini / certs.sh
Created September 23, 2024 05:08
Create Self-Signed Root CA and Server/Client Certs
#!/bin/bash
set -e
ROOTCN="Self-Signed Root CA"
ROOTO="Company"
ROOTC="US"
ROOTST="NY"
ROOTL="NY"
SERVERO="Server"