mirror of
https://github.com/CoolnsX/hyprdots.git
synced 2025-12-20 07:15:23 +05:30
16 lines
326 B
Plaintext
Executable File
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
|