Skip to content

Instantly share code, notes, and snippets.

@asunix
asunix / markdown-details-collapsible.md
Created October 3, 2025 07:20 — forked from pierrejoubert73/markdown-details-collapsible.md
How to add a collapsible section in markdown.

How to add a collapsible section in markdown

1. Example

Click me

Heading

  1. Foo
  2. Bar
    • Baz
  • Qux
@asunix
asunix / tmuxinator
Created September 7, 2022 14:20
Template for tmux pane title
# /Users//.config/tmuxinator/podman_cics.yml
name: podman_cics
root: ~/
on_project_exit: tmux attach
attach: false
windows:
#!/usr/bin/env bash
check_is_sudo() {
if [ "$EUID" -ne 0 ]; then
echo "Please run as root."
exit
fi
}
checkVPN() {