mirror of
https://github.com/CoolnsX/hyprdots.git
synced 2025-12-20 07:15:23 +05:30
Feat: New Scripts, new functions
This commit is contained in:
15
zsh/completions/_screen
Normal file
15
zsh/completions/_screen
Normal file
@@ -0,0 +1,15 @@
|
||||
#compdef yt-music
|
||||
|
||||
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
|
||||
Reference in New Issue
Block a user