---
name: Display & Safety
slug: display-safety
category: Automation
description: Display & Safety controls screen brightness and moves files to the macOS Trash instead of deleting them permanently. Use it for display adjustments and safer file cleanup.
github: "https://github.com/daxaur/openpaw/tree/main/skills/c-display"
language: TypeScript
stars: 167
forks: 11
install: "npx degit https://github.com/daxaur/openpaw/tree/main/skills/c-display ~/.claude/skills/c-display"
installs_to: ~/.claude/skills/c-display
source_path: skills/c-display/SKILL.md
collection_size: 25
category_size: 2226
collection_url: "https://dirskills.com/collections/daxaur/openpaw"
added: 2026-09-08T05:34:30.013Z
last_synced: 2026-09-08T05:34:30.013Z
canonical_url: "https://dirskills.com/skills/display-safety"
---

# Display & Safety

Display & Safety controls screen brightness and moves files to the macOS Trash instead of deleting them permanently. Use it for display adjustments and safer file cleanup.

**Install:**

```bash
npx degit https://github.com/daxaur/openpaw/tree/main/skills/c-display ~/.claude/skills/c-display
```

## README

# 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
