Productivity Tools

Overview

Beyond core commands, these productivity tools make daily work faster and more secure.

In This Section

Topic Description

Git Operations

Multi-remote workflows, deployment triggers, heredoc commits, and version control patterns.

gopass

GPG-encrypted password manager with git backend. Secure credential storage and retrieval.

domus-scripts

Utility scripts for managing domus-* repositories (push-all, status, deploy).

Future Topics

This section will expand to include:

  • age - Modern encryption tool (simpler than GPG)

  • tmux - Terminal multiplexer

  • fzf - Fuzzy finder for everything

  • jq/yq - JSON/YAML processing

  • direnv - Per-directory environment variables

gopass Quick Reference

# List entries
gopass ls

# Show password (copy to clipboard)
gopass show -c path/to/secret

# Generate new password
gopass generate path/to/secret 32

# Insert with heredoc
gopass insert path/to/meta << 'EOF'
hostname: server01
ip: 10.50.1.10
EOF

# Sync with remote
gopass sync