Files
hyprdots/zsh/completions/_screen
2025-11-04 11:56:18 +05:30

16 lines
326 B
Plaintext
Executable File

#compdef screen
local -a subcmds
subcmds=(
'record:shows the record page, then starts recording'
'stop:stops the current recording.'
'compress:compress the given video to target size (default: 25 MB)'
)
if (( $#words > 3 )); then
return 1
fi
# Describe the available subcommands
_describe 'command' subcmds