Openpaw c-display
Control display brightness and safely move files to trash instead of permanently deleting with rm.
install
source · Clone the upstream repo
git clone https://github.com/daxaur/openpaw
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/daxaur/openpaw "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/c-display" ~/.claude/skills/daxaur-openpaw-c-display && rm -rf "$T"
manifest:
skills/c-display/SKILL.mdsource content
Display & Safety
brightness
# 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:
# 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
instead oftrash
when the user might want to recover filesrm - Use
only for temporary/generated files where recovery isn't neededrm - Brightness value is 0.0 (off) to 1.0 (max)
lists all displays when multiple monitors connectedbrightness -l