Files
vasilito facf0c92e0 feat: track all source trees in git — full fork offline-first model
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.
2026-05-14 10:55:53 +01:00

49 lines
1.4 KiB
Plaintext

#compdef w
local args
case $OSTYPE in
linux*)
args=(
'(H -f --from)'{-f,--from}'[toggle display of remote hostname]'
'(H -h)--no-header[suppress the heading]'
'(H -i --ip-addr)'{-i,--ip-addr}'[display IP address instead of hostname]'
'(H -o --old-style -s --short)'{-o,--old-style}'[old style output format]'
'(H -s --short -o --old-style)'{-s,--short}'[use short output format]'
'(H -u --no-current)'{-u,--no-current}'[ignore the username while figuring out the current process and cpu times]'
'(H -n --no-truncat)'{-n,--no-truncat}'[non-truncated listing (large)]'
+ H
'(-)--help[display help information]'
'(-)'{-V,--version}'[display version information]'
)
;;
*bsd*|darwin*|dragonfly*)
args+=( '-i[sort output by idle time]' )
;|
openbsd*)
args+=( '-a[translate network addresses into names]' )
;|
(free|net)bsd*|dragonfly*)
args+=( '-n[show network addresses as numbers]' )
;|
*bsd*|dragonfly*)
args+=(
'-M+[extract values from specified core]:core file:_files'
'-N+[extract name list from specified system]:system file:_files'
)
;|
freebsd*|dragonfly*)
args+=( '-d[dump process list on a per controlling tty basis]' )
;|
solaris*)
args+=( '!(-s -w -l)'{-l,-w}
'-s[short output form]'
'(-)-u[produce only the heading line]'
)
;|
esac
_arguments -S -s \
'(--no-header)-h[suppress the heading]' \
'*:user:_users' $args