# C Display

> Control display brightness and safely move files to trash instead of permanently deleting with rm.

- Skill: `daxaur/c-display` (Agent Skill)
- Install (CLI): `npx skillmds@latest add daxaur/c-display`
- Raw SKILL.md: https://api.skillmd.com/api/skills/daxaur/c-display/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: daxaur (https://skillmd.com/u/daxaur)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/daxaur/c-display

---


# Display & Safety

## brightness

```bash
# Get current brightness (0.0 to 1.0)
brightness -l

# Set brightness to 80%
brightness 0.8

# Set brightness to minimum
brightness 0.0

# Set brightness to maximum
brightness 1.0
```

## trash (macos-trash)

Safe alternative to `rm` — moves files to macOS Trash:

```bash
# Move file to trash
trash file.txt

# Move multiple files
trash file1.txt file2.txt dir/

# Move with confirmation prompt
trash --interactive file.txt
```

## Guidelines

- Use `trash` instead of `rm` when the user might want to recover files
- Use `rm` only for temporary/generated files where recovery isn't needed
- Brightness value is 0.0 (off) to 1.0 (max)
- `brightness -l` lists all displays when multiple monitors connected

