Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01QKxGW1raAWaqeU8WdHsMsp
9 lines
198 B
Bash
Executable File
9 lines
198 B
Bash
Executable File
#!/bin/bash
|
|
# OmarchyCN command center: routes to omarchy cn <command>
|
|
|
|
set -o pipefail
|
|
|
|
OMARCHY_BIN_DIR=$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd)
|
|
|
|
exec "$OMARCHY_BIN_DIR/omarchy" cn "$@"
|