Skip to content

Instantly share code, notes, and snippets.

@ihommani
ihommani / wsl2-with-1password-info.md
Created September 24, 2023 12:29 — forked from WillianTomaz/wsl2-with-1password-info.md
Instructions for using 1Password SSH Agent with WSL2 (on Windows 11)

Saturday, April 22, 2023

How to Use 1Password SSH Agent with WSL2 (on Windows 11)

  • Note:

    • Always look for the official documentation, this tutorial may not suit you as there are new updates to the installation process.
    • References are at the end of the document.
  • Was used:

    • Windows 11 (x64)
    • WSL 2 (Ubuntu 22.04.2 LTS)

tmux cheatsheet

As configured in my dotfiles.

start new:

tmux

start new with session name:

@ihommani
ihommani / xn
Last active December 18, 2015 23:59 — forked from fbiville/xn
#!/bin/zsh
source ~/.zshrc;
if [[ -z $1 ]]; then
echo "ERROR: specify a nonempty command"
else
eval $@ && notify-send "`pwd`: $1 finished"
fi