blob: 10bb6ce4ad640d868e43925904683780fbba0fed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
post_install() {
cat <<'EOF'
==> codexbar-tui requires the upstream `codexbar` CLI (steipete/CodexBar) on
your $PATH at runtime. Install it per the upstream instructions:
https://github.com/steipete/CodexBar
==> Omarchy users: to bind Super+Ctrl+U to a floating codexbar-tui panel, run
codexbar-tui-setup-omarchy
To undo it later:
codexbar-tui-remove-omarchy
Both are idempotent and only touch marker-delimited blocks they own in
~/.config/hypr/{bindings,windows}.conf, so they won't clobber your other
Hyprland config.
EOF
}
post_upgrade() {
post_install "$@"
}
|