facf0c92e0
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
23 lines
674 B
Plaintext
23 lines
674 B
Plaintext
#compdef slabtop
|
|
# based on procps-ng-3.3.15
|
|
|
|
local -a criteria=(
|
|
'a:number of active objects'
|
|
'b:objects per slab'
|
|
'c:cache size'
|
|
'l:number of slabs'
|
|
'v:number of active slabs'
|
|
'n:name'
|
|
'o:number of objects'
|
|
'p:page per slab'
|
|
's:object size'
|
|
'u:cache utilization'
|
|
)
|
|
|
|
_arguments -s \
|
|
'(-d --delay -o --once)'{-d+,--delay=}'[specify the delay between updates]:seconds: ' \
|
|
'(-s --sort)'{-s+,--sort=}'[specify the sort criteria]:criteria:(($criteria))' \
|
|
'(-d --delay -o --once)'{-o,--once}'[display the output once and exit]' \
|
|
'(-)'{-V,--version}'[display version information and exit]' \
|
|
'(-)'{-h,--help}'[display usage information and exit]'
|